gpt4 book ai didi

powershell - 如何使用 Powershell 中的 MSDeploy 将 Web 应用程序 zip 包部署到 Azure?

转载 作者:行者123 更新时间:2023-12-03 17:14:08 24 4
gpt4 key购买 nike

我有一个 web 应用程序的 zip 包,我想使用从 Powershell 脚本调用的 MSDeploy 工具从我们的 Jenkins 服务器部署到 Azure。

怎么做?

最佳答案

使用以下脚本:

$PackagePath = "c:\temp\package.zip"
$ResourceGroupName = "resource-group-where-my-app-resides"
$AppName = "my-cool-web-app"

if (!(Test-Path $PackagePath)) {
throw "Package file $PackagePath does not exist"
}

echo "Getting publishing profile for $AppName app"
$xml = Get-AzureRmWebAppPublishingProfile -Name $AppName `
-ResourceGroupName $ResourceGroupName `
-OutputFile temp.xml -Format WebDeploy -ErrorAction Stop
$username = ([xml]$xml).SelectNodes("//publishProfile[@publishMethod=`"MSDeploy`"]/@userName").value
$password = ([xml]$xml).SelectNodes("//publishProfile[@publishMethod=`"MSDeploy`"]/@userPWD").value
$url = ([xml]$xml).SelectNodes("//publishProfile[@publishMethod=`"MSDeploy`"]/@publishUrl").value
$siteName = ([xml]$xml).SelectNodes("//publishProfile[@publishMethod=`"MSDeploy`"]/@msdeploySite").value
del temp.xml
echo "Got publishing profile XML."

$msdeployArguments =
'-verb:sync ' +
"-source:package='$PackagePath' " +
"-dest:auto,ComputerName=https://$url/msdeploy.axd?site=$siteName,UserName=$username,Password=$password,AuthType='Basic',includeAcls='False' " +
"-setParam:name='IIS Web Application Name',value=$siteName"
$commandLine = '&"C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" --% ' + $msdeployArguments
Invoke-Expression $commandLine

msdeploy.exe 非常脆弱,命令行参数中有空格,参见 https://stackoverflow.com/a/25198222

关于powershell - 如何使用 Powershell 中的 MSDeploy 将 Web 应用程序 zip 包部署到 Azure?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45155581/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com