Functions/Dismount-AllVmDvds.ps1
|
function Dismount-AllVmDvds { [CmdletBinding()] param ( ) Get-VM | Get-VMDvdDrive | Where-Object DvdMediaType -ne "" | Set-VMDvdDrive -Path "" -Passthru } |
|
function Dismount-AllVmDvds { [CmdletBinding()] param ( ) Get-VM | Get-VMDvdDrive | Where-Object DvdMediaType -ne "" | Set-VMDvdDrive -Path "" -Passthru } |