Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING Uninstall Microsoft Project 2013/2016

  • Thread starter Thread starter Mogomotsi
  • Start date Start date
  • Replies Replies 1
  • Views Views 2K

Mogomotsi

Member
Messages
9
Solutions
2
Reaction score
1
Points
3
I have been assigned a project to uninstall MS project 2013 and 2016 from windows computer clients anyone with a working script or uninstallation string.
 
If the project software is installed, it can be uninstalled using the Setup.exe already present on the device. You can use office customization tool to get the apps installed, or uninstalled.

For project uninstallation, use the following command: setup.exe /uninstall prjpro /config uninstall.xml.

Your uninstall.xml

Code:
<Configuration Product="PrjPro">
    <Logging Type="standard" Path="C:\LogFiles" Template="Microsoft Office Project Uninstal.txt" />
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    <Setting Id="SETUP_REBOOT" Value="NEVER" />
</Configuration>
 
Back
Top