広告
WindowsのPowerShellでbeep音を出す。
折角なのであのメロディーの再現にトライしてみた。
実行に必要な準備
- PowerShellのインストール
- Windowsメニュー → アクセサリ → PowerShellを右クリック → 管理として起動
- PowerShellスクリプトの実行セキュリティポリシーを変更
実行するスクリプト(enter.ps1)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# a certain convenience store [Console]::Beep(1479, 400) # F#5 [Console]::Beep(1174, 400) # D5 [Console]::Beep(880, 400) # A4 [Console]::Beep(1174, 400) # D5 [Console]::Beep(1318, 400) # E5 [Console]::Beep(1760,1000) # A5 [Console]::Beep(1318, 400) # E5 [Console]::Beep(1479, 400) # F#5 [Console]::Beep(1318, 400) # E5 [Console]::Beep(880, 400) # A4 [Console]::Beep(1174, 800) # D5 |
実行結果
1 2 3 4 5 |
PS C:'\pass'> Get-ExecutionPolicy RemoteSigned PS C:'\pass'> PS C:'\pass'> .\enter.ps1 (演奏中) |
クオリティはご愛嬌ということで(笑)
広告
広告