- Open Powershell with administrator privilege.
- Type
Get-Disk | ft -autoand find the disk number where the OS is installed. - Type
mbr2gpt.exe /validate /disk:[number] /allowFullOS
Ifsuccessis in the prompt output, conversion is possible.
If there isn't, you shoud check https://docs.microsoft.com/ko-kr/windows/deployment/mbr-to-gpt to satisfy some condition to do it. - Type
mbr2gpt.exe /convert /disk:[number] /allowFullOS
If there is a line starts withBeforeand ends withUEFI mode, you are done. - Restart the PC and enter to CMOS.
- Change BIOS to UEFI mode and enable Secure Boot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface GraphNode { | |
| id: string | number; | |
| type: DrawerTypes; | |
| scale: number; | |
| hover: boolean; | |
| active: boolean; | |
| neighbors: (D3GraphNode | GraphEdge)[]; | |
| } | |
| interface D3GraphNode extends d3.SimulationNodeDatum, GraphNode { |
OlderNewer