Skip to content

Instantly share code, notes, and snippets.

@grafst
Created July 14, 2023 17:05
Show Gist options
  • Save grafst/54cbb0be73421a054919ae92f201acf2 to your computer and use it in GitHub Desktop.
Save grafst/54cbb0be73421a054919ae92f201acf2 to your computer and use it in GitHub Desktop.
Function Disable-PrinterInstallation {
New-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name NoAddPrinter -Value 1 -Type DWORD
}
Function Enable-PrinterInstallation {
New-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name NoAddPrinter -Value 0 -Type DWORD
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment