web-dev-qa-db-fra.com

Voulez-vous redémarrer Windows 7 avec les touches de raccourci

Comment redémarrer Windows 7 en utilisant seulement trois touches du clavier (pour une personne aveugle)?

Cela était possible sous Windows XP (Win clé, u, et alors Enter). Cela ne fonctionne pas sous Windows 7.

21
Deb

Ce n'est pas exactement trois clés, mais trois étapes:

  1. Depuis le bureau, Alt + F4 (ouvre la boîte de dialogue Arrêter Windows). (Si vous n'êtes pas au bureau, commencez par Windows Logo Key + D).

    Shut Down Windows dialog screenshot

  2. R (Va à "redémarrer")

    Shut Down Windows dialog screenshot with Restart selected

  3. Enter


Si votre utilisateur a besoin d'une confirmation audible, assurez-vous simplement que le son est activé et qu'un son Windows Déconnexion est activé. De cette façon, ils sauront qu'ils ont réussi à fermer.

34
Moses

Créer votre propre raccourci

Vous pouvez créer votre propre raccourci clavier dans Windows 7.

Commencez par cliquer avec le bouton droit sur le bureau et sélectionnez Nouveau> Raccourci. Dans la première zone de texte qui apparaît, tapez Shutdown -r -t 00. Cliquez sur Suivant et nommez le raccourci Restartname__. Cliquez sur Finishname__. Maintenant, vous pouvez double-cliquer sur le raccourci et l’ordinateur va redémarrer.

Raccourci clavier

Pour ajouter un raccourci clavier, faites un clic droit sur le raccourci que vous avez créé sur le bureau et sélectionnez Propertiesname__. Dans l'onglet de raccourci, cliquez dans la zone de texte de la touche de raccourci et entrez votre raccourci. Cliquez sur Applyet vous avez terminé.

Remarque: la liaison de la touche Windows ne semble pas fonctionner

Séquence de touches

Vous pouvez également appuyer sur la séquence de touches suivante (relâcher après chaque touche):

WinRight ArrowRight ArrowUp ArrowEnter

22
Oskar Persson

Appuyez sur ces touches dans cet ordre:

Redémarrer:

Windows

Right

Right

r

arrêt:

Windows

Right

Right

u

déconnexion:

Windows

Right

Right

L

11
user1886419

Vous pouvez utiliser AutoHotKey pour le faire.

AutoHotkey est un utilitaire gratuit et open-source de création de macros et d'automatisation permettant aux utilisateurs d'automatiser des tâches répétitives dans Microsoft Windows. Toute interface utilisateur d’application peut être modifiée par AutoHotkey (par exemple, en remplaçant les commandes de touches de contrôle Windows par défaut par leurs équivalents Emacs). Il est géré par un langage de script personnalisé spécialement conçu pour fournir des raccourcis clavier ou des raccourcis clavier.

Vous pouvez envoyer l’arrêt à n’importe quelle touche ou combinaison de touches de votre choix.

Par exemple, si vous avez un clavier multimédia, vous pouvez ajouter ceci au script par défaut:

Media_Stop::"Shutdown -r -t 00"

Cela ferait que la touche Stop du clavier multimédia redémarre le PC.

Vous pouvez également faire des combinaisons de touches, tout est bien documenté et facile à suivre.

Vous trouverez ci-dessous le script permettant à Ctrl-Win-C de redémarrer le PC:

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

Le commentaire de Ramhound est sur place. J'ai remarqué que votre raccourci Windows XP était destiné à l’arrêt et non au redémarrage. Dans ce cas, le raccourci est à peu près le même: WindowsRight ArrowRight Arrowu. Non Enter nécessaire.

3
PaulTOB

Vous pouvez le faire en en 2 touches , en battant l’approche fatigante et longue en 3 étapes des âges sombres (bien que je l’avoue, elle doit être configurée premier!)! Et vous ne devez installer aucun logiciel tiers!

Créez un fichier de commandes avec la commande de redémarrage. Ouvrez le bloc-notes et tapez

shutdown -r -f -t 1

Enregistrez-le sur votre ordinateur avec l’extension .BAT (EG restart.bat).

Créez un raccourci vers votre fichier de commandes ... Modifiez la propriété de raccourci et définissez la cible comme suit: cmd.exe/C "chemin d'accès à votre lot". pour permettre son épinglage .

Maintenant, faites glisser le raccourci dans la barre des tâches et laissez-le à côté du menu Démarrer. Maintenant, appuyez sur le Windows Key + 1. Ça y est (capture d'écran ci-dessous, voir les icônes noires de la console avec le C :).

Vous pouvez également créer un autre fichier bat pour l’arrêt avec les éléments suivants:

shutdown -s -f -t 1

De nouveau, faites-le glisser à gauche du fichier de redémarrage, puis appuyez sur Windows Key + 2

enter image description here

Capture d'écran montrant la barre des tâches, avec le premier graphique pour le redémarrage et le second pour l'arrêt.

2
Dave

Windows Key + R, 'arrêt/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