Forum Discussion
experi18
Nov 06, 2024Brass Contributor
Managing Multiple VMs on Azure Similar to Workspace One
Hello, I currently manage an infrastructure of approximately 100 VMs. I would like to perform activities on Azure such as: Installing/removing apps Viewing all installed apps on the VMs Adding s...
Kidd_Ip
Dec 04, 2024MVP
How about by leveraging
Configuration InstallApp {
Node "YourVMName" {
Package MyApp {
Ensure = "Present"
Name = "YourAppName"
Path = "C:\Path\To\Installer.msi"
ProductId = "YourProductID"
}
}
}
InstallApp -OutputPath "C:\DSC"
Start-DscConfiguration -Path "C:\DSC" -Wait -Verbose
Azure Automation DSC?