Created
December 3, 2021 10:14
-
-
Save norman-bauer/1bc9ed68f85e4d90bb078e3aeb902f2b to your computer and use it in GitHub Desktop.
This small snippet removes mounted media from all SCVMM VMs. This will also *get* drives of snapshots, which cannot be processed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-SCVirtualDVDDrive -All | Where-Object {$_.Connection -ne 'None' -and $_.Connection -ne $null} | Set-SCVirtualDVDDrive -NoMedia |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment