Saturday, March 24, 2018
Use PowerShell to Create a Bootable USB Drive
Use PowerShell to Create a Bootable USB Drive:
$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 FAT32
$Volumes = (Get-Volume).Where({$_.DriveLetter}).DriveLetter
Mount-DiskImage -ImagePath C:\ISO\Windows.ISO
$ISO = (Compare-Object -ReferenceObject $Volumes -DifferenceObject (Get-Volume).Where({$_.DriveLetter}).DriveLetter).InputObject
Set-Location -Path "$($ISO):\boot"
bootsect.exe /nt60 "$($Results.DriveLetter):"
Copy-Item -Path "$($ISO):\*" -Destination "$($Results.DriveLetter):" -Recurse -Verbose
Curl, Wget, Winget & Powershell Install or Download Commands
After the mess I made in previous posts this summary might be useful. Thanks PatchMyPC, the great and powerful program downloader and up...
-
Go here http://en.savefrom.net / and paste the youtube url or just instert "ss" between "www." and "youtube" ...
-
In my quest to set up the "perfect" program install worksheet for Windows . . . Priorities are: easy update, easy install, useful...
-
Windows 11 Installation Guide: First Things to Do Getting the Windows ISO Grab an official Windows ISO. I get Win11 from here today ...