6

Возможный дубликат:
есть ли какая-нибудь команда 'sudo' для windows?

Мне было интересно, как переключиться на наличие административных привилегий в окне командной строки Windows? Есть ли способ, похожий на "su" или "sudo" в Linux?

Например, я застрял здесь:

Q:> fsutil fsinfo диски

Утилита FSUTIL требует наличия прав администратора.

Спасибо и всего наилучшего!


Обновить:

  1. Я не уверен что не так

    C:\D>runas /user:Tim "fsutil fsinfo drives"
    Enter the password for Tim:
    Attempting to start fsutil fsinfo drives as user
    

    "TIM-THINK\Tim" ...

    C:\D>runas /user:Tim "dir"
    Enter the password for Tim:
    Attempting to start dir as user "TIM-THINK\Tim" ...
    RUNAS ERROR: Unable to run - dir
    2: The system cannot find the file specified.
    

    если без кавычки для команды в конце, первый пример выведет справочный документ для runas, а второй пример выведет то же, что и с цитатой.

  2. Мне также было интересно, могу ли я раз и навсегда перейти на административные привилегии в текущем сеансе окна командной строки, как "su" в Linux?

2 ответа2

4

Найдите командную строку в меню «Пуск» и щелкните правой кнопкой мыши запись-> Запуск от имени администратора.

3

Вы можете попробовать команду RUNAS .

Q:>runas /user:Tim "fsutil fsinfo drives"

Из справки:

C:\> runas /?
RUNAS USAGE:

RUNAS [ [/noprofile | /profile] [/env] [/savecred | /netonly] ]
        /user:<UserName> program

RUNAS [ [/noprofile | /profile] [/env] [/savecred] ]
        /smartcard [/user:<UserName>] program

RUNAS /trustlevel:<TrustLevel> program

   /noprofile        specifies that the user's profile should not be loaded.
                     This causes the application to load more quickly, but
                     can cause some applications to malfunction.
   /profile          specifies that the user's profile should be loaded.
                     This is the default.
   /env              to use current environment instead of user's.
   /netonly          use if the credentials specified are for remote
                     access only.
   /savecred         to use credentials previously saved by the user.
                     This option is not available on Windows Vista Home or Windo
ws Vista Starter Editions
                     and will be ignored.
   /smartcard        use if the credentials are to be supplied from a
                     smartcard.
   /user             <UserName> should be in form USER@DOMAIN or DOMAIN\USER
   /showtrustlevels  displays the trust levels that can be used as arguments
                     to /trustlevel.
   /trustlevel       <Level> should be one of levels enumerated
                     in /showtrustlevels.
   program         command line for EXE.  See below for examples

Examples:
> runas /noprofile /user:mymachine\administrator cmd
> runas /profile /env /user:mydomain\admin "mmc %windir%\system32\dsa.msc"
> runas /env /user:user@domain.microsoft.com "notepad \"my file.txt\""

NOTE:  Enter user's password only when prompted.
NOTE:  /profile is not compatible with /netonly.
NOTE:  /savecred is not compatible with /smartcard.

dir - встроенная команда. Вам нужно будет сделать:

runas /user:Tim "cmd /c dir"

Чтобы запустить оболочку CMD от имени другого пользователя:

runas /user:Tim "cmd"

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