Skip to content

Instantly share code, notes, and snippets.

@TakamiChie
Last active September 13, 2023 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TakamiChie/779df280b1dfc18bcece6a9775032105 to your computer and use it in GitHub Desktop.
Save TakamiChie/779df280b1dfc18bcece6a9775032105 to your computer and use it in GitHub Desktop.
ひとまずHyper-Vの仮想環境で最初に実行すべきコマンドリスト
# 開発向け
winget install Microsoft.VisualStudioCode
winget install OpenJS.NodeJS
winget install Git.Git
winget install Microsoft.PowerShell
# 書籍向け(スクリーンショット撮影)
winget install BrianApps.Sizer
# 日本語設定
# https://zenn.dev/tabukichi/articles/961874600476e7
Install-Language ja-JP -CopyToSettings
Set-systemPreferredUILanguage ja-JP
Set-WinUILanguageOverride -Language ja-JP
Set-WinCultureFromLanguageListOptOut -OptOut $False
Set-TimeZone -id "Tokyo Standard Time"
Set-WinHomeLocation -GeoId 0x7A
Set-WinSystemLocale -SystemLocale ja-JP
Set-WinUserLanguageList -LanguageList ja-JP,en-US -Force
Set-WinDefaultInputMethodOverride -InputTip "0411:00000411"
Copy-UserInternationalSettingsToSystem -welcomescreen $true -newuser $true
# キーボード変更
# https://qiita.com/c-yan/items/5c66a1d5cde46daa897b
Import-Module International
$x = New-WinUserLanguageList en-US
$x[0].InputMethodTips.Clear()
$x[0].InputMethodTips.Add("0409:00000411")
Set-WinUserLanguageList $x -Force
Restart-Computer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment