This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: How To detect OS language By Installshield Script
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Aug 16, 2019
12:46 AM
How To detect OS language By Installshield Script
Hi,
I need to know is there any script to detect the OS language By Installshield Script.
(2) Replies
Aug 16, 2019
01:08 AM
You can refer below
SYSINFO.nSystemDefaultUILangID |
Value indicates the installed operating system language's ID. |
SYSINFO.nSystemLangID |
Value indicates the system language's ID. |
SYSINFO.nUserLangID |
Value indicates the user language's ID. |
Aug 16, 2019
01:08 AM
Hi @Sashikanta,
There are few handful of API provided. You can use
GetSystemDefaultLangID()
GetSystemDefaultLCID()
GetSystemDefaultUILanguage()
You can find further details in Microsoft Docs.
Thanks