2021-02-01 06:03:49 -08:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-Apache.ps1
|
|
|
|
|
## Desc: Install Apache HTTP Server
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# Stop w3svc service
|
2023-11-23 18:08:20 +01:00
|
|
|
Stop-Service -Name w3svc
|
2021-02-01 06:03:49 -08:00
|
|
|
|
|
|
|
|
# Install latest apache in chocolatey
|
|
|
|
|
$installDir = "C:\tools"
|
2023-11-22 15:14:08 +01:00
|
|
|
Install-ChocoPackage apache-httpd -ArgumentList "--force", "--params", "/installLocation:$installDir /port:80"
|
2021-02-01 06:03:49 -08:00
|
|
|
|
|
|
|
|
# Stop and disable Apache service
|
|
|
|
|
Stop-Service -Name Apache
|
2023-11-23 18:08:20 +01:00
|
|
|
Set-Service -Name Apache -StartupType Disabled
|
2021-02-01 06:03:49 -08:00
|
|
|
|
|
|
|
|
# Start w3svc service
|
2023-11-23 18:08:20 +01:00
|
|
|
Start-Service -Name w3svc
|
2021-02-01 06:03:49 -08:00
|
|
|
|
|
|
|
|
# Invoke Pester Tests
|
|
|
|
|
Invoke-PesterTests -TestFile "Apache"
|