Reputation: 9920
How can I automatically open up a bunch of remote control sessions and log on to each one given a list of computers?
I've tried the following (taken from http://ccmexec.com/2012/05/running-configuration-manager-2012-remote-control-standalone/):
.\CmRcViewer.exe 'computerName'
However I still need to click on Action -> 'Send Ctrl+Alt+Del Key', then type in my username/password.
I'd like to automatically log on to each computer.
I can't use mstsc because Remote Desktop is not enabled on the computers.
Upvotes: 0
Views: 4046
Reputation: 523
The Remote Control in SCCM can be used from command line with CmRcViewer.exe
it will accept a netbios name as a parameter. Credentials will be inherited. Perhaps it will be possible to change to other credentials using runas. You can then build a wrapper function for this in Powershell.
CmRCViewer.exe comes with the SCCM admin console, but you can extract it according to this post: http://ccmexec.com/2012/05/running-configuration-manager-2012-remote-control-standalone/
Upvotes: 2