带有cmd参数的powershell脚本

时间:2017-10-24 08:16:17

标签: powershell

我有一个简单的问题! 我想运行powershell脚本但是,我想要一个不同的方式。

如何像下面的脚本一样运行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);'

1 个答案:

答案 0 :(得分:2)

尝试这样的事情:

powershell.exe -File "C:\yourscriptfile.ps1" arg1 arg2 arg3