Files
runner-images/images/windows/scripts/build/Install-Apache.ps1
T

28 lines
872 B
PowerShell
Raw Normal View History

2021-02-01 06:03:49 -08:00
################################################################################
## File: Install-Apache.ps1
## Desc: Install Apache HTTP Server
################################################################################
# Stop w3svc service
$w3svcService = Get-Service -Name "w3svc" -ErrorAction SilentlyContinue
if ($w3svcService) {
Stop-Service $w3svcService
}
2021-02-01 06:03:49 -08:00
# Install latest apache in chocolatey
$installDir = "C:\tools"
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
$w3svcService = Get-Service -Name "w3svc" -ErrorAction SilentlyContinue
if ($w3svcService) {
Start-Service $w3svcService
}
2021-02-01 06:03:49 -08:00
# Invoke Pester Tests
Invoke-PesterTests -TestFile "Apache"