the_quick Posted July 8, 2019 Posted July 8, 2019 Anyone seen this problem: multiple OneNote printers, like 20 - we seen it on few computers already. We do not map this printer for anyone, I think it comes from Office 2010 1. How to remove multiple printers in one go 2. How to prevent OneNote printers from appearing
MatthewL Posted July 8, 2019 Posted July 8, 2019 That's odd, never seen so many copies of it. If you don't use it in your print mapping GPO just create a task to Delete "OneNote" and it will remove it on all that it applies to.
DrBeaker Posted July 8, 2019 Posted July 8, 2019 I saw something similar the other day. It made me chuckle but it when I was logged on as a test account. Will have to check to see if I get the problem again. I can't say I paid much attention to it to be honest.
cheekycharly Posted October 15, 2019 Posted October 15, 2019 Got the same thing on a laptop I have just looked at. Will upload a picture from my phone.
PotNoodleTech Posted October 15, 2019 Posted October 15, 2019 Wow I've not seen that one but I've got in my group policies to automatically remove any printer called Onenote (or Fax or any of the others!).
the_quick Posted October 18, 2019 Author Posted October 18, 2019 I have implemented GPO that should remove OneNote printer, but to the computers OU, maybe I should place it in user OU -as printers still appearing.
PotNoodleTech Posted October 18, 2019 Posted October 18, 2019 I have implemented GPO that should remove OneNote printer, but to the computers OU, maybe I should place it in user OU -as printers still appearing. Yes mine are in User Configuration deleting the following. Send To OneNote 16 Fax Microsoft Print to PDF
petben Posted December 9, 2019 Posted December 9, 2019 Hello, did anyone find a solution to this? I can remove the 20+ OneNote printers manually, but powershell get-printers returns nothing, I cant find anything in the registry. Any ideas for a a powershell solution? Thanks
InspireICT Posted March 4, 2020 Posted March 4, 2020 Did anyone find a solution for this - the usual tricks don't seem to be working? Thanks
the_quick Posted March 4, 2020 Author Posted March 4, 2020 So far only solution was to uninstall OneNote, our new build will not have it.
VBallantyne Posted August 7, 2020 Posted August 7, 2020 Just about to create my own post about this issue but see there is already one created within this year. Any fix yet? I created a delete local printer GPO but its having little effect. See attached GPO.
DaveTheTech Posted August 7, 2020 Posted August 7, 2020 Do they come back if you remote them all? How many computers are effected?
the_quick Posted August 7, 2020 Author Posted August 7, 2020 We mainly see it on staff computers. Our new build has OneNote entirely removed, so maybe it will stop it. Scrips had little to no effect
VBallantyne Posted August 13, 2020 Posted August 13, 2020 I have easily several hundred computers onsite but cant tell you how many have the issue. As others have suggested the GPO has little impact. Using Powershell only seems to remove for the current logged on user. Which suggests the OneNote printer is installed each time a user logs on. Cant just remove OneNote application as OneNote for Classroom is used by several teachers/students. Not fully moved across to Teams yet. Not tested to see if I remove them manually one at a time to see if they reappear yet though. No body got time for that lol!
cgilmour Posted May 6, 2021 Posted May 6, 2021 Hi, I've tried various things and I've found that removing registry entries in the following keys removes them but you'll need to use psexec for the key ending PRINTENUM ( or change ownership of the key) , however I've only carried this out on one of our test laptops and feel we shouldn't need to go this far to remove these printers. Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\SWD\PRINTENUM Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers The powershell commands which "worked" for us are :- Get-ChildItem -path HKLM:\SYSTEM\CurrentControlSet\Control\Print -Recurse |where { $_.Name -like '*OneNote for Windows 10'} | Remove-Item -Force Get-ChildItem -path HKLM:\SYSTEM\CurrentControlSet\Enum\SWD\PRINTENUM -Recurse |where { $_.Name -like '*OneNote for Windows 10'} | Remove-Item -Force As I say I'm not condoning this method as I don't know enough about any other effects. We're face with a similar problem of various computers from a few hundred having this issue and I'm a bit loathe to go around editing registry keys so if anyone has a solutions please let me know :-) Cheers Chris . 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now