mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-17 15:28:16 +00:00
11 lines
520 B
PowerShell
11 lines
520 B
PowerShell
################################################################################
|
|
## File: Install-ContainersFeature.ps1
|
|
## Desc: Install Windows container features.
|
|
## Must be an independent step becuase it requires a machine restart
|
|
## before we can continue.
|
|
################################################################################
|
|
|
|
Write-Host "Install Containers feature"
|
|
Install-WindowsFeature -Name Containers
|
|
|
|
Invoke-PesterTests -TestFile "WindowsFeatures" -TestName "ContainersFeature" |