Hey ninjas. You may want to be aware of issues that can prevent backups from running on users machines. So lets find out how to monitor disconnected USB drives.
Hey ninjas. You may want to be aware of issues that can prevent backups from running on users machines. So lets find out how to monitor disconnected USB drives.
Hey ninjas. You may want to identify whether a particular service is or is not installed on a device. So let’s find out one way to filter devices by installed service.
This video features the use of a custom script submitted by our community:
List Services
$services = Get-Service | Sort-Object -Property Name | select name
$services = $services | Format-Table -HideTableHeaders | Out-String
$services = $services.split("`n").trim()
Ninja-Property-Set services $services
Add it to your Automation Library in NinjaOne to get started!