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 deploying office 365 with project

  • Thread starter Thread starter dj3094
  • Start date Start date
  • Replies Replies 1
  • Views Views 1K

dj3094

Well-Known Member
Messages
241
Reaction score
7
Points
18
I am deploying office 365 with SCCM and it installs good. But it is not installing project. I specified in xml to install project as well. But if I run manually it install both

<Configuration>
<Add OfficeClientEdition="32" Channel="Broad" Version="15.0.4623.1001." OfficeMgmtCOM="True">
<Product ID="O365ProPlusRetail">
<Language ID="en-us"/>
</Product>
<Product ID="ProjectProRetail">
<Language ID="en-us"/>
</Product>
</Add>
<Display level="None" AcceptEULA="TRUE" />
<Logging Level="Standard" Path="%temp%" />
<Property Name="AUTOACTIVATE" Value="1" />
<Property Name="FORCEAPPSHUTDOWN" Value="True" />
<Property Name="SharedComputerLicensing" Value="0" />
</Configuration>
 
Try this .. Works for me...

<Configuration>
<Add OfficeClientEdition="32" Channel="Deferred" OfficeMgmtCOM="TRUE">
<Product ID="ProjectProRetail">
<Language ID="en-us" />
</Product>
</Add>
<Updates Channel="Deferred" Enabled="TRUE" />
<Display Level="None" AcceptEULA="TRUE" />
</Configuration>
 
Back
Top