Examples/Resources/xMountImage/1-xMountImage_DismountISO.ps1

<#
    .EXAMPLE
        This configuration will unmount an ISO file that is mounted in S:.
#>

configuration Example
{
    Import-DscResource -ModuleName xStorage
    xMountImage ISO
    {
        ImagePath = 'c:\Sources\SQL.iso'
        DriveLetter = 'S'
        Ensure = 'Absent'
    }
}