2022-02-20 Powershellで数値を二進数に変換 プログラミング 地味にべんりなのでprofile.ps1に入れた function bin($n) { return [convert]::ToString($n,2) }