Skip to content

Instantly share code, notes, and snippets.

@Pe46dro
Created January 11, 2022 13:59
Show Gist options
  • Save Pe46dro/d7e3e9747e9bf83a5a7273b18cc1a014 to your computer and use it in GitHub Desktop.
Save Pe46dro/d7e3e9747e9bf83a5a7273b18cc1a014 to your computer and use it in GitHub Desktop.
Disable sharing on all printers
Get-Printer | Where-Object {($_.Type -eq 'Local') -and ($_.Shared -eq 'True')} | ForEach-Object {Set-Printer -Name $_.Name -Shared $False}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment