如何使用VSTS DSC配置将软件自动安装到Azure VM上

时间:2018-07-11 16:35:44

标签: azure automation install azure-devops dsc

全部

我试图弄清楚如何使用VSTS DSC配置将软件特别是趋势科技安装到Azure VM上。我所需要的只是针对如何完成此工作或提出正确的建议。我这样做的经验很少,因此将不胜感激。

谢谢

1 个答案:

答案 0 :(得分:1)

要通过PowerShell DSC将软件安装到Azure VM,可以参考文档D eploy your application on virtual machine scale sets

作为示例Install an app to a Windows VM with PowerShell DSC,示例powershell脚本为:

REN "%userprofile%\AppData\Local\test" "test.old"

if %errorlevel% == 0 goto :TESTNOERRORS if %errorlevel% == 1 goto :TESTDUP


:TESTDUP

REN "%userprofile%\AppData\Local\test" "test1.old"


REN "%userprofile%\AppData\Local\test" "test2.old"


:TESTNOERRORS