Use Services Snap-in to Manage Remote Computer not Connected to Domain
I have remote machine that I would like to manage using services.msc
. The machine is not connected to the domain so I can't run the management tools as a user that the remote machine knows about.
When I use eventvwr
, I'm able to specify a user that exists on the remote machine:
Event Viewer has "Connect as another user" option
However, neither services
nor 'compmgmt.msc' have this option:
missing option for services/compmgmt
(I don't have enough reputation yet to inline the images, sorry!)
Is there a way to get this functionality for services.msc
?
Thanks in advance!
You can use a command line prompt along with RunAs to handle this:
runas /user:<COMPUTER\username> Compmgmt.msc –a /computer=COMPUTER
That should work for you....