Jump to content

Recommended Posts

Posted

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.

Posted
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....

Posted

From a previous thread. Needs to run as a startup script

 

 

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

Posted
From a previous thread. Needs to run as a startup script

 

 

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...