Skip to content

Instantly share code, notes, and snippets.

@janegilring
Created July 19, 2017 19:07
Show Gist options
  • Select an option

  • Save janegilring/db4712d67e2b4eed154205c91e8aa936 to your computer and use it in GitHub Desktop.

Select an option

Save janegilring/db4712d67e2b4eed154205c91e8aa936 to your computer and use it in GitHub Desktop.
An example for setting up a basic lab environment using Lability
$ConfigData = @{
AllNodes = @(
@{
NodeName = 'DC1';
Lability_ProcessorCount = 2;
Lability_SwitchName = 'CORPNET';
Lability_Media = '2016_x64_Standard_Core_EN_Eval';
},
@{
NodeName = 'APP1';
Lability_ProcessorCount = 4;
Lability_SwitchName = 'CORPNET';
Lability_Media = '2016_x64_Standard_EN_Eval';
}
)
NonNodeData = @{
Lability = @{
Network = @(
@{ Name = 'CORPNET'; Type = 'Internal'; }
)
}
}
}
Start-LabConfiguration -ConfigurationData $ConfigData
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment