File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
articles/automation/troubleshoot Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ You can remove this limit and make it unrestricted with the following steps:
93
93
1. vi /lib/systemd/system/hwd.service
94
94
1. Update the setting from CPUQuota=25% to CPUQuota= as shown below to make the usage unrestricted.
95
95
96
- ```
96
+ ```
97
97
root@ubuntu2204:~ # cat /lib/systemd/system/hwd.service
98
98
[ Unit]
99
99
Description=HW Service
@@ -112,7 +112,7 @@ You can remove this limit and make it unrestricted with the following steps:
112
112
[ Install]
113
113
WantedBy=multi-user.target
114
114
115
- ```
115
+ ```
116
116
117
117
**Restart hwd service**
118
118
1. systemctl daemon-reload
@@ -315,15 +315,15 @@ Sometimes the uninstallation process might get stuck.
315
315
```
316
316
1 . ** Remove registry key** , if present: ` HKLM:\Software\Microsoft\Azure\HybridWorker `
317
317
318
- 1 . PowerShell code to remove the registry key along with any subkeys and values under it.:
318
+ 1 . PowerShell code to remove the registry key along with any sub keys and values under it.:
319
319
320
320
``` powershell
321
321
Get-Item HKLM:\Software\Microsoft\Azure\HybridWorker | Remove-Item -Recurse
322
322
```
323
323
324
324
1. **Remove the registry key**, if present: `HKLM:\Software\Microsoft\HybridRunbookWorkerV2`
325
325
326
- 1. PowerShell code to remove the registry key along with any subkeys and values under it.:
326
+ 1. PowerShell code to remove the registry key along with any sub keys and values under it.:
327
327
328
328
```powershell
329
329
Get-Item HKLM:\Software\Microsoft\HybridRunbookWorkerV2 | Remove-Item -Recurse
You can’t perform that action at this time.
0 commit comments