-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstallIIS.ps1
More file actions
21 lines (21 loc) · 967 Bytes
/
InstallIIS.ps1
File metadata and controls
21 lines (21 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Enable-PSRemoting -Force
Set-ExecutionPolicy -ExecutionPolicy Bypass -Force
Install-WindowsFeature -Name Web-Static-Content
Install-WindowsFeature -Name Web-Default-Doc
Install-WindowsFeature -Name Web-Dir-Browsing
Install-WindowsFeature -Name Web-Http-Errors
Install-WindowsFeature -Name Web-Asp-Net45
Install-WindowsFeature -Name Web-Net-Ext45
Install-WindowsFeature -Name Web-ISAPI-Ext
Install-WindowsFeature -Name Web-ISAPI-Filter
Install-WindowsFeature -Name Web-Http-Logging
Install-WindowsFeature -Name Web-Request-Monitor
Install-WindowsFeature -Name Web-Windows-Auth
Install-WindowsFeature -Name Web-Filtering
Install-WindowsFeature -Name Web-Stat-Compression
Install-WindowsFeature -Name Web-Mgmt-Console
Install-WindowsFeature -Name Web-Websockets
Install-WindowsFeature -Name Web-Http-Redirect
Install-WindowsFeature -Name Web-Dyn-Compression
Install-WindowsFeature -Name Web-Http-Errors
Install-WindowsFeature -Name Web-Mgmt-Service