Plik Reg:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe]
"CodePage"=dword:fde9
- Wartość musi być w heksie
- Górna linia musi być dołączona dokładnie tak jak
- HKEY_CURRENT__USER nie może być skrócony
- dword nie może być pominięty
Prompt polecenia:
REG ADD HKCU\Console\%SystemRoot^%_system32_cmd.exe /v CodePage /t REG_DWORD /d 65001
- Wartość może być w dec lub hex
- %SystemRoot% musi zostać wydostany
- REG_DWORD cannot be omitted
PowerShell:
New-Item -ErrorAction Ignore HKCU:\Console\%SystemRoot%_system32_cmd.exe
Set-ItemProperty HKCU:\Console\%SystemRoot%_system32_cmd.exe CodePage 65001
- Wartość może być w dec lub hex
-Type DWord
przyjmuje się z PowerShell 3+
- Może być użyta
ni -> New-Item
- Can use
sp -> Set-ItemProperty
- Can use
-ea 0 -> -ErrorAction Ignore
Cygwin:
regtool add '\HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe'
regtool set '\HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe\CodePage' 65001
- Wartość może być w dec lub hex
- Może być użyty `/ -> Plik Reg:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe]
"CodePage"=dword:fde9
- [ Wartość musi być w heksie ]&003
- Górna linia musi być dołączona dokładnie tak jak
- HKEY_CURRENT__USER nie może być skrócony
- dword nie może być pominięty
Prompt polecenia:
REG ADD HKCU\Console\%SystemRoot^%_system32_cmd.exe /v CodePage /t REG_DWORD /d 65001
- Wartość może być w dec lub hex
- %SystemRoot% musi zostać wydostany
- REG_DWORD cannot be omitted
PowerShell:
New-Item -ErrorAction Ignore HKCU:\Console\%SystemRoot%_system32_cmd.exe
Set-ItemProperty HKCU:\Console\%SystemRoot%_system32_cmd.exe CodePage 65001
- Wartość może być w dec lub hex
-Type DWord
przyjmuje się z PowerShell 3+
- Może być użyta
ni -> New-Item
- Can use
sp -> Set-ItemProperty
- Can use
-ea 0 -> -ErrorAction Ignore
Cygwin:
regtool add '\HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe'
regtool set '\HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe\CodePage' 65001
- Wartość może być w dec lub hex
- Może być użyty
- Może używać
HKCU -> HKEY_CURRENT_USER
- Potrafi używać
user -> HKEY_CURRENT_USER