如何像下面的脚本一样运行powershell脚本?
(python -c 'print "A"*100')
PowerShell可能吗?
总之,我想通过cmd参数传递powershell脚本
like the...
Powershell.exe -c '$test = 1; $socket = New-Object net.sockets.tcpclient('127.0.0.1',31337);'
答案 0 :(得分:2)
尝试这样的事情:
powershell.exe -File "C:\yourscriptfile.ps1" arg1 arg2 arg3