Public/Restore-OftenOnLab.ps1

function Restore-OftenOnLab {
    [CmdletBinding()]
    param (
        [ValidateNotNullOrEmpty()]
        $SnapshotName = 'Default'
    )

    Restore-Lab -ConfigurationData (Get-OftenOnLabConfiguration) -SnapshotName $SnapshotName -Confirm:$false
}