วิธีเรียกใช้คำสั่ง 'sudo' ใน windows


96

ฉันจะเรียกใช้คำสั่งต่อไปนี้ใน windows ได้อย่างไร:

$ sudo django-admin.py startproject NEW

เหรอ?


หลีกเลี่ยงการใช้คำสั่งเทอร์มินัลใน Windows จะดีกว่า ให้ลองทำเช่นเดียวกันด้วยความช่วยเหลือของ IDE เช่น Eclipse + PyDev มันจะทำให้สิ่งต่างๆง่ายขึ้นมาก
Pushpak Dagade

8
@Pushpak Dagade: โดยทั่วไปฉันไม่ได้รับความคิดเห็นของคุณ แต่เมื่อฉันไปพิมพ์สิ่งนี้ฉันรู้ว่านี่คือ STACK OVERFLOW คนเหล่านี้คือคนที่ใช้เทอร์มินัลใน Windows =) ฉันหมายความว่า PowerShell น่าจะไม่มีอยู่จริง
Brent Rittenhouse

2
นอกจากนี้จะเกิดอะไรขึ้นถ้าเขาสร้างสคริปต์เพื่อทำงานโดยอัตโนมัติ? (ใช่ฉันรู้ว่าคุณสามารถเรียกใช้นั่นเป็นผู้ใช้ส่วนตัวได้)
Brent Rittenhouse

ลองใช้wsudoของฉันซึ่งเป็นเครื่องมือคล้าย sudo สำหรับ Windows ที่มีให้ในแพ็คเกจ Chocolatey
อัตราส่วนจมูก

คำตอบ:


102

ไม่มีsudoคำสั่งใน Windows ค่าเทียบเท่าที่ใกล้ที่สุดคือ "run as administrator"

คุณสามารถทำได้โดยใช้runasคำสั่งกับระดับความน่าเชื่อถือของผู้ดูแลระบบหรือคลิกขวาที่โปรแกรมใน UI แล้วเลือก"run as administrator"


4
คุณรู้หรือไม่ว่าลักษณะการทำงานของ runas แตกต่างกันไปในแต่ละเวอร์ชันหรือไม่? ฉันได้ติดตั้ง Win7 Enterprise และชุดค่าผสมทั้งหมดที่ฉันได้ลองกับ runas สร้าง cmd ใหม่โดยไม่มีสิทธิ์ของผู้ดูแลระบบ
notNullGothik

4
Sudo สำหรับ Windows (sudowin) อนุญาตให้ผู้ใช้ที่ได้รับอนุญาตเปิดใช้งานกระบวนการที่มีสิทธิ์ที่สูงขึ้นโดยใช้ข้อความรหัสผ่านของตนเอง ไม่เหมือนกับคำสั่ง runas Sudo สำหรับ Windows จะรักษาโปรไฟล์ของผู้ใช้และความเป็นเจ้าของวัตถุที่สร้างขึ้น คุณสามารถรับได้ที่นี่: sourceforge.net/projects/sudowin
Joe Bigler

ลองดูgsudo( stackoverflow.com/a/58753166/97471 ) เป็น sudo สำหรับ windows ที่มี*nix sudoประสบการณ์ผู้ใช้: อนุญาตให้ดำเนินการคำสั่งภายในคอนโซลปัจจุบันและแคชข้อมูลรับรอง (ป๊อปอัป UAC เพียงรายการเดียว)
Gerardo Grignoli

runas คือการยกระดับบัญชีผู้ใช้ในผู้ดูแลระบบ sudo เป็นอีกสิ่งหนึ่ง นี่ไม่ควรเป็นคำตอบที่ยอมรับได้
Massimo

16

เปิด notepad และวางรหัสนี้:

@echo off
powershell -Command "Start-Process cmd -Verb RunAs -ArgumentList '/c cd /d %CD% && %*'"
@echo on

Then, save the file as sudo.cmd. Copy this file and paste it at C:\Windows\System32 or add the path where sudo.cmd is to your PATH Environment Variable.

When you open command prompt, you can now run something like sudo start ..

If you want the admin command prompt window to stay open when you run the command, change the code in notepad to this:

@echo off
powershell -Command "Start-Process cmd -Verb RunAs -ArgumentList '/k cd /d %CD% && %*'"
@echo on

Explanation:

powershell -Command runs a powershell command.

Start-Process is a powershell command that starts a process, in this case, command prompt.

-Verb RunAs runs the command as admin.

-Argument-List runs the command with arguments.

Our arguments are '/c cd /d %CD% && %*'. %* means all arguments, so if you did sudo foo bar, it would run in command prompt foo bar because the parameters are foo and bar, and %* returns foo bar. cd /d %CD% is a command to go to the current directory. This will ensure that when you open the elevated window, the directory will be the same as the normal window. the && means that if the first command is successful, run the second command.

The /c is a cmd parameter for closing the window after the command is finished, and the /k is a cmd parameter for keeping the window open.

Credit to Adam Plocher for the staying in the current directory code.


One problem with that is that once elevated, you're no longer in what was the current folder, but rather in C:\Windows\System32.
noseratio

2
@noseratio true, it appears that changing it to this will do the trick, however: powershell -Command "Start-Process cmd -Verb RunAs -ArgumentList '/k cd /d %CD% && %*'"
Adam Plocher

@AdamPlocher, that might work but could have issues if the command line %* has quotes. That's why I created wsudo, PowerShell-based.
noseratio

This is elevation of a user account in Administrators; sudo is another thing.
Massimo

Can you not just skip the echo lines one and three by prepending @ to the powershell line?
nudl

14

All the answers explain how to elevate your command in a new console host.

What amused me was that none of those tools behave like *nix sudo, allowing to execute the command inside the current console.

So, I wrote: gsudo

Source Code https://github.com/gerardog/gsudo

Installation

Via scoop

  • Install scoop if you don't already have it. Then:
scoop install gsudo

Or via Chocolatey

choco install gsudo

Manual instalation:

Demo

gsudo demo


9

I've created wsudo, an open-source sudo-like CLI tool for Windows to run programs or commands with elevated right, in the context of the current directory. It's available as a Chocolatey package.

I use it a lot for stuff like configuring build agents, admin things like sfc /scannow, dism /online /cleanup-image /restorehealth or simply for installing/updating my local Chocolatey packages. Use at your own risk.

Installation

choco install wsudo

Chocolatey must be already installed.

Purpose

wsudo is a Linux sudo-like tool for Windows to invoke a program with elevated rights (as Administrator) from a non-admin shell command prompt and keeping its current directory.

This implementation doesn't depend on the legacy Windows Script Host (CScript). Instead, it uses a helper PowerShell 5.1 script that invokes "Start-Process -Wait -Verb runAs ..." cmdlet. Your system most likely already has PowerShell 5.x installed, otherwise you'll be offered to install it as a dependency.

Usage

wsudo runs a program or an inline command with elevated rights in the current directory. Examples:

wsudo .\myAdminScript.bat 
wsudox "del C:\Windows\Temp\*.* && pause"
wasudo cup all -y
wasudox start notepad C:\Windows\System32\drivers\etc\hosts 

For more details, visit the GitHub repro.


2
Thank you for publishing "wsudo", it's quite useful for me. I think your wsudo's advantage is keeping working directory not like the alternatives. I couldn't find one can keep CWD other than wsudo. I think you should emphasize this point in the description. I really appreciate your work.
benok

3
One more thing to let you know. Do you know address bar hack to open shell directly ? I usually use this hack, but I was very frustrated when I want to get elevated shell with this hack. I tried to find many alternatives but not works. I finally can open one with "wasudo [shell]". I love to have this. Thanks again :-)
benok

3
@benok, I do, it's a handy hack indeed! Glad wasudo made it easier for you. I myself mostly live in the VSCode integrated console terminal, so I just type wasudo there :) The next improvement would be to inherit the environment vars.
noseratio

Hi @benok, you might also be interested in my new utility for improving copy/paste/run productivity, DevComrade :)
noseratio






2

The following vbs script allows to launch a given command with arguments with elevation and mimics the behavior of the original unix sudo command for a limited set of used cases (it will not cache credentials nor it allows to truly execute commands with different credentials). I put it on C:\Windows\System32.

Set objArgs = WScript.Arguments
exe = objArgs(0)
args = ""
IF objArgs.Count >= 2 Then
   args = args & objArgs(1)
End If
For it = 2 to objArgs.Count - 1
   args = args & " " & objArgs(it)
Next
Set objShell = CreateObject( "WScript.Shell")
windir=objShell.ExpandEnvironmentStrings("%WINDIR%")
Set objShellApp = CreateObject("Shell.Application")
objShellApp.ShellExecute exe, args, "", "runas", 1
set objShellApp = nothing

Example use on a command prompt sudo net start service


1
how can we make the script wait for user input, so we can read the output of the shell program?
Ahmad Hajjar

1
You mean interactive shell command? Well, you should first try to make sure the command launched will be waited for return. Here it seems it's possible. Then you should get the output from the shell objects and output it, which I guess it's also possible. Don't expect everything you can do in unix will be possible, though.
ceztko

On windows 10 it throws a syntax error on line 1 char 6.
Martin Braun

This is elevation of a user account in Administrators; sudo is another thing.
Massimo

1

I think I tried steps below after doing some research & succeeded

1.Install scoop using powershell 3 (iex (new-object net.webclient).downloadstring('https://get.scoop.sh')) 2. do scoop install --global sudo 3. make sure paths (C:\Users\\scoop\shims & C:\ProgramData\scoop\shims) added in environmental path variable.


1

There is no sudo command in case of windows and also there is no need to put any $. For installing Angular CLI through node.js command prompt in windows, I just wrote npm install -g @angular/cli and then pressed Enter. It worked fine.



0

In Windows Powershell you can use Start-Process command with option -Verb RunAs to start and elevated process. Here is my sudo function example:

function sudo {
    Start-Process @args -verb runas
}

Ex: Open hosts file as Admin in notepad

sudo notepad C:\Windows\System32\drivers\etc\hosts

0

Using the sudo command for window users gives you the following suggestions:

First, install the scoop package management tool and execute the following commands:

enter image description here

Then use scoop to install the sudo command:

enter image description here

Finally, you can execute the command with sudo:

enter image description here


0

I am glad to help you.

To make a sudo command follow the steps :-

  1. Make a folder env in C:\ Drive.
  2. Make a folder inside the env folder named as bin.
  3. Now add C:\env\bin to your PATH.
  4. Create a file sudo.bat in C:\env\bin.
  5. Edit it with notepad and write this code :-
    https://gist.github.com/coder-examples/5ca6c141d6d356ddba4e356d63fb2c13

Hope this will help you


This answer should include the text of the batch file, not depend on a link off site because of link rot. Also the answer should include the disclaimer that this script seeks to emulate the coarse behavior of sudo, but isn't really sudo (it's a pseudo-sudo).
asky

0

To just run a command as admin in a non-elevated Powershell, you can use Start-Process directly, with the right options, particularly -Verb runas.

It's a lot more convoluted than sudo, particularly because you can't just re-use the previous command with an additional option. You need to specify the arguments to your command separately.

Here is an example, using the route command to change the gateway :

This fails because we are not in an elevated PS:

> route change 0.0.0.0 mask 0.0.0.0 192.168.1.3
The requested operation requires elevation.

This works after accepting the UAC:

> Start-Process route -ArgumentList "change 0.0.0.0 mask 0.0.0.0 192.168.1.3" -Verb runas

Or for a command that requires cmd.exe:

> Start-Process cmd -ArgumentList "/c other_command arguments ..." -Verb runas
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.