Skip to content

Instantly share code, notes, and snippets.

@M3T4L5T3F
Created February 1, 2019 18:12
Show Gist options
  • Save M3T4L5T3F/b1e00a43a2a8f99a507632fd30ebd023 to your computer and use it in GitHub Desktop.
Save M3T4L5T3F/b1e00a43a2a8f99a507632fd30ebd023 to your computer and use it in GitHub Desktop.
PowerShell one-liners to disable/enable PnP keyboard
#This gist contains example code and is not a functional powershell script. Enjoy!
#
# @M3T4L5T3F
# 20190201
#
#Disable
(Get-PnpDevice | ? { $_.Class -eq 'Keyboard' } | % { $_ | Disable-PnpDevice }
#Enable
(Get-PnpDevice | ? { $_.Class -eq 'Keyboard' } | % { $_ | Enable-PnpDevice }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment