forked from chocolatey/choco-quickstart-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNew-IISCertificateHost.ps1
65 lines (52 loc) · 2.2 KB
/
New-IISCertificateHost.ps1
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
<#
.SYNOPSIS
Creates the `ChocolateyInstall` IIS fileshare site.
.DESCRIPTION
Creates a new IIS website named `ChocolateyInstall` which hosts the
Import-ChocoServerCertificate.ps1 for clients to retrieve and run during their
setup.
If you have a need to re-create this for any reason, ensure the existing
`ChocolateyInstall` IIS site has been disabled and removed.
#>
[CmdletBinding()]
param(
# The path to a local directory which will be used to host the
# Import-ChocoServerCertificate.ps1 file over IIS for clients to utilize.
[Parameter()]
[Alias('LocalDir')]
[string]
$Path = 'C:\tools\ChocolateyInstall'
)
Import-Module WebAdministration
$hostName = [System.Net.Dns]::GetHostName()
$domainName = [System.Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties().DomainName
if (-not $hostName.endswith($domainName)) {
$hostName += "." + $domainName
}
if (-not (Test-Path $Path)) {
$null = New-Item -Path $Path -ItemType Directory -Force
}
$ImportScript = Join-Path $Path "Import-ChocoServerCertificate.ps1"
if (-not (Test-Path $ImportScript)) {
Copy-Item -Path "$PSScriptRoot/Import-ChocoServerCertificate.ps1" -Destination $Path
}
(Get-Content -Path $ImportScript) -replace "{{hostname}}", $HostName | Set-Content -Path $ImportScript
$siteName = 'C4bSslCertificateImport'
if (-not (Get-Website -Name $siteName)) {
Write-Host "Creating Website: $siteName" -ForegroundColor Green
$null = New-Website -Name $siteName -Port 80 -PhysicalPath $Path -Force
Add-WebConfigurationProperty -PSPath IIS: -Filter system.webServer/staticContent -Name "." -Value @{ fileExtension = '.ps1'; mimeType = 'text/plain' }
} else {
Write-Host "Website for hosting certificate import already created" -ForegroundColor Green
}
Write-Host "Restarting IIS to refresh bindings" -ForegroundColor Green
$null = iisreset
if ((Get-Website -Name $siteName).State -ne 'Started') {
Start-Website -Name $siteName
}
if ((Get-Website -Name 'Default Web Site')) {
Get-Website -Name 'Default Web Site' | Remove-Website
} else {
Write-Host "Default website already removed" -ForegroundColor Green
}
Write-Host "IIS website started on port 80 hosting Import-ChocoServerCertificate.ps1 from $Path"