[Windows] Add Wireless LAN feature (#9373)

* [Windows] Add Wireless LAN feature

* Change WLAN service startup type to manual

* Update template directly
This commit is contained in:
Alexey-Ayupov
2024-02-22 16:12:24 +01:00
committed by GitHub
parent 554135d9c6
commit 39b838e8fd
5 changed files with 16 additions and 2 deletions

View File

@@ -13,6 +13,10 @@ Describe "WindowsFeatures" {
it "Check WSL is on path" {
(Get-Command -Name 'wsl') | Should -BeTrue
}
it "Check WLAN service is stopped" {
(Get-Service -Name wlansvc).Status | Should -Be "Stopped"
}
}
Describe "DiskSpace" {