File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
articles/azure-arc/servers Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -138,18 +138,18 @@ To uninstall the agent manually from the Command Prompt or to use an automated m
138
138
139
139
* From the command-line type:
140
140
141
- ```dos
142
- msiexec.exe /x {product code GUID} /qn
143
- ```
141
+ ```dos
142
+ msiexec.exe /x {product code GUID} /qn
143
+ ```
144
144
145
145
* You can perform the same steps using PowerShell:
146
146
147
- ```powershell
148
- Get-ChildItem -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | `
149
- Get-ItemProperty | `
150
- Where-Object {$_.DisplayName -eq "Azure Connected Machine Agent"} | `
151
- ForEach-Object {MsiExec.exe /x "$($_.PsChildName)" /qn}
152
- ```
147
+ ```powershell
148
+ Get-ChildItem -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | `
149
+ Get-ItemProperty | `
150
+ Where-Object {$_.DisplayName -eq "Azure Connected Machine Agent"} | `
151
+ ForEach-Object {MsiExec.exe /x "$($_.PsChildName)" /qn}
152
+ ```
153
153
154
154
### Linux agent
155
155
You can’t perform that action at this time.
0 commit comments