Providers/VMware-HCX.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$Global:ProviderSetup = @{ ProviderName = 'VMware HCX' StartupMessage = 'Importing VMware HCX Module and Configuration' ModulesToImport = @('VMware.VimAutomation.Hcx') StartupScript = [scriptblock] { # Define Provider Specific Configuration } } |