0

複数のパラメーターを使用して複数のウィンドウでPowerShellスクリプトを起動したい

foreach($Instance in $config){

    $MaxSamples = $UserInput.MaxSamples
    $SampleInterval = $UserInput.SampleInterval
    $instance = $Instance

        cmd /c start powershell -NoExit -Command {.\sqlcounters.ps1 $instance $SampleInterval $MaxSamples $OutputDirectory $Instance_$MaxSamples_iterations_with_db}

}

複数のパラメータを指定する方法について誰かが提案できますか

4

1 に答える 1

1

Start-Processコマンドレットを試してください。

Start-Process powershell -ArgumentList "-NoExit -File c:\test.ps1",$arg1,$arg2,$arg3
于 2013-03-27T10:11:31.560 に答える