RosettaCodeData/Task/Scope-Function-names-and-labels/PowerShell/scope-function-names-and-labels-1.psh

5 lines
95 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
function global:Get-DependentService
{
Get-Service | Where-Object {$_.DependentServices}
}