Removeprintersatlogoff
Deploy this script via:
Use this when the ADMX policy isn't available (e.g., older Windows builds or if the policy is grayed out). removeprintersatlogoff
The RemovePrintersAtLogoff logic solves this by treating printer connections as temporary session resources rather than permanent profile fixtures. Deploy this script via: Use this when the
# Logoff script - Remove all TCP/IP and shared printers Get-Printer | Where-Object $_.Type -eq "Connection" -or $_.PortName -match "IP_" | ForEach-Object Remove-Printer -Name $_.Name -ErrorAction SilentlyContinue In healthcare (HIPAA) or finance (SOX), a user
4.8/5 (Deducting 0.2 points for Microsoft’s obtuse naming convention)
You have three primary ways to deploy this setting, depending on your infrastructure.
In healthcare (HIPAA) or finance (SOX), a user should not leave a network printer mapped to a shared workstation after they log off. The next user shouldn't inadvertently print to "HR_Confidential_Laser" or, worse, a "Personal_Fax" line. removeprintersatlogoff ensures that every session starts with a clean printer slate.
All copyrights for this article are reserved to Inet-search
