0
最新のAzureサービスファブリックSDKをインストールしようとしました。私はこのPowerShellスクリプトを書いていますが、インストール方法はわかりません。SDKをVSTSビルドサーバーにインストールする方法(無人)
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope
CurrentUser $down = New-Object System.Net.WebClient $url =
'http://www.microsoft.com/web/handlers/webpi.ashx?command=getinstallerredirect&appid=MicrosoftAzure-ServiceFabric-CoreSDK';
$file = 'MicrosoftAzure-ServiceFabric-CoreSDK.exe';
$down.DownloadFile($url,$file);
#$exec = New-Object -com shell.application
#$exec.shellexecute($file);
$command = “cmd.exe /c c:\MicrosoftAzure-ServiceFabric-CoreSDK.exe /s /v`”/qn”
$process = [WMICLASS]”\\localhost\ROOT\CIMV2:win32_process”
$process.Create($command)
おかげで、応答を。ビルドサーバーをセットアップしました。サイクル内でアプリケーションを更新する場合は、ホステッドビルドサーバーを使用することはできません。 –