我是新來的這些超棒的Power殼世界。我遇到了一個腳本問題,真的很讚賞你的幫助。從powershell腳本執行powershell.exe(在ISE中運行,但不是在腳本中)
我有一個腳本「cmd4.ps1」,需要運行另一個需要接收3個字符串參數的腳本「Transfer.ps1」,它需要作爲與「cmd4.ps1」不同的其他進程運行。
cmd4.ps1:
$Script="-File """+$LocalDir+"\Remote\Transfer.ps1"" http://"+$ServerIP+"/Upload/"+$FileName+" "+$ServerIP+" "+$LocalIP Start-Process powershell.exe -ArgumentList $Script
ejecution後,$Script
cointain值類似於
-File "c:\temp re\Remote\Transfer.ps1" http://10.1.1.1/Upload/file.txt 10.1.1.1 10.1.1.10
包含語法使用-File
參數運行Powershell.exe的一個腳本,以及三個Transfer.ps1需要的參數("http://10.1.1.1/Upload/file.txt", 10.1.1.1, 10.1.1.10
)。
當我在PowerShell ISE中編寫這些指令時,我可以看到每個值都是正確的,並且PowerShell.exe使用正確的值執行,但一切正常!但如果我將這些指令放在「cmd4.ps1」腳本中, t工作,我的意思是不正確的參數,因爲我可以看到它啓動PowerShell,但它永遠不會結束。