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