Skip to main content

Change Drive Letter and Label PowerShell Script

# Searches for the USB and changes Drive Letter and the Name of the USB Drive - (optional) 
$drive = Get-WmiObject Win32_Volume -Filter "DriveType='2'" | Select-Object -First 1 
Set-WmiInstance -input $drive -Arguments @{DriveLetter="y:"; Label="USMT"} 

Comments

Popular posts from this blog