@@ -269,23 +269,19 @@ Make sure the VM is healthy, secure, and RDP accessible:
269
269
> Use an elevated PowerShell window to run these commands.
270
270
271
271
```powershell
272
- cmd
273
-
274
- bcdedit /set {bootmgr} integrityservices enable
275
- bcdedit /set {default} device partition=C:
276
- bcdedit /set {default} integrityservices enable
277
- bcdedit /set {default} recoveryenabled Off
278
- bcdedit /set {default} osdevice partition=C:
279
- bcdedit /set {default} bootstatuspolicy IgnoreAllFailures
272
+ bcdedit /set "{bootmgr}" integrityservices enable
273
+ bcdedit /set "{default}" device partition=C:
274
+ bcdedit /set "{default}" integrityservices enable
275
+ bcdedit /set "{default}" recoveryenabled Off
276
+ bcdedit /set "{default}" osdevice partition=C:
277
+ bcdedit /set "{default}" bootstatuspolicy IgnoreAllFailures
280
278
281
279
#Enable Serial Console Feature
282
- bcdedit /set {bootmgr} displaybootmenu yes
283
- bcdedit /set {bootmgr} timeout 5
284
- bcdedit /set {bootmgr} bootems yes
285
- bcdedit /ems {current} ON
280
+ bcdedit /set " {bootmgr}" displaybootmenu yes
281
+ bcdedit /set " {bootmgr}" timeout 5
282
+ bcdedit /set " {bootmgr}" bootems yes
283
+ bcdedit /ems " {current}" ON
286
284
bcdedit /emssettings EMSPORT:1 EMSBAUDRATE:115200
287
-
288
- exit
289
285
```
290
286
3 . The dump log can be helpful in troubleshooting Windows crash issues. Enable the dump log collection:
291
287
0 commit comments