Powershell Remote Commands - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T02:26:20Zhttp://stackoverflow.com/feeds/question/444012http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/444012/powershell-remote-commands0Powershell Remote CommandsSam_Cogan2009-01-14T17:53:50Z2009-02-22T16:07:34Z
<p>I'm trying to run the get-service command on a remote machine in powershell. After doing some research, it appears this is only possilbe n powershell 2 CTP, which I cannot use as I need to use the version of powershell installed with exchange, which is usualy 1. It seems the -computerName switch is only availible in get-service in ps 2.
So i've pretty much decided its a no-go, but wanted to see if anyone here had an clever solutions before I give up on it.</p>
http://stackoverflow.com/questions/444012/powershell-remote-commands/444047#4440473Answer by EBGreen for Powershell Remote CommandsEBGreen2009-01-14T18:04:44Z2009-01-14T18:04:44Z<p>Well, you can go directly to WMI the get the service information.</p>
<pre><code>gwmi Win32_Service -computername FOO
</code></pre>
http://stackoverflow.com/questions/444012/powershell-remote-commands/444701#4447012Answer by Shay Levy for Powershell Remote CommandsShay Levy2009-01-14T21:10:45Z2009-01-14T21:10:45Z<p>This will work in v1:</p>
<p>[System.ServiceProcess.ServiceController]::GetServices("String machineName")</p>
http://stackoverflow.com/questions/444012/powershell-remote-commands/575131#5751312Answer by Jeffrey Snover - MSFT for Powershell Remote CommandsJeffrey Snover - MSFT2009-02-22T16:07:34Z2009-02-22T16:07:34Z<p>Those are all fine answers but they only help you with Services. What you want is somethign that will work with anything:</p>
<p><strong>WINRS is your best friend!</strong></p>
<pre><code>[4120:0]PS> winrs -r:localhost powershell get-service h*
Status Name DisplayName
------ ---- -----------
Running hidserv Human Interface Device Access
Running hkmsvc Health Key and Certificate Management
Stopped HomeGroupListener HomeGroup Listener
Running HomeGroupProvider HomeGroup Provider
</code></pre>
<p>BTW - WINRS uses WS-MAN which means it will work across firewalls.</p>
<p>Experiment! Enjoy! Engage!</p>
<p>Jeffrey Snover [MSFT]
Windows Management Partner Architect</p>