Last active
September 21, 2017 08:03
-
-
Save hihigash/a689eedc72ed05c1aafa to your computer and use it in GitHub Desktop.
検証マシンのセットアップ時に使用する設定 (VMWare) for Windows 8.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: | |
:: WINDOWS SETTINGS | |
:: | |
:: キーボードの配列を英語配列にする | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "LayerDriver JPN" /t REG_SZ /d kbd101.dll /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardIdentifier" /t REG_SZ /d PCAT_101KEY /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardSubtype" /t REG_DWORD /d 0 /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardType" /t REG_DWORD /d 7 /f | |
:: HelpSticker を無効にする | |
%SystemRoot%\System32\reg.exe ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\EdgeUI /v DisableHelpSticker /t REG_DWORD /d 1 /f | |
:: システム ローケルを英語から日本語にする | |
Powershell -Command "& {Import-Module International;Set-Culture ja-JP;Set-WinSystemLocale ja-JP;Set-WinHomeLocation 0x7A;Set-WinUserLanguageList ja-JP -Force}" <NUL | |
:: | |
:: OFFICE 2013 WITH SP1 SETTINGS | |
:: | |
:: Office インストール後の [Office ライセンス認証] の画面と [新しい Office へようこそ] の画面を非表示にする | |
%SystemRoot%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Office\15.0\ClickToRun /v "disablefirstrun" /t REG_SZ /d On /f | |
:: | |
:: DEBUG SETTINGS (You MUST elevate privileage at the command prompt!) | |
:: | |
%SystemRoot%\System32\bcdedit.exe /debug on | |
%SystemRoot%\System32\bcdedit.exe /dbgsettings serial debugport:2 baudrate:115200 | |
:: | |
:: REBOOT | |
:: | |
%SystemRoot%\System32\shutdown.exe /r /t 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment