hostname $compNames = 'DESKTOP-VNM5DM7' $compNames Get-Service -ComputerName DESKTOP-VNM5DM7 | where Name -Like "*net*" Get-Service -ComputerName $compNames | where Name -Like "*net*" Get-ChildItem VARIABLE:\ Get-ChildItem VARIABLE:\comp* Get-Command -Noun VARIABLE Clear-Variable compNames Remove-Variable compNames Set-Variable compNames DESKTOP-VNM5DM7 New-Variable filterExpression Set-Variable filterExpression net Get-Service -ComputerName $compNames | where Name -Like "*$filterExpression*" Get-Service -ComputerName $compNames | where Name -Like '*$filterExpression*' "Displaying services like $filterExpression on computer(s) $compNames" 'Displaying services like $filterExpression on computer(s) $compNames'