키보드에서 세 개의 키 (맹인용)를 사용하여 Windows 7을 다시 시작하려면 어떻게합니까?
이것은 Windows XP ( Winkey u,, and Enter)에서 가능했습니다. Windows 7에서는 작동하지 않습니다.
키보드에서 세 개의 키 (맹인용)를 사용하여 Windows 7을 다시 시작하려면 어떻게합니까?
이것은 Windows XP ( Winkey u,, and Enter)에서 가능했습니다. Windows 7에서는 작동하지 않습니다.
답변:
정확히 세 개의 키가 아니라 세 단계입니다.
바탕 화면에서 Alt+ F4(Windows 종료 대화 상자를 엽니 다). (데스크톱이 아닌 경우 먼저 +을 수행하십시오 D).
R ( "다시 시작"으로 이동)
Enter
사용자에게 음성 확인이 필요한 경우 소리가 켜져 있고 Windows 로그 오프 소리가 활성화되어 있는지 확인하십시오. 이런 식으로 그들은 성공적으로 종료되었음을 알 수 있습니다.
Windows
+ 를 추가 M
하여 바탕 화면으로 이동할 수 있습니다 .
Windows
+ M
는 최소화 명령을 지원하는 모든 창을 최소화합니다. 바탕 화면을 보여줄 수 있는지 확인하려면 명령 Windows
+가 D
더 적합합니다. 그러나 위에서 언급 한 솔루션은 대부분 작동합니다.
winver
입력 한 다음 Enter 키를 누릅니다. 이제 Win + M을 누르십시오. 창은 최소화되지 않지만 여전히 초점을 잃고 Alt + F4를 누르면 종료 대화 상자가 표시됩니다. 어떤 키보드 단축키를 사용하든주의해야 할 점이 하나 있습니다. 일부 프로그램은 무기한 재시작을 막을 수 있습니다. 일반적으로 모든 프로그램을 수동으로 닫으면 피할 수 있지만 @OskarPersson 솔루션을 조정하고 강제 종료 shutdown
매개 변수를 사용하는 것이 더 강력한 솔루션입니다.
Windows 7에서 고유 한 키보드 단축키를 만들 수 있습니다.
바탕 화면을 마우스 오른쪽 버튼으로 클릭하고 새로 만들기> 바로 가기를 선택하십시오. 나타나는 첫 번째 텍스트 상자에을 입력하십시오 Shutdown -r -t 00
. 다음을 클릭하고 바로 가기 이름을 지정하십시오 Restart
. 를 클릭하십시오 Finish
. 이제 바로 가기를 두 번 클릭하면 컴퓨터가 다시 시작됩니다.
키보드 단축키를 추가하려면 바탕 화면에서 생성 된 단축키를 마우스 오른쪽 버튼으로 클릭하고을 선택 Properties
합니다. 바로 가기 탭에서 바로 가기 키 텍스트 상자를 클릭하고 바로 가기를 입력하십시오. 클릭 Apply
하면 완료됩니다.
참고 : Windows 키 바인딩이 작동하지 않는 것 같습니다
다음 키 순서를 누를 수도 있습니다 (모든 개별 키 다음에 릴리스).
WinRight ArrowRight ArrowUp ArrowEnter
1
를 의미 하는 시간을 최소 2 초로 늘리 거나 강제 종료 매개 변수를 명시 적으로 사용 ( ) 할 수 있습니다. 이런 식으로 Windows는 프로그램이 닫힐 때까지 무한정 기다리지 않습니다. /f
shutdown /r /t 1
shutdown /r /f /t 0
다음 키를이 순서대로 누르십시오.
재시작:
Windows
Right
Right
r
일시 휴업:
Windows
Right
Right
u
로그 오프:
Windows
Right
Right
L
AutoHotKey 를 사용 하여 수행 할 수 있습니다 .
AutoHotkey는 사용자가 Microsoft Windows에서 반복적 인 작업을 자동화 할 수있는 무료 오픈 소스 매크로 생성 및 자동화 소프트웨어 유틸리티입니다. 모든 응용 프로그램 사용자 인터페이스는 AutoHotkey로 수정할 수 있습니다 (예 : 기본 Windows 제어 키 명령을 Emacs로 대체). 키보드 바로 가기 또는 단축키를 제공하기 위해 특별히 고안된 사용자 지정 스크립팅 언어로 구동됩니다.
원하는 키 또는 키 조합으로 시스템 종료를 보낼 수 있습니다.
예를 들어, 멀티미디어 키보드가있는 경우이를 기본 스크립트에 추가 할 수 있습니다.
Media_Stop::"Shutdown -r -t 00"
이것은 Stop
멀티미디어 키보드 의 키가 PC를 재부팅하게합니다.
당신은 또한 키 콤보를 할 수 있습니다.
다음은 Ctrl-Win-C를 PC로 재부팅하는 스크립트입니다.
^#c::"Shutdown -r -t 00"
당신은 2 번의 키 스트로크 로이 작업을 수행 할 수 있습니다 . 어두운 시대의 피곤한 긴 3 단계 접근 방식을 능가합니다 (승인하지만 먼저 설정해야합니다!) 그리고 타사 소프트웨어를 설치할 필요가 없습니다!
restart 명령으로 배치 파일을 작성하십시오. 메모장을 열고 입력
shutdown -r -f -t 1
확장자가 .BAT (EG restart.bat) 인 컴퓨터에 저장하십시오.
배치 파일에 대한 바로 가기 만들기 ... 바로 가기 속성을 편집하고 대상을 cmd.exe / C "path-to-your-batch"로 변경하십시오. 고정 할 수 있습니다.
이제 바로 가기를 작업 표시 줄로 끌어서 시작 메뉴 옆에 둡니다. 이제 +를 누릅니다 1. 그게 다야 (아래 스크린 샷, C : 검은 콘솔 아이콘 참조).
다음을 사용하여 종료 할 다른 bat 파일을 만들 수도 있습니다.
shutdown -s -f -t 1
다시 시작 박쥐 파일의 왼쪽으로 드래그하고 +를 누릅니다.2
작업 표시 줄을 보여주는 스크린 샷 (첫 번째 그래픽은 다시 시작하고 두 번째 그래픽은 종료).
Windows Key + R, '종료 / 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).
shutdown /r
OP가 종료가 아닌 재부팅을 요청한대로
taskkill /im explorer.exe
할 것입니다.