3
3
I'm trying to use PsExec from a server to run GUI applications on remote Windows 7 machines on our domain:
psexec //remoteMachine -i kioskApp.exe
The above is run by an admin user.
What we're trying to do is every so often force all employee PC's to run an app the puts them into kiosk mode and forces them to fill in certain information. (It's a company policy thing - if not for the enforcement, employees would simply neglect filling in the info.)
Problem is, it will appear on the remote machine, but everything within the frame will appear entirely black.
If I use -i 0
instead of just -i
, the users are given the option to choose whether to let the app run, which defeats the entire purpose of running the app in the fist place!
Help would be greatly appreciated! Thanks in advance!
1This worked for me, thanks! It did not matter if I already was running the console as admin, I had to add the -u option and manually enter my pw, and the black screen on remote computer was gone! – Plarsen – 2014-08-18T11:35:56.667
This one is better than using
-s
because in most cases you wouldn't need (or want) to run the process in the System account. – Ahmed Abdelhameed – 2018-02-22T21:59:14.390