Public/Functions/split/Start-DiskImageGUI.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function Start-DiskImageGUI { [CmdletBinding()] param () #======================================================================= # Block #======================================================================= Block-StandardUser Block-WindowsVersionNe10 Block-PowerShellVersionLt5 #======================================================================= # Run #======================================================================= & "$($MyInvocation.MyCommand.Module.ModuleBase)\Projects\DiskImageGUI.ps1" #======================================================================= } |