Випуск ярлика сну для комп'ютера


2

Я пройшов багато форумів та довідкових сторінок про створення ярлика сну на комп’ютері без призначеної кнопки сну. Я бачу, що для створення ярлика робочого сну вам потрібно відключити сплячий режим. Я маю намір використовувати обидва, якщо це можливо.

Я використовую ярлик до файлу, який виконує команду в Windows 10:

C:\Windows\System32\rundll32.exe powrprof.dll,SetSuspendState 0,1,0

Коли сплячий режим увімкнено, команда переводить комп'ютер у сплячий режим, а не у режим сну. Я шукаю, щоб моя кнопка живлення перевела комп'ютер у сплячий режим, і клавіша швидкої клавіші переведе комп'ютер у сплячий режим.

Чи можливий спосіб створити ярлик швидкої клавіші для сну в Windows 10, а також увімкнути сплячий режим? І чи є спосіб запобігти запиту комп’ютера про дозвіл файлу вносити зміни щоразу, коли я його запускаю?

Відповіді:


2

Чи можливий спосіб створити ярлик швидкої клавіші для сну в Windows 10

Завантажити psshutdownз Windows Sysinternals .

Запустіть ярлик запустити такий пакетний файл:

@echo off
psshutdown -d
exit
  • -d Підвісьте комп’ютер.

psshutdown

Ви можете використовувати PsShutdown для ініціювання відключення локального або віддаленого комп’ютера, виходу з системи користувача, блокування системи або припинення невідкладного відключення.

Usage: psshutdown [[\\computer[,computer[,..] | @file [-u user [-p psswd]]] -s|-r|-h|-d|-k|-a|-l|-o [-f] [-c] [-t nn|h:m] [-n s] [-v nn] [-e [u|p]:xx:yy] [-m "message"]
-   Displays the supported options.
computer    Perform the command on the remote computer or computers specified. If you omit the computer name the command runs on the local system, and if you specify a wildcard (\\*), the command runs on all computers in the current domain.
@file   Run the command on each computer listed in the text file specified.
-u  Specifies optional user name for login to remote computer.
-p  Specifies optional password for user name. If you omit this you will be prompted to enter a hidden password.
-a  Aborts a shutdown (only possible while a countdown is in progress).
-c  Allows the shutdown to be aborted by the interactive user.
-d  Suspend the computer.
-e  Shutdown reason code.
Specify 'u' for user reason codes and 'p' for planned shutdown reason codes.
xx is the major reason code (must be less than 256).
yy is the minor reason code (must be less than 65536).
-f  Forces all running applications to exit during the shutdown instead of giving them a chance to gracefully save their data.
-h  Hibernate the computer.
-k  Poweroff the computer (reboot if poweroff is not supported).
-l  Lock the computer.
-m  This option lets you specify a message to display to logged-on users when a shutdown countdown commences.
-n  Specifies timeout in seconds connecting to remote computers.
-o  Logoff the console user.
-r  Reboot after shutdown.
-s  Shutdown without power off.
-t  Specifies the countdown in seconds until the shutdown (default: 20 seconds) or the time of shutdown (in 24 hour notation).
-v  Display message for the specified number of seconds before the shutdown. If you omit this parameter the shutdown notification dialog displays and specifying a value of 0 results in no dialog.

Джерело psshutdown

Відмова від відповідальності

Я жодним чином не пов’язаний з Windows Sysinternals , я лише кінцевий користувач їх програмного забезпечення.


Чи є спосіб закрити вікно psshutdown? Коли я знову відкриваю комп’ютер, є вікно терміналу, яке було відкрито, коли було запущено psshutdown.
Сер Платипус

Додати exitяк останній рядок пакетного файлу. Відповідь оновлено.
DavidPostill
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.