Created
February 22, 2016 22:19
-
-
Save chubin/22a239783c67456eb0de to your computer and use it in GitHub Desktop.
How to enable wttr.in in a PowerShell console
This file contains hidden or 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
# To enable ANSI sequences in a PowerShell console run the following commands. | |
# After that you can use wttr.in in you PowerShell just lake that: | |
# (curl http://wttr.in/ -UserAgent "curl" ).Content | |
# | |
# More on it: | |
# http://stknohg.hatenablog.jp/entry/2016/02/22/195644 (jp) | |
# | |
Add-Type -MemberDefinition @" | |
[DllImport("kernel32.dll", SetLastError=true)] | |
public static extern bool SetConsoleMode(IntPtr hConsoleHandle, int mode); | |
[DllImport("kernel32.dll", SetLastError=true)] | |
public static extern IntPtr GetStdHandle(int handle); | |
[DllImport("kernel32.dll", SetLastError=true)] | |
public static extern bool GetConsoleMode(IntPtr handle, out int mode); | |
"@ -Namespace Win32 -Name NativeMethods | |
# コンソールモードを変更 | |
$Handle = [Win32.NativeMethods]::GetStdHandle(-11) # stdout | |
$Mode = 0 | |
$Result = [Win32.NativeMethods]::GetConsoleMode($Handle, [ref]$Mode) | |
$Mode = $Mode -bor 4 # undocumented flag to enable ansi/vt100 | |
$Result = [Win32.NativeMethods]::SetConsoleMode($Handle, $Mode) | |
chcp 437 |
Anyone figured out a fix to this?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@strangeronline Yes, the gist is already 4 years old. Now it should just work out of the box, as you did it