<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>onderwerp Re: Windows 11 Home en talen in Computing &amp; Displays</title>
    <link>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14417838#M4451</link>
    <description>Heb je al in de Windows instellingen gekeken? Onder Tijd en taal &amp;gt; Taal en regio. Daar moet je zijn voor tijd, taal en regio instellingen.&lt;BR /&gt;</description>
    <pubDate>Fri, 27 Mar 2026 14:55:04 GMT</pubDate>
    <dc:creator>Visje123</dc:creator>
    <dc:date>2026-03-27T14:55:04Z</dc:date>
    <item>
      <title>Windows 11 Home en talen</title>
      <link>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14413639#M4447</link>
      <description>&lt;P&gt;Beste,&lt;/P&gt;&lt;P&gt;Ik heb ruim een jaar een Samsung Galaxy Book4 Edge met Windows 11 Home Edition. Echter sinds 2 weken staat de taal standaard op Engels en kan niet gewijzigd worden naar het Nederlands of een andere taal. Heb ik een ineens&amp;nbsp;single language Windows 11? Dit lijkt me niet goed. Hoe krijg ik de taalinstelling terug op het Nederlands en Windows Home 11 Edition?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 20:43:03 GMT</pubDate>
      <guid>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14413639#M4447</guid>
      <dc:creator>KietNhu</dc:creator>
      <dc:date>2026-03-26T20:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Windows 11 Home en talen</title>
      <link>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14416336#M4450</link>
      <description>&lt;LI-CODE lang="markup"&gt;#Original script from https://www.inthecloud247.com/install-an-additional-language-pack-on-windows-11-during-autopilot-enrollment/
#This script need to run as System Context and as 64bit PowerShell

&amp;lt;#
.SYNOPSIS
  Script to install langauge pack and change MUI langauge
.DESCRIPTION
    Script to install langauge package and set default language
.EXAMPLE
    powershell.exe -ExecutionPolicy Bypass -file Invoke-ChangeDefaultLanguage.ps1 
.NOTES
    Credit: #Original script from https://www.inthecloud247.com/install-an-additional-language-pack-on-windows-11-during-autopilot-enrollment/
    Version:        1.0.0
    Author:         Sandy Zeng
    Creation Date:  09.06.2024
    Updated:    
    Version history:
        1.0.0 - (09.06.2024) Script released
#&amp;gt;

function Write-LogEntry {
    param (
        [parameter(Mandatory = $true, HelpMessage = "Value added to the log file.")]
        [ValidateNotNullOrEmpty()]
        [string]$Value,
        [parameter(Mandatory = $true, HelpMessage = "Severity for the log entry. 1 for Informational, 2 for Warning and 3 for Error.")]
        [ValidateNotNullOrEmpty()]
        [ValidateSet("1", "2", "3")]
        [string]$Severity,
        [parameter(Mandatory = $false, HelpMessage = "Name of the log file that the entry will written to.")]
        [ValidateNotNullOrEmpty()]
        [string]$FileName = $LogFileName
    )
    # Determine log file location
    $LogFilePath = Join-Path -Path $env:ProgramData -ChildPath $("Microsoft\IntuneManagementExtension\Logs\$FileName")
	
    # Construct time stamp for log entry
    $Time = -join @((Get-Date -Format "HH:mm:ss.fff"), " ", (Get-WmiObject -Class Win32_TimeZone | Select-Object -ExpandProperty Bias))
	
    # Construct date for log entry
    $Date = (Get-Date -Format "MM-dd-yyyy")
	
    # Construct context for log entry
    $Context = $([System.Security.Principal.WindowsIdentity]::GetCurrent().Name)
	
    # Construct final log entry
    $LogText = "&amp;lt;![LOG[$($Value)]LOG]!&amp;gt;&amp;lt;time=""$($Time)"" date=""$($Date)"" component=""$($LogFileName)"" context=""$($Context)"" type=""$($Severity)"" thread=""$($PID)"" file=""""&amp;gt;"
	
    # Add value to log file
    try {
        Out-File -InputObject $LogText -Append -NoClobber -Encoding Default -FilePath $LogFilePath -ErrorAction Stop
        if ($Severity -eq 1) {
            Write-Verbose -Message $Value
        }
        elseif ($Severity -eq 3) {
            Write-Warning -Message $Value
        }
    }
    catch [System.Exception] {
        Write-Warning -Message "Unable to append log entry to $LogFileName file. Error message at line $($_.InvocationInfo.ScriptLineNumber): $($_.Exception.Message)"
    }
}

# The language we want as new default. Language tag can be found here: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/available-language-packs-for-windows?view=windows-11#language-packs
$LPlanguage = "nl-NL"

#Region Initialisations
$LogFileName = "Invoke-ChangeDefaultLanguage-$LPlanguage.log"

# As In some countries the input locale might differ from the installed language pack language, we use a separate input local variable.
# A list of input locales can be found here: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs?view=windows-11#input-locales
$InputlocaleRegion = "nl-NL"

# Geographical ID we want to set. GeoID can be found here: https://learn.microsoft.com/en-us/windows/win32/intl/table-of-geographical-locations
$geoId = "176"

#Install language pack and change the language of the OS on different places
#Install an additional language pack including FODs. With CopyToSettings (optional), this will change language for non-Unicode program. 
Write-LogEntry -Value "Installing language $LPlanguage" -Severity 1
try {
    Install-Language -Language $LPlanguage -CopyToSettings -ErrorAction Stop
    Write-LogEntry -Value "$LPlanguage is installed" -Severity 1
}
catch [System.Exception] {
    Write-LogEntry -Value "$LPlanguage install failed with error: $($_.Exception.Message)" -Severity 3
    exit 1
}

# Configure new language defaults under current user (system) after which it can be copied to system
Write-LogEntry -Value "Set Win UI Language Override for regional changes $InputlocaleRegion " -Severity 1
Set-WinUILanguageOverride -Language $InputlocaleRegion

# adding the input locale language to the preferred language list, and make it as the first of the list. 
Write-LogEntry -Value "Set Win User Language List" -Severity 1
$OldList = Get-WinUserLanguageList
$UserLanguageList = New-WinUserLanguageList -Language $InputlocaleRegion
$UserLanguageList += $OldList
Set-WinUserLanguageList -LanguageList $UserLanguageList -Force

# Set Win Home Location, sets the home location setting for the current user. This is for Region location 
Write-LogEntry -Value "Set Region location $geoId" -Severity 1
Set-WinHomeLocation -GeoId $geoId

# Set Culture, sets the user culture for the current user account. This is for Region format
Write-LogEntry -Value "Set Region format $InputlocaleRegion" -Severity 1
Set-Culture -CultureInfo $InputlocaleRegion

# Copy User International Settings from current user to System, including Welcome screen and new user
Write-LogEntry -Value "Copy User International Settings from current user to System" -Severity 1
Copy-UserInternationalSettingsToSystem -WelcomeScreen $True -NewUser $True

Exit 3010&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H1&gt;🪜 Stap-voor-stap&lt;/H1&gt;&lt;H2&gt;1. PowerShell openen als administrator&lt;/H2&gt;&lt;OL&gt;&lt;LI&gt;Klik op Start&lt;/LI&gt;&lt;LI&gt;Typ: powershell&lt;/LI&gt;&lt;LI&gt;Rechtsklik op:&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; &lt;STRONG&gt;Windows PowerShell&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Klik:&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; &lt;STRONG&gt;Als administrator uitvoeren&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H2&gt;2. Kopieer het script&lt;/H2&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; Selecteer het volledige script (alles wat ik je heb gegeven)&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; Druk op &lt;STRONG&gt;Ctrl + C&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H2&gt;3. Plakken in PowerShell&lt;/H2&gt;&lt;P&gt;In het blauwe/ zwarte scherm:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; Klik met je &lt;STRONG&gt;rechtermuisknop&lt;/STRONG&gt;&lt;BR /&gt;(of druk &lt;STRONG&gt;Ctrl + V&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;Alles wordt nu geplakt&lt;/P&gt;&lt;HR /&gt;&lt;H2&gt;4. Script uitvoeren&lt;/H2&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; Druk gewoon op &lt;STRONG&gt;Enter&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H1&gt;&lt;span class="lia-unicode-emoji" title=":zandloper_niet_klaar:"&gt;⏳&lt;/span&gt; Wat gebeurt er nu?&lt;/H1&gt;&lt;UL&gt;&lt;LI&gt;Windows gaat Nederlands downloaden &lt;span class="lia-unicode-emoji" title=":nederland:"&gt;🇳🇱&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Installeert taalpakket&lt;/LI&gt;&lt;LI&gt;Zet alles om&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":gloeilamp:"&gt;💡&lt;/span&gt; Het kan lijken alsof er niks gebeurt → gewoon laten lopen&lt;/P&gt;&lt;HR /&gt;&lt;H1&gt;&lt;span class="lia-unicode-emoji" title=":knop_Herhalen:"&gt;🔁&lt;/span&gt; Klaar?&lt;/H1&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":rug_van_hand_met_wijsvinger_naar_rechts:"&gt;👉&lt;/span&gt; Start je laptop opnieuw op&lt;/P&gt;&lt;P&gt;Daarna:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Windows = Nederlands&lt;/LI&gt;&lt;LI&gt;Toetsenbord = Nederlands&lt;/LI&gt;&lt;LI&gt;Regio = goed ingesteld&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 27 Mar 2026 10:56:05 GMT</pubDate>
      <guid>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14416336#M4450</guid>
      <dc:creator>Rohit</dc:creator>
      <dc:date>2026-03-27T10:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Windows 11 Home en talen</title>
      <link>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14417838#M4451</link>
      <description>Heb je al in de Windows instellingen gekeken? Onder Tijd en taal &amp;gt; Taal en regio. Daar moet je zijn voor tijd, taal en regio instellingen.&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Mar 2026 14:55:04 GMT</pubDate>
      <guid>https://eu.community.samsung.com/t5/computing-displays/windows-11-home-en-talen/m-p/14417838#M4451</guid>
      <dc:creator>Visje123</dc:creator>
      <dc:date>2026-03-27T14:55:04Z</dc:date>
    </item>
  </channel>
</rss>

