简体   繁体   中英

Run powershell script on 2003 server

I have powershell installed on my windows 8 PC, can I connect to remote 2003 server via powershell with out installing powershell on windows 2003 server? and run powershell commands?

The answer is NO. You can from you PC query some information of remote computer using WMI ( get-wmiobject cmdlet ) or other informations with

get-process -computername remotecomputername 

or

get-service -computername remotecomputername

and at the moment I can't remember other cmdlets not requiring remote powershell installation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM