4 lines
95 B
Text
4 lines
95 B
Text
function global:Get-DependentService
|
|
{
|
|
Get-Service | Where-Object {$_.DependentServices}
|
|
}
|