Windows 10: Difference between revisions

From miki
Jump to navigation Jump to search
No edit summary
Line 10: Line 10:
* Click '''Restart''' while holding '''Shift'''. This should go to advanced restart menu, and select restart in USB thingy.
* Click '''Restart''' while holding '''Shift'''. This should go to advanced restart menu, and select restart in USB thingy.
:... this works only from LOGIN screen it seems...
:... this works only from LOGIN screen it seems...

== How-to ==
=== Disable / remove BitLocker ===
To remove BitLocker from drive C:
<source lang=powershell>
Disable-BitLocker -MountPoint "C:" # Or: manage-bde -off C:
manage-bde -status
# Wait for completion
</source>

To be completed

Revision as of 17:52, 4 October 2020

See also Windows 8

Tips

Restart in BIOS

  • Click Restart while holding Shift. This should go to advanced restart menu, and select UEFI thingy.
... this works only from LOGIN screen it seems...
  • Press Win key, then search for bios. This should prompt for advanced start-up options.

Restart with USB

  • Click Restart while holding Shift. This should go to advanced restart menu, and select restart in USB thingy.
... this works only from LOGIN screen it seems...

How-to

Disable / remove BitLocker

To remove BitLocker from drive C:

Disable-BitLocker -MountPoint "C:"          # Or: manage-bde -off C:
manage-bde -status
# Wait for completion

To be completed