我試圖從服務器2對服務器-1(即遠程服務器)執行以下PowerShell腳本:如何通過局部變量調用命令的-ScriptBlock
$DBServer = 'Server1'
Invoke-Command -ComputerName $DBServer -ScriptBlock {
$status = Start-Process "C:\Program Files\iQ4bis\HaloSource\HaloSource.Run.exe" '"D:\Test\UsageTracking.iqp" /wf "Default Workflow" /e "Dev" ' -Wait -PassThru
$test2 = $status.ExitCode
if ($test2 -ne 0)
{
Throw "The command exited with error code: $test2"
}
else
{
Write-host "Workflow executed successfully."
}
}
問題:部分代碼
"C:\Program Files\iQ4bis\HaloSource\HaloSource.Run.exe" '"D:\Test\UsageTracking.iqp" /wf "Default Workflow" /e "Dev" ' -Wait -PassThru
我想讓它參數化,因爲D:\Test\UsageTracking.iqp
和Dev
的值將會改變每個項目。我如何使用參數傳遞新值?這是我怎麼想它如果可能的話:
clear-host
$DBServer = 'Server1'
$v1 = 'D:\Test\UsageTracking.iqp'
$v2 = 'Dev'
$v3 = "C:\Program Files\iQ4bis\HaloSource\HaloSource.Run.exe"
Invoke-Command -ComputerName $DBServer -ScriptBlock {
param(
[string] $IQPFileDestinationLocation = $v1, [string] $ExecutionEnvironment = $v2, [string] $exe = $v3
)
$IQPFileLocation = $IQPFileDestinationLocation
$workflow = "Default Workflow"
$environment = $ExecutionEnvironment
$test = """$exe"" '""$IQPFileLocation"" /wf ""$workflow"" /e ""$environment""'"
$test
$status = Start-Process $test -Wait -PassThru
$test2 = $status.ExitCode
if ($test2 -ne 0)
{
Throw "The command exited with error code: $test2"
}
else
{
Write-host "It went ok."
}
} -ArgumentList $v1 ,$v2 ,$v3
當我在上面跑,我得到以下錯誤信息:
This command cannot be run due to the error: The system cannot find the file specified.
+ CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
+ FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
+ PSComputerName : ken-dev-bi001
The command exited with error code:
At line:8 char:1
+ Invoke-Command -ComputerName $DBServer -ScriptBlock {
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (The command exited with error code: :String) [], RuntimeException
+ FullyQualifiedErrorId : The command exited with error code:
任何幫助將appriciated得到它的工作。