Skip to content

Instantly share code, notes, and snippets.

@mkesper
Last active August 29, 2015 14:25
Show Gist options
  • Save mkesper/173f0884f50e13c37a37 to your computer and use it in GitHub Desktop.
Save mkesper/173f0884f50e13c37a37 to your computer and use it in GitHub Desktop.
Why i18n of commands is a very bad idea
# Thank you, Microsoft!
switch((Get-UICulture).Name){
# You need to check for every Culture the script could encounter
"de-DE" {$Yes = "J"}
default {$Yes = "Y"}
}
$TakeOwnParameters = @("/f", $Share, "/R", "/D", $Yes)
Invoke-Expression "takeown.exe @TakeOwnParameters" | Write-Output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment