Como hacer una memoria USB booteable sin programas en Windows 11
En este tutorial, les vamos a enseñar como hacer una memoria USB booteable en Windows 11 o Windows 1o solo con linea de comandos con Windows Power Shell.
La linea de comandos Windows 11:
$Results = Get-Disk |
Where-Object BusType -eq USB |
Out-GridView -Title 'Select USB Drive to Format' -OutputMode Single |
Clear-Disk -RemoveData -RemoveOEM -Confirm:$false -PassThru |
New-Partition -UseMaximumSize -AssignDriveLetter |
Format-Volume -FileSystem NTFS
La linea de comandos Windows 10:
$Results = Get-Disk |
Where-Object BusType -eq USB |
Out-GridView -Title 'Select USB Drive to Format' -OutputMode Single |
Clear-Disk -RemoveData -RemoveOEM -Confirm:$false -PassThru |
New-Partition -UseMaximumSize -IsActive -AssignDriveLetter |
Format-Volume -FileSystem NTFS