resources/qlikalerting.ps1
function Show-QlikAlertingServices { [CmdletBinding(PositionalBinding=$false)] param( [string[]]$ComputerName="localhost" ) $ComputerName | ForEach-Object { ` Get-Service "QlikAlerting*" -ComputerName $_ | ` Select-Object @{Name='ComputerName';Expression={$_.MachineName}}, DisplayName, Status, Starttype | ` Format-Table * -AutoSize ` } } |