M365 Installation - Language not found error

karthik palani 1,036 Reputation points
2024-10-28T17:15:05.1233333+00:00

HI All,

I would like to create an XML file for Microsoft 365 Apps for enterprise, including Visio Plan 2 and Project Professional 2024 (Volume license). The configuration should exclude Access, Groove, Skype, and Publisher. The supported languages should be English (United Kingdom) and English (United States). The installation should be downloaded from the CDN, with all applications shut down and any existing installations of Office, Visio, and Project uninstalled. Additionally, the setup should enable shared computer activation, with the organization name specified as ‘NGO.’ The license agreement should be accepted automatically, and the Semi-Annual Channel should be selected.

I get the below error. Appreciate your advice

1.png

I use below XML

<Configuration ID="XXXXX">

<Add OfficeClientEdition="64" Channel="SemiAnnual">

<Product ID="O365ProPlusRetail">

  <Language ID="en-gb" />

  <ExcludeApp ID="Access" />

  <ExcludeApp ID="Groove" />

  <ExcludeApp ID="Skype" />

  <ExcludeApp ID="Publisher" />

</Product>

<Product ID="VisioProPlan2">

  <Language ID="en-gb" />

  <ExcludeApp ID="Groove" />

  <ExcludeApp ID="Skype" />

  <ExcludeApp ID="Publisher" />

</Product>

<Product ID="ProjectPro2024Volume">

  <Language ID="en-gb" />

  <ExcludeApp ID="Groove" />

  <ExcludeApp ID="Skype" />

  <ExcludeApp ID="Publisher" />

</Product>
```  </Add>

  <Property Name="SharedComputerLicensing" Value="1" />

  <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />

  <Property Name="DeviceBasedLicensing" Value="0" />

  <Property Name="AUTOACTIVATE" Value="1" />

  <Property Name="AgreeToLicense" Value="1" />

  <Updates Enabled="TRUE" />

  <RemoveMSI />

  <Display Level="Full" AcceptEULA="TRUE" />

  <AppSettings>

<Setup Name="Company" Value="XXXX" />


</Configuration>

Office Management
Office Management
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Management: The act or process of organizing, handling, directing or controlling something.
2,177 questions
Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,924 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
5,214 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Jiajing Hua-MFST 10,885 Reputation points Microsoft Vendor
    2024-10-29T02:11:32.82+00:00

    Hi @karthik palani

    According to your image, the error is related to the language, English UK (en-GB) isn't available in Visio and Project. For more you may refer to: Languages, culture codes, and companion proofing languages. I suggest you just add English (United States) for Visio and Project in .xml file.

    <Configuration ID="XXXXX">
    
    <Add OfficeClientEdition="64" Channel="SemiAnnual">
    
    <Product ID="O365ProPlusRetail">
    
      <Language ID="en-gb" />
      <Language ID="en-us" />
    
      <ExcludeApp ID="Access" />
    
      <ExcludeApp ID="Groove" />
    
      <ExcludeApp ID="Lync" />
    
      <ExcludeApp ID="Publisher" />
    
    </Product>
    
    <Product ID="VisioProRetail">
    
      <Language ID="en-us" />
    
    </Product>
    
    <Product ID="ProjectPro2024Volume">
    
      <Language ID="en-us" />
    
    </Product>
    
    </Add>
    
    <Property Name="SharedComputerLicensing" Value="1" />
    
    <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
    
    <Property Name="DeviceBasedLicensing" Value="0" />
    
    <Property Name="AUTOACTIVATE" Value="1" />
    
    <Property Name="AgreeToLicense" Value="1" />
    
    <Updates Enabled="TRUE" />
    
    <RemoveMSI />
    
    <Display Level="Full" AcceptEULA="TRUE" />
    
    <AppSettings>
    
    
    <Setup Name="Company" Value="XXXX" />
    </AppSettings>
    
    </Configuration>
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.