2012年9月26日水曜日

◆スリープ

Windows7の時はキーボード操作で簡単にスリープできたのだが、Windows8はちょっとキー操作が多い。
「Win + D」「Alt + F4」「↑」「Enter」
とかって感じ?(↑の回数が常に一定なのか?)

複合キーが多く頻繁に使うにはちょっと面倒。

ということで、コマンドを作ってショートカットに割り当てておくことにした。

こんな感じでできそうだ。

Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Application]::SetSuspendState(
    [System.Windows.Forms.PowerState]::Suspend,$false,$false)

後はショートカットを作り、以下のようなコマンドを指定。

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -file "D:\Documents\Luncher\Sleep.ps1" -WindowStyle Hidden

クイックランチ(ツールバー)に突っ込んでおけばワンクリックでスリープできるようになる。
image

0 件のコメント:

コメントを投稿