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

2023-07-01 11:58:00 -04:00
function global:Get-DependentService
{
Get-Service | Where-Object {$_.DependentServices}
}