2

Можно ли при открытии cmd из панели поиска программ W7 в меню «Пуск» перейти через другую строку, чтобы он запускался при открытии?

В частности, я пытаюсь запустить cmd iisreset , так как issreset не запускается по умолчанию с правами администратора, а cmd , поэтому, когда я запускаю его через cmd он запускается с правами администратора. В настоящее время я должен идти cmd -> Enter -> iisreset -> Enter

Я знаю, что мог бы изменить iisreset, чтобы он всегда запускался в админке (и, вероятно, будет), но просто интересно, есть ли способ сделать это только одной командой из меню «Пуск»? (Сохраните настройку пакетных скриптов и т.д., Так как я могу захотеть вызвать другие exe из cmd таким же образом)

1 ответ1

3
  1. Введите cmd /K iisreset .

  2. Нажмите Ctrl+Shift+Enter


Результат

Выполнение шагов, описанных выше, выполнит iisreset и перенаправит вас прямо в административную оболочку (которая использовалась для выполнения) впоследствии.

Дополнительная информация

Вот документация командной строки для cmd.exe. Я выделил две опции командной строки, наиболее подходящие для этого процесса.

Starts a new instance of the Windows command interpreter

CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]
    [[/S] [/C | /K] string]    

/C Carries out the command specified by string and then terminates
/K Carries out the command specified by string but remains

/S      Modifies the treatment of string after /C or /K (see below)
/Q      Turns echo off
/D      Disable execution of AutoRun commands from registry (see below)
/A      Causes the output of internal commands to a pipe or file to be ANSI
/U      Causes the output of internal commands to a pipe or file to be
        Unicode
/T:fg   Sets the foreground/background colors (see COLOR /? for more info)
/E:ON   Enable command extensions (see below)
/E:OFF  Disable command extensions (see below)
/F:ON   Enable file and directory name completion characters (see below)
/F:OFF  Disable file and directory name completion characters (see below)
/V:ON   Enable delayed environment variable expansion using ! as the
        delimiter. For example, /V:ON would allow !var! to expand the
        variable var at execution time.  The var syntax expands variables
        at input time, which is quite a different thing when inside of a FOR
        loop.
/V:OFF  Disable delayed environment expansion.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .