Public/Start-DismImage.ps1
function Start-DismImage { [CmdletBinding()] param () #======================================================================= # Block #======================================================================= Block-StandardUser Block-WindowsVersionNe10 Block-PowerShellVersionLt5 #======================================================================= # Run #======================================================================= & "$($MyInvocation.MyCommand.Module.ModuleBase)\GUI\DismImage.ps1" #======================================================================= } |