# Change USB Drive Letter from state to another
$old = read-host "Enter the drive letter you want to change"
$new = read-host "Enter the drive letter you want it to be"
Get-Partition -DriveLetter $old | Set-Partition -NewDriveLetter $new
Sharing PowerShell Scripts with others...every PowerShell Scripted has been tested causing no issues on my pc or others - not responsible for any issues that this might cause. Use at your own risk.
Comments
Post a Comment