Answered by:
Creating only Uninstall Package for O365 Proplus using SCCM

Question
-
Team,
I have created a SCCM deployment package for O365 Proplus with both xml for Install and Uninstall,
When I made the deployment as Available both Install and Uninstall is working fine, but when choosing Required the Package is getting installed but uninstall option is Grayed out.
I thought of creating a new package for Unistall xml alone,with below code which is working fine locally, but not working when I deployed thro SCCM. Kindly help.
Uninstall.xml:
<Configuration>
<Remove SorucePath="" officeclientedition="32">
<Product ID="O365ProPlusRetail" >
<Language ID=”en-us” />
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"></Configuration>
------------
Friday, June 5, 2015 5:51 PM
Answers
-
...but when choosing Required the Package is getting installed but uninstall option is Grayed out.
Required = the device *MUST* have this application deployed.
To allow an uninstall, would imply that it is optional/discretionary...Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)Saturday, June 6, 2015 11:48 AM
All replies
-
...but when choosing Required the Package is getting installed but uninstall option is Grayed out.
Required = the device *MUST* have this application deployed.
To allow an uninstall, would imply that it is optional/discretionary...Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)Saturday, June 6, 2015 11:48 AM -
<Remove SorucePath="" officeclientedition="32">
Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)Saturday, June 6, 2015 11:48 AM -
Don is correct on the "required" aspect. If you need to make a separate removal package (okay, "Application"), just make a script wrapper and name it "Office365 ProPlus Removal" and make it required. Sort of a double-negative, but it should work.Sunday, June 7, 2015 1:15 AM
-
Can I have any Document for above suggested solution please?
- Edited by sundark87 Tuesday, June 9, 2015 11:26 AM
Tuesday, June 9, 2015 6:59 AM -
This is working fine when I executed Locally Don.Tuesday, June 9, 2015 11:25 AM