Additional language deployment

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

July 22, 2020 - 11:46 PM

Hello,

I'm looking for a way to deploy a language (Japanese ja-jp) to Windows 10 machines using WAPT. Currently, we do it manually and have to disable WAPT's Windows Update feature for it to be downloaded via Windows Update. I can't find the offline installation instructions or the correct KB article for the right version of Windows. If anyone has any suggestions or experience with this, I would appreciate it.

Thank you
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
User avatar
vcardon
WAPT Expert
Messages: 278
Registration: Oct 06, 2017 - 10:55 p.m.
Location: Nantes, France

July 23, 2020 - 00:18

Hi Bastien,

You have a very specific need, yet it's 100% legitimate given that you're in New Caledonia with constraints we don't encounter in mainland France.

We received a great contract today, among others, from a private company in Réunion, so the system works really well in the islands too, which is fantastic.

Bastien, you have the Enterprise version with support, so call the office. Your situation is very specific, and we'll find the best compromise together. We'll be most efficient on the phone.

Cheers,

Vincent
Vincent CARDON
Tranquil IT
florentR2
Messages: 100
Registration: February 13, 2020 - 5:23 PM

July 23, 2020 - 11:29

Good morning,
If it's just the language bar, here's how we do it with a PowerShell script that runs at login. For example, to add English, Arabic, and Chinese:

Code: Select all

	$LanguageList = Get-WinUserLanguageList
	$LanguageList.Add("ar-SA")
	$LanguageList.Add("en-US")
	$LanguageList.Add("zh-CN")
	Set-WinUserLanguageList $LanguageList -Force
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

July 23, 2020 - 11:35

Hello,

thank you. Does this command download language packs if they are not present on the machine, or does it only activate them?

I just found a tip to temporarily disable Wapt's WAP to download to APPX files using the function:

EnsureWUAServRunning():

example with TIS-MREMOTENG.

Thanks to the TranquilIT team.
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
florentR2
Messages: 100
Registration: February 13, 2020 - 5:23 PM

July 23, 2020 - 11:48

btravers wrote: July 23, 2020 - 11:35 AM Hello,

Thank you. Does this command download language packs if they are not present on the computer, or does it only activate them?
Good question. I would tend to say that she downloads them, which indeed could be a problem in your case depending on what they will be used for
User avatar
btravers
Messages: 30
Registration: Sep 25, 2017 - 07:02

July 23, 2020 - 12:08

Okay,

I just checked and the command adds the languages ​​to the options but doesn't download the modules - Basic Typing - Handwriting - Voice.
I'll continue.
Thanks
3 x Server: Debian 9.6
104 + 8 + 3 Remote Windows Repositories
Wapt: 1.6.2.7 Enterprise
Console: Windows 10 Pro
florentR2
Messages: 100
Registration: February 13, 2020 - 5:23 PM

July 23, 2020 - 12:16

I also have the impression that it's not downloading everything on my end, but in any case, it works for data entry.

Picture


There might be additional options that can be specified in the PowerShell commands.
Locked