Skip to main content

Change Drive Letter with PowerShell Script


# 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

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