RosettaCodeData/Task/Scope-Function-names-and-labels/PowerShell/scope-function-names-and-labels-1.ps1
2026-04-30 12:34:36 -04:00

4 lines
95 B
PowerShell

function global:Get-DependentService
{
Get-Service | Where-Object {$_.DependentServices}
}