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

Give Authenticated Users Full Control - Powershell

# Create folder $folder = 'c:\data' New-Item -Path $folder -type directory -Force # User(s) ID and Access Rule $id = 'authenticated users' $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule -argumentlist ($id,"FullControl","ContainerInherit, ObjectInherit","None","Allow") # Get the current ACL from newly created folder $setACL = Get-ACL $folder # Add the new Access Rule to the Current Rule $setACL.AddAccessRule($accessRule) # Set the new access rule on the new folder Set-ACL -Path $folder -ACLObject $setACL