Add additional files to improve testing process
This commit is contained in:
parent
2e5fb2104c
commit
35ee7a2be0
7 changed files with 131 additions and 0 deletions
12
WebsitePanel/Tools/SetupTestWebsites.ps1
Normal file
12
WebsitePanel/Tools/SetupTestWebsites.ps1
Normal file
|
@ -0,0 +1,12 @@
|
|||
Import-Module WebAdministration
|
||||
|
||||
cd ..
|
||||
$path = pwd
|
||||
cd Tools
|
||||
|
||||
New-Website -Name "WebsitePanel Server" -Port 9003 -PhysicalPath "$path\Sources\WebsitePanel.Server" -ErrorAction SilentlyContinue
|
||||
New-Website -Name "WebsitePanel Enterprise Server" -Port 9002 -PhysicalPath "$path\Sources\WebsitePanel.EnterpriseServer" -ErrorAction SilentlyContinue
|
||||
New-Website -Name "WebsitePanel Portal" -Port 9001 -PhysicalPath "$path\Sources\WebsitePanel.WebPortal" -ErrorAction SilentlyContinue
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue