Powershell templates (#5)

Windows Powershell Demos
This commit is contained in:
MKletz
2022-02-23 11:01:02 -06:00
committed by GitHub
parent 2041667534
commit 788cf7b675
4 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
Param
(
[Parameter(Mandatory=$true)]
[string]$ServiceState
)
# Sample parameterized script for use with powershell_script.yml
Get-Service | Where-Object -FilterScript {$_.Status -eq $ServiceState} | Select-Object -Property 'Name'