Windows Thread, Microsoft Image Writer printer in Technical; Hi all,
Does anyone know how to delete the Microsoft image writer that gets installed as part of office 2003 ...
-
2nd September 2008, 06:52 PM #1 Microsoft Image Writer printer
Hi all,
Does anyone know how to delete the Microsoft image writer that gets installed as part of office 2003 pro. I know that one can use the mst file to get it to not install but the msi and package is provided by RM. This really annoys me as they should have taken care of this.
Ash.
-
-
IDG Tech News
-
2nd September 2008, 07:04 PM #2 You should just be able to delete the printer in Printers and Faxes.
I've managed to do that and it's stayed away.
-
-
2nd September 2008, 07:38 PM #3 
Originally Posted by
ashok
Hi all,
Does anyone know how to delete the Microsoft image writer that gets installed as part of office 2003 pro. ....Ash.
I think that you could delete this by:
1. Logging on as the station administrator [locally]
2. Stop and start the spool service.
3. In Control Panel/Printers And Settings delete the 'offending' printer
The printer should now have been deleted. Restart the spool service and restart the station. Logon as one of your domain users and test the results.
It worked here....
-
-
2nd September 2008, 07:43 PM #4 From a previous thread. Needs to run as a startup script
Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colInstalledPrinters = objWMIService.ExecQuery ("SELECT * FROM Win32_Printer")
For Each objPrinter in colInstalledPrinters
IF objPrinter.Name = "Microsoft Office Document Image Writer" THEN
objPrinter.Delete_
ELSEIF objPrinter.Name = "Microsoft XPS Document Writer" THEN
objPrinter.Delete_
END IF
Next
-
-
2nd September 2008, 08:19 PM #5 
Originally Posted by
DMcCoy
From a previous thread. Needs to run as a startup script
Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colInstalledPrinters = objWMIService.ExecQuery ("SELECT * FROM Win32_Printer")
For Each objPrinter in colInstalledPrinters
IF objPrinter.Name = "Microsoft Office Document Image Writer" THEN
objPrinter.Delete_
ELSEIF objPrinter.Name = "Microsoft XPS Document Writer" THEN
objPrinter.Delete_
END IF
Next Hi Guys,
I should have mentioned we need to do this in a automated way so a script is ideal.
I'll have a go at the DMcCoy has posted.
Thanks!
Ash.
-
-
3rd September 2008, 12:37 AM #6 An alternative script what I use.
-
-
4th September 2008, 12:20 PM #7 Thanks guys,
The script works fine. Brill.
Ash.
-
SHARE: 
Similar Threads
-
Replies: 4
Last Post: 30th December 2009, 09:57 AM
-
By ricki in forum Educational Software
Replies: 2
Last Post: 16th June 2008, 11:01 AM
-
By jamin100 in forum How do you do....it?
Replies: 1
Last Post: 26th February 2008, 11:15 PM
-
By Mr_M_Cox in forum Windows
Replies: 1
Last Post: 25th January 2008, 10:53 AM
-
By eejit in forum Windows
Replies: 19
Last Post: 5th December 2005, 01:03 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules