Azure / repair-script-library

Organize and archive known repair scripts to enable anyone to easily fix their machines. The scripts are made primarily to repair VMs on the cloud.
MIT License
36 stars 37 forks source link

Get and remove installed apps on the nested VM #65

Closed rjmccallumbigl closed 11 months ago

rjmccallumbigl commented 12 months ago
<# Get installed apps #>
az vm repair run -g 'sourceRG' -n 'sourceVM' --run-id 'win-get-apps' --verbose --run-on-repair

<# Remove apps based on QUS output #>
az vm repair run -g 'sourceRG' -n 'sourceVM' --run-id 'win-remove-app' --parameters uninstallString='{BEF2B9D6-4D36-3799-ADC8-F61F1926092C}' --verbose --run-on-repair
az vm repair run -g 'sourceRG' -n 'sourceVM' --run-id 'win-remove-app' --parameters uninstallString='"C:\Program Files\Microsoft VS Code\unins000.exe" /SILENT' --verbose --run-on-repair

<# Start the VM and login to execute the uninstall policy #>