回复 1# wgf4242
reg add "HKEY_CURRENT_USER\Console\%%SystemRoot%%_system32_cmd.exe" /v "CodePage" /t reg_dword /d 0xfde9
这个保存为bat文件的话,是对的。
你说试了不行,是cmd命令提示符直接输入吧。
这样的话,方法有几个。
1.- set char100=%
- reg add "HKEY_CURRENT_USER\Console\%char100%SystemRoot%char100%_system32_cmd.exe" /v "CodePage" /t reg_dword /d 0xfde9
复制代码 2.- set org_sr=%SystemRoot%
- set SystemRoot=
- reg add "HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe" /v "CodePage" /t reg_dword /d 0xfde9
- set SystemRoot=%org_sr%
复制代码
|