Closed xupiter closed 4 months ago
Looks like there is a typo in SamplesV2 > .. > InstallGatewayOnLocalMachine.ps1 > Install-Gateway() function:
SamplesV2 > .. > InstallGatewayOnLocalMachine.ps1 > Install-Gateway()
function Install-Gateway([string] $gwPath) { ... <truncated for brevity> ... $process = Start-Process "msiexec.exe" "/i $path /quiet /passive" -Wait -PassThru
should be
$process = Start-Process "msiexec.exe" "/i $gwPath /quiet /passive" -Wait -PassThru
Link: https://github.com/Azure/Azure-DataFactory/blob/main/SamplesV2/SelfHostedIntegrationRuntime/AutomationScripts/InstallGatewayOnLocalMachine.ps1#L24
Fixed by https://github.com/Azure/Azure-DataFactory/pull/636
Looks like there is a typo in
SamplesV2 > .. > InstallGatewayOnLocalMachine.ps1 > Install-Gateway()
function:should be
Link: https://github.com/Azure/Azure-DataFactory/blob/main/SamplesV2/SelfHostedIntegrationRuntime/AutomationScripts/InstallGatewayOnLocalMachine.ps1#L24