Jump to content

Recommended Posts

Posted

Morning all,

 

Does anyone know a way to uninstall frontpage using a script through GPO or by using windows installer?

 

Cheers

 

Manick

Posted
If you deployed it through GPO so long as the box is ticked that said remove from computers when falls out of scope (or something along them lines) it will remove it when they next boot up and check for GPO changes
Posted

If it wasn't, you could create a startup script along the lines of:

 

%systemroot%\system32\msiexec.exe /x $pathtofrontpageinstallfiles%\fpage.msi /qn

 

It wouldn't hurt to put a WMI filter on there to look for Frontpage to make sure it doesn't get run on machines without it. Something along the lines of

select * from Win32_SoftwareFeature where ProductName LIKE "%Frontpage 2003%"

should do it.

Posted

Thanks for the replies,

 

Unfortunately it was installed from as part of a suite so there is no msi file for FrontPage alone, there is only the Proplus.msi, how do you stipulate that only FP gets uninstalled????

 

Ta

Posted

In that case, you need the custom maintenance wizard for your version of Office. It should be in the Office Resource Kit for it. I'll attach the Office 2003 version to this post.

 

Run the custom maintenance wizard and tell it to generate a CMW file. It runs a wizard which is similar to the Office installation wizard, tell it to remove the feature that you don't want. Once you're finished, save the CMW file somewhere.

 

Then run the Custom Maintenance Wizard with the following command line:

 

%location of wizard%\maintwiz.exe /c "%location of .cmw file\$filename$.cmw" /qb-

 

Bung that in a startup script and you're good to go.

maintwiz.exe

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