web-dev-qa-db-ja.com

ショートカットキーでWindows 7を再起動したい

キーボードの3つのキーを使用してWindows 7を再起動する方法(盲人用)

これはWindows XPで可能でした(Win キー、 u、 その後 Enter)これはWindows 7では動作しません。

21
Deb

これは厳密には3つのキーではなく、3つのステップです。

  1. デスクトップから、 Alt + F4 (Windowsのシャットダウンダイアログを開きます)。 (デスクトップにいない場合は、最初に Windows Logo Key + D).

    Shut Down Windows dialog screenshot

  2. R (「再起動」に進みます)

    Shut Down Windows dialog screenshot with Restart selected

  3. Enter


ユーザーに聞こえる確認が必要な場合は、サウンドがオンになっていて、Windowsのログオフサウンドが有効になっていることを確認してください。このようにして、彼らは彼らが首尾よくシャットダウンしたことを知るでしょう。

34
Moses

あなた自身のショートカットを作成する

あなたはWindows 7であなた自身のキーボードショートカットを作成することができます。

デスクトップを右クリックして開始し、[新規]> [ショートカット]の順に選択します。最初のテキストボックスに、「Shutdown -r -t 00」と入力します。 [次へ]をクリックしてショートカットにRestartという名前を付けます。 Finishをクリックします。これでショートカットをダブルクリックするとコンピュータが再起動します。

キーボードショートカット

キーボードショートカットを追加するには、デスクトップ上に作成したショートカットを右クリックしてPropertiesを選択します。ショートカットタブで、ショートカットキーのテキストボックスをクリックしてショートカットを入力します。 Applyをクリックすれば完了です。

注:Windowsキーをバインドすることはうまくいかないようです

キーシーケンス

次のキーシーケンスを押すこともできます(個々のキーを押すたびに離します)。

WinRight ArrowRight ArrowUp ArrowEnter

22
Oskar Persson

この順番でこれらのキーを押します。

再起動:

Windows

Right

Right

r

シャットダウン:

Windows

Right

Right

u

ログオフ:

Windows

Right

Right

L

11
user1886419

あなたはそれをするために AutoHotKey を使うことができます。

AutoHotkeyは、無料のオープンソースのマクロ作成および自動化ソフトウェアユーティリティで、これを使用すると、ユーザーはMicrosoft Windowsで繰り返し行われるタスクを自動化できます。どのアプリケーションユーザーインターフェイスもAutoHotkeyで変更できます(たとえば、デフォルトのWindowsコントロールキーコマンドをEmacsの同等の機能で上書きするなど)。これは、キーボードショートカットやホットキーの提供を目的としたカスタムスクリプト言語によって推進されています。

あなたはあなたが望むどのキーまたはキーの組み合わせにシャットダウンを送ることができます。

たとえば、マルチメディアキーボードを使用している場合は、これをデフォルトのスクリプトに追加できます。

Media_Stop::"Shutdown -r -t 00"

これにより、マルチメディアキーボードのStopキーがPCを再起動します。

キーコンボも可能で、そのすべてはよく文書化されていて従うのが簡単です。

以下は、Ctrl-Win-CでPCを再起動するためのスクリプトです。

^#c::"Shutdown -r -t 00"
9
Keltari

Ramhoundのコメントはその場です。私はあなたのWindows XPショートカットがシャットダウン用で、再起動用ではないことに気づきました。その場合、ショートカットはほとんど同じです。 Windows、 Right Arrow、 Right Arrow、 u。いいえ Enter 必要です。

3
PaulTOB

あなたはこれを2回のキーストロークで行うことができます。(私は認めていますが、これは設定されなければなりません)最初!)!そして、サードパーティ製のソフトウェアをインストールする必要はありません。

Restartコマンドでバッチファイルを作成します。メモ帳を開いて入力する

shutdown -r -f -t 1

拡張子が.BATのコンピュータに保存します(EG restart.bat)。

バッチファイルへのショートカットを作成します。ショートカットプロパティを編集し、targetを次のように変更します。 cmd.exe/C "path-to-your-batch" 固定するには、 。

今すぐショートカットをタスクバーにドラッグし、スタートメニューの横に置きます。今、を押します Windows Key + 1。それはそれです(下のスクリーンショット、C:の付いた黒いコンソールアイコンを参照)。

次のようにして、シャットダウン用の別のbatファイルを作成することもできます。

shutdown -s -f -t 1

もう一度、それをrestart batファイルの左側にドラッグし、そして Windows Key + 2

enter image description here

タスクバーを示すスクリーンショット。最初の図は再起動用、次の図はシャットダウン用です。

2
Dave

Windows Key + R'shutdown/r' Enter

C:\Users\Chloe\>shutdown /?
Usage: shutdown [/i | /l | /s | /r | /g | /a | /p | /h | /e | /o] [/hybrid] [/f]
    [/m \\computer][/t xxx][/d [p|u:]xx:yy [/c "comment"]]

    No args    Display help. This is the same as typing /?.
    /?         Display help. This is the same as not typing any options.
    /i         Display the graphical user interface (GUI).
               This must be the first option.
    /l         Log off. This cannot be used with /m or /d options.
    /s         Shutdown the computer.
    /r         Full shutdown and restart the computer.
    /g         Full shutdown and restart the computer. After the system is
               rebooted, restart any registered applications.
    /a         Abort a system shutdown.
               This can only be used during the time-out period.
    /p         Turn off the local computer with no time-out or warning.
               Can be used with /d and /f options.
    /h         Hibernate the local computer.
               Can be used with the /f option.
    /hybrid    Performs a shutdown of the computer and prepares it for fast startup.
               Must be used with /s option.
    /e         Document the reason for an unexpected shutdown of a computer.
    /o         Go to the advanced boot options menu and restart the computer.
               Must be used with /r option.
    /m \\computer Specify the target computer.
    /t xxx     Set the time-out period before shutdown to xxx seconds.
               The valid range is 0-315360000 (10 years), with a default of 30.
               If the timeout period is greater than 0, the /f parameter is
               implied.
    /c "comment" Comment on the reason for the restart or shutdown.
               Maximum of 512 characters allowed.
    /f         Force running applications to close without forewarning users.
               The /f parameter is implied when a value greater than 0 is
               specified for the /t parameter.
    /d [p|u:]xx:yy  Provide the reason for the restart or shutdown.
               p indicates that the restart or shutdown is planned.
               u indicates that the reason is user defined.
               If neither p nor u is specified the restart or shutdown is
               unplanned.
               xx is the major reason number (positive integer less than 256).
               yy is the minor reason number (positive integer less than 65536).
1
Chloe