2 lines
142 B
PowerShell
2 lines
142 B
PowerShell
|
#Zebra - Disables all touch screens
|
||
|
Get-PnpDevice | Where-Object {$_. FriendlyName -like '*touch screen*'} | Disable-PnpDevice -Confirm:$false
|