Home>
Status
Currently PowerShell code page is shift-jis.
I want to remotely login to another server using the SSH function of Powershell.
However, the server environment is Linux and the character code is EUC.
Therefore, we want to convert the PowerShell console code page to EUC.
Even if you specify a code page for EUC in Powershell, you cannot specify it.
(51932 is EUC character code https://www.ipentec.com/document/windows-codepage-list)
Can I specify the page code of the console arbitrarily?
Also, if you know how to specify, please let me know.
-
Answer # 1
Related articles
- windows - change powershell file name
- windows - if i change the device, aws public key authentication fails? !!
- windows - [powershell] expand-archive causes a process inaccessible error when trying to decompress a zip
- Windows 7 installation using MySQL8016 to change passwords and connect to Navicat
- i want to change the upper limit of windows 10 cpu usage with vbscript
- Pip change source in pycharm under Windows
- about windows powershell
- i want to change the setting of $profile of powershell of windows10
- Windows Anaconda installation, source change and update method
- how to forcibly change one or more lines or branches such as if when debugging powershell
- powershell - sort csv (tsv) files on windows command line
- powershell - i want to extract part of the systeminfo command from aws windows server
- windows - i want to change theano of using theano backend to tensorflow
- when executing the java source code with windows powershell, garbled characters will occur with specific characters (hiragana)
- powershell - when did expand-archive's -outputpath change to -destinationpath?
- windows 10 - i want to change "turn off the display after the next time" to "none" by editing the registry
- i want to change the "window position" of windows 10 task manager
- windows - i want to get a command result file in powershell (in english)
- windows - when i launch anaconda powershell prompt, i get an error
- pipe processing (awk) using windows subsystem for linux 2 from powershell
Related questions
- windows : I want the console page code to be EUC
- Add custom rules for accessing files in Windows using PowerShell
- python - about launching jupyter notebook from windows powershell
- java - processing i want the color to change when i press a specific shape
- windows - change powershell file name
- windows - i want to get a command result file in powershell (in english)
- windows - i want to easily process two arrays in parallel with powershell and output them
- ruby - [vs code] the terminal cannot be displayed normally
- windows - how to get remoto name by pipe from net use with powershell
- acquire difference of windows server setting information
The PowerShell console code page seems to be stored in the following registry:
Computer \ HKEY_CURRENT_USER \ Console \% SystemRoot% _System32_WindowsPowerShell_v1.0_powershell.exe
The registry operation was performed directly, but in this case, the characters entered by the console are no longer displayed.
In the first place, the character codes that can be supported on the console side may have been decided. (I thought it was just an encoding process ...)
Sorry, it will not be possible to solve, so the above verification will be self-solved.