-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiisscript.ps1
More file actions
255 lines (197 loc) · 7.22 KB
/
iisscript.ps1
File metadata and controls
255 lines (197 loc) · 7.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
Set-StrictMode -Version Latest
Import-Module WebAdministration
function create-Newwebsite
{
Write-Host "Loading configuration file $configFile"
if((Test-Path $configFile) -eq $false)
{
throw "Config file not found: $configFile"
}
$configfile = "DEV.xml"
[xml]$file = [xml](get-content -Path $configFile)
#echo "Beginning the installation of service $service"
echo ""
echo "Command line arguments:"
echo "========================================="
echo "configSourceFile = $configFile"
echo "========================================="
echo ""
$AppPoolName = $file.SelectNodes("/env/AppPools/AppPool/@apppool")[0].Value
echo "$AppPoolName"
$port=$file.SelectSingleNode("/env/IpAddresses/IpAddress/@useport").Value
echo "$Port"
$Address = $file.SelectNodes("/env/IpAddresses/IpAddress/@value2")[0].Value
echo "$Address"
$Websitename=$file.SelectSingleNode("/env/Websitename/website/@name").Value
echo "$Websitename"
$homedir = $file.SelectNodes("/env/Server-Type/Services/Service/@homedir").Value
echo "$homedir"
$pysicalpath = "C:\test"
#Check if website exits
if(-Not(Get-Website | Where-Object {$_.Name -eq "$WebSiteName"}))
{
echo "The website $WebSiteName was not found on this server!"
}
else {
echo "Removing Website $WebSiteName"
Remove-Website -Name $WebSiteName
}
if(Test-Path "IIS:\Sites\$WebsiteName" -pathType Any)
{
write-host "website already exists"
}
else
{
Write-Output "Creating Website '$WebsiteName'"
# Create the website
New-Website -Name $WebsiteName -Port $port -PhysicalPath $pysicalpath -force -ApplicationPool $Apppoolname
}
#Check if required HTTPS binding is available
if(-Not(Get-WebBinding -Name "$WebSiteName" -protocol 'http'))
{
echo "Not HTTPS binding was found for $WebSiteName website"
}
#Check installation path
if ( $(Try {Test-Path $homedir.trim() } Catch { $false }) )
{
echo "TargetPath $homedir found on target machine. Removing old files."
Remove-Item -path "$homedir\*" -Force -Recurse
}
Else
{
echo "Creating target directory - $homedir."
New-Item $homedir -type directory
}
$bindings = @( @{ protocol="http"; bindingInformation="$address`:$port"} )
echo $bindings
# Set the binding with the specified IP Address and port
Set-WebConfigurationProperty "/system.applicationHost/sites/site[@name='$WebsiteName']" -PSPath IIS:\ -Name Bindings -Value $bindings
}
create-Newwebsite
function create-Newwebsite
{
Write-Host "Loading configuration file $configFile"
if((Test-Path $configFile) -eq $false)
{
throw "Config file not found: $configFile"
}
$configfile = "DEV.xml"
[xml]$file = [xml](get-content -Path $configFile)
#echo "Beginning the installation of service $service"
echo ""
echo "Command line arguments:"
echo "========================================="
#echo "website = $service"
echo "configSourceFile = $configFile"
echo "========================================="
echo ""
$AppPoolName = $file.SelectNodes("/env/AppPools/AppPool/@apppool")[1].Value
echo "$AppPoolName"
$port=$file.SelectSingleNode("/env/IpAddresses/IpAddress/@useport").Value
echo "$Port"
$Address = $file.SelectNodes("/env/IpAddresses/IpAddress/@value2")[3].Value
echo "$Address"
$Websitename=$file.SelectNodes("/env/Websitename/website/@name")[1].Value
echo "$Websitename"
$homedir = $file.SelectNodes("/env/Server-Type/Services/Service/@homedir").Value
echo "$homedir"
$pysicalpath = "C:\test"
#Check if website exits
if(-Not(Get-Website | Where-Object {$_.Name -eq "$WebSiteName"}))
{
echo "The website $WebSiteName was not found on this server!"
}
else {
echo "Removing Website $WebSiteName"
Remove-Website -Name $WebSiteName
}
if(Test-Path "IIS:\Sites\$WebsiteName" -pathType Any)
{
write-host "website already exists"
}
else
{
Write-Output "Creating Website '$WebsiteName'"
# Create the website
New-Website -Name $WebsiteName -Port $port -PhysicalPath $pysicalpath -force -ApplicationPool $Apppoolname
}
#Check if required HTTPS binding is available
if(-Not(Get-WebBinding -Name "$WebSiteName" -protocol 'http'))
{
echo "Not HTTPS binding was found for $WebSiteName website"
}
#Check installation path
if ( $(Try {Test-Path $homedir.trim() } Catch { $false }) )
{
echo "TargetPath $homedir found on target machine. Removing old files."
Remove-Item -path "$homedir\*" -Force -Recurse
}
Else
{
echo "Creating target directory - $homedir."
New-Item $homedir -type directory
}
$bindings = @( @{ protocol="http"; bindingInformation="$address`:$port"} )
echo $bindings
# Set the binding with the specified IP Address and port
Set-WebConfigurationProperty "/system.applicationHost/sites/site[@name='$WebsiteName']" -PSPath IIS:\ -Name Bindings -Value $bindings
}
create-Newwebsite
function Create-IISAppPool
{
$configfile = "DEV.xml"
[xml]$file = [xml](get-content -Path $configFile)
$AppPoolName = $file.SelectNodes("/env/AppPools/AppPool/@apppool")[0].Value
echo "$AppPoolName"
$appPoolDotNetVersion = "v4.0"
# Check that IIS is installed on this machine
if(!(Get-Service W3SVC -ErrorAction SilentlyContinue))
{
throw "IIS is not installed on this machine"
}
# Create the app pool if it doesn't already exists
if (Test-Path "IIS:\AppPools\$Apppoolname" -pathType container)
{
Write-Output "App Pool '$Apppoolname' already exists"
}
else
{
Write-Output "Creating App Pool '$Apppoolname'"
# Create the app pool (managed pipeline mode: Integrated)
$Apppoolname = New-WebAppPool -Name $Apppoolname
$Apppoolname| Set-ItemProperty -Name "managedRuntimeVersion" -Value $appPoolDotNetVersion
}
<#if ((Get-WebAppPoolState -Name $Apppoolname).Value -ne "Started") {
throw "App pool $Apppoolname was created but did not start automatically. Probably something is broken!"
}#>
}
Create-IISAppPool
function Create-IISAppPool
{
$configfile = "DEV.xml"
[xml]$file = [xml](get-content -Path $configFile)
$AppPoolName = $file.SelectNodes("/env/AppPools/AppPool/@apppool")[1].Value
echo "$AppPoolName"
$appPoolDotNetVersion = "v4.0"
# Check that IIS is installed on this machine
if(!(Get-Service W3SVC -ErrorAction SilentlyContinue))
{
throw "IIS is not installed on this machine"
}
# Create the app pool if it doesn't already exists
if (Test-Path "IIS:\AppPools\$Apppoolname" -pathType container)
{
Write-Output "App Pool '$Apppoolname' already exists"
}
else
{
Write-Output "Creating App Pool '$Apppoolname'"
# Create the app pool (managed pipeline mode: Integrated)
$Apppoolname = New-WebAppPool -Name $Apppoolname
$Apppoolname| Set-ItemProperty -Name "managedRuntimeVersion" -Value $appPoolDotNetVersion
}
<#if ((Get-WebAppPoolState -Name $Apppoolname).Value -ne "Started") {
throw "App pool $Apppoolname was created but did not start automatically. Probably something is broken!"
}#>
}
Create-IISAppPool