RosettaCodeData/Task/Scope-Function-names-and-labels/PowerShell/scope-function-names-and-labels-1.psh
2016-12-05 22:15:40 +01:00

4 lines
95 B
Text

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