I read English Output , where it gives this function to force PowerShell output in English
function Set-PowerShellUICulture {
    param([Parameter(Mandatory=$true)]
          [string]$Name)
    process {
        $culture = [System.Globalization.CultureInfo]::CreateSpecificCulture($Name)
        $assembly = [System.Reflection.Assembly]::Load("System.Management.Automation")
        $type = $assembly.GetType("Microsoft.PowerShell.NativeCultureResolver")
        $field = $type.GetField("m_uiCulture", [Reflection.BindingFlags]::NonPublic -bor [Reflection.BindingFlags]::Static)
        $field.SetValue($null, $culture)
    }
}
This only seems to work half-way, as line 2 here contains Norwegian "Ingen Tilgang", which means "Access Denied".
get-acl *                                                                                                     
get-acl : Ingen tilgang
At line:1 char:1
+ get-acl *
+ ~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Get-Acl], UnauthorizedAccessException
    + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.GetAclCommand
Any other way I can force output to be en English?;)
