Change CDrom drive letter with PowerShell
Here’s just a little Powershell script to change the CDrom drive letter to another drive letter, most customers use a standardized drive letter for this type of drive. (gwmi Win32_cdromdrive).drive | %{$a = mountvol $_ /l;mountvol $_ /d;$a = $a.Trim();mountvol z: $a} This script looks up the cdrom…
