RosettaCodeData/Task/Scope-Function-names-and-la.../PowerShell/scope-function-names-and-la...

5 lines
95 B
Plaintext

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