add script

This commit is contained in:
2025-08-06 10:35:05 +02:00
parent b78e202f58
commit ef09f0b350
229 changed files with 264140 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#Forcer la deconnexion de l'agent
azcmagent disconnect --force-local-only
#Désintaller les applications Agent et Proxy AAD
Get-ChildItem -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | `
Get-ItemProperty | `
Where-Object { $_.DisplayName -eq "Azure Connected Machine Agent" } | `
ForEach-Object { MsiExec.exe /x "$($_.PsChildName)" /qn }
Get-ChildItem -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | `
Get-ItemProperty | `
Where-Object { $_.DisplayName -eq "Microsoft Azure Active Directory Application Proxy Connector" } | `
ForEach-Object { MsiExec.exe /x "$($_.PsChildName)" /qn }
Get-ChildItem -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | `
Get-ItemProperty | `
Where-Object { $_.DisplayName -eq "Microsoft Azure AD Application Proxy Connector Updater" } | `
ForEach-Object { MsiExec.exe /x "$($_.PsChildName)" /qn }