Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configurations #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions ConfigurationScripts/AddToDomainConfigData.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@{
# Node related data
AllNodes = @(
@{
Nodename = 'localhost' # Entry point
NetworkInterfaceName = 'Ethernet'
ComputerName = 'IIS-Server' # Name that will be given to the localhost
PSDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
RetryCount = 20
RetryIntervalSec = 30
}
);

# Training scenario related data
ScenarioData = @{
DomainName = 'starkindustries.com'
DnsServerAddress = '10.48.144.128' # IP address of active directory server
DomainAdminPassword = 'bxNAHkhJ@#'
DomainServerName = 'WIN-KJGIJD5ELN1.starkindustries.com'
}
}
10 changes: 10 additions & 0 deletions ConfigurationScripts/IISConfigData.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@{
AllNodes = @(
@{
Nodename = 'IIS-Server'
Role = 'IIS Server'
}
)
ScenarioData = @{
}
}
19 changes: 19 additions & 0 deletions ConfigurationScripts/NewDomainControllerConfigData.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@{
# Node related data
AllNodes = @(
@{
Nodename = 'localhost' # Entry point
Role = 'Primary DC'
NetworkInterfaceName = 'Ethernet'
PSDscAllowPlainTextPassword = $true
RetryCount = 20
RetryIntervalSec = 30
}
);

# Training scenario related data
ScenarioData = @{
DomainName = 'starkindustries.com'
DomainAdminPassword = 'bxNAHkhJ@#' # Same password will be used for Safe mode
}
}
21 changes: 21 additions & 0 deletions ConfigurationScripts/NewExchangeServerConfigData.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@{
# Node related data
AllNodes = @(
@{
Nodename = 'EXCHANGE-SERVER'
Role = 'Exchange-Server'
PSDscAllowPlainTextPassword = $true
UCMA_EXE = "http://10.48.144.62/exchange/UcmaRuntimeSetup.exe"
UCMA_EXE_PRODUCTID = "ED98ABF5-B6BF-47ED-92AB-1CDCAB964447"
EXCHANGE_EXE = "http://10.48.144.62/exchange/Exchange2016-x64.exe"
RetryCount = 20
RetryIntervalSec = 30
}
);

# Training scenario related data
ScenarioData = @{
DomainName = 'starkindustries.com'
DomainAdminPassword = 'bxNAHkhJ@#'
}
}
20 changes: 20 additions & 0 deletions ConfigurationScripts/NewSQLServerConfigData.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@{
# Node related data
AllNodes = @(
@{
Nodename = 'SQL-Server' # Entry point
Role = 'SQL Server'
PSDscAllowPlainTextPassword = $true
SSMS_EXE = "http://10.48.144.62/sql-server/SSMS-Setup-ENU.exe"
SSMS_EXE_PRODUCTID = "9BBE717B-128F-4470-9032-F373273DD237"
SQL_ISO = "http://10.48.144.62/sql-server/SQLServer2016SP1-FullSlipstream-x64-ENU.iso"
RetryCount = 20
RetryIntervalSec = 30
}
);

# Training scenario related data
ScenarioData = @{

}
}