Hi all,
I have a question about deploying a Visual Basic 2010 Express build application silently on remote computers. When I published the app, an setup.exe file was created in project\bin\Debug folder. Now I would like to install this app to multiple machines (in the same domain). Usually I do the (silent) installations with psexec so no user interference is required.
But in this case when I run something like psexec.exe \remotePC -c /i "\server\project\bin\Debug\setup.exe" an installation window pops up on remotePC asking if "instal/don't install". I've tried all silent switches (that I know of) like "-silent", "-s" "-q", "-quiet", "qb+",...
How can I deploy this app silently on a remote PC?
tnx a lot for any suggestions