Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


stevenz

2802 posts

Uber Geek


#242608 5-Nov-2018 15:06
Send private message

Has anyone got a process to silently deploy the required files for the Maori language pack and associated files for Win10 1803? I've got the LIP as well as mi-NZ "Basic" and "Handwriting" CABs and can install them using DISM /add-package or the LPKSETUP tool and either will "complete" but nothing shows up in the Language settings afterwards.

 

DISM /get-packages shows it as "Installed" but adding it from the settings causes Windows to go off and try to download it from the internet again.

 

What's the magic trick for getting this to go?

 

 





Create new topic
jhsol
102 posts

Master Geek


  #2120872 6-Nov-2018 13:51
Send private message

Was bored and decided to have a go at this and these are my results

 

This is confirmed as working (on my end at least) with Win 10 x64 1809

 

Ok, so the language pack I installed was downloaded from 

 

http://download.windowsupdate.com/c/msdownload/update/software/updt/2018/04/lp_101911e1c873a255503e9fc32c8c61448fabdae4.cab 

 

Add LIP to image

 

2 methods to do this. First one is to add to a WIM before deployment via MDT/SCCM/OtherApp but id probably just add it as a step to the task sequence so that you dont have to add it every time a new WIM is used

 

DISM /online /add-package /packagepath:.\FolderPath

 

 

 

You then need to either Powershell the language default settings or set the optional language via an unattend.xml file

 

Unattend.xml File

 

You can set the language via the specialize part in an unattend.xml file. The settings i use for en-nz are 

 

  • InputLocale 1409:00000409 (New Zealand)
  • SystemLocale: en-NZ
  • UI Language: en-US
  • UILanguageFallback:
  • UserLocale: en-NZ

So you would have to play around with finding the correct settings for maori as default. My guess would be setting Userlocale mi-latn but probably a trial and error on your behalf.

 

  • InputLocale 0481:00000481 (Maori)

Powershell - Set Language

 

##This will add Maori as an optional language in your OS Language Settings.

 

$LangList = get-winuserlanguagelist
$LangList.add("mi-latn")
set-winuserlanguagelist -language $LangList

 

## This next command will set the default language

 

set-winuilanguageoverride -language mi-latn ##change it to en-nz if you want english as default and maori as option

 

Powershell - Checks

 

The following command will list installed language packs in your current image (use /image-path if its an offline image). Do this to test if the files are installed.

 

dism /online /get-intl /english

 

This command lists the languages set (same as looking at languages via settings in Win10)

 

get-winuserlanguagelist 

 

 

 

NOTES!!!

 

You do need a restart after set-winuilanguageoveride command. So script a restart in your task sequence for this to take effect.

 

 

 

Deployment

 

Obviously this is taken from the point of view that you are using this during a task sequence during the building of laptop/desktop. If you want to roll out to an already existing fleet (ie via SCCM) your sequence would be a single powershell script that 

 

     

  1. Installed the LIP
  2. Set languages and languageoverride
  3. reboot (maybe with a prompt or a 2min delay or something)

 

It would be safest to set the script to run at logoff or when the user is not logged in, or maybe just script adding the maori language as an option and then a group email to everyone linking to a wiki\intranet with instructions on how to change it. 

 

 

 

PM me your emali address if you need more info/screenshots, but yea pretty confident this should be enough to get you going

 

 

 

Jas

 

 




nathan
5695 posts

Uber Geek
Inactive user


  #2120875 6-Nov-2018 13:53
Send private message

heres some info on how this changes in 1809+

 

https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/Adding-Local-Experience-Packs-to-your-Windows-image/ba-p/254125


Coil
6614 posts

Uber Geek
Inactive user


  #2120911 6-Nov-2018 15:42
Send private message

I have X64 1809 and it came with MRI pack by default?? 


Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.