如何從另一個腳本內調用powershell腳本? 這不是工作:從另一個腳本調用powershell腳本
$param1 = "C:/Users/My Folder/file1"
$param2 = "C:/Users/My Folder/file2"
$command = "C:/Users/My Folder/second.ps1"
Invoke-expression $command -File1 $param1 -File2 $param2
... Second.ps1:
param(
[string]File1, [string]File2)...
'&$命令-File1 $參數1 -File2 $ param2' – PetSerAl
謝謝!它的工作 – user3108001
作爲一個普通的Powershell提示:使用函數而不是單獨的腳本文件進行這些操作:http://blogs.technet.com/b/heyscriptingguy/archive/2011/06/26/don-t-write-scripts- write-powershell-functions.aspx – bluuf