วิธีด่วน:
สามขั้นตอนในการเพิ่ม sudo
เปิด PowerShell
คัดลอกสคริปต์ต่อไปนี้ (Ctrl + C) และวางใน PowerShell (Alt + Space + E + P):
$script_path="$HOME\Documents\Scripts"; if (!(test-path $script_path)) {New-Item -ItemType directory $script_path} if (!(test-path $profile)) { new-item -path $profile -itemtype file -force }". $script_path\sudo.ps1" | Out-File $profile -append; "function sudo(){if (`$args.Length -eq 1){start-process `$args[0] -verb `"runAs`"} if (`$args.Length -gt 1){start-process `$args[0] -ArgumentList `$args[1..`$args.Length] -verb `"runAs`"}}" | Out-File $script_path\sudo.ps1; powershell
- Enterตี
มันจะเปิดใช้งานsudo
คำสั่งอย่างถาวรใน PowerShell
การใช้งาน:
sudo <process-name> [param1 [param2 [param3]]]
ตัวอย่าง:
sudo explorer
sudo notepad
sudo powershell
sudo cmd
sudo taskmgr
sudo tasklist
sudo taskkill /IM Skype.exe /PID 8496
วิธีการเรียนรู้ที่ยาวนาน:
หมายเหตุ: ฉันผสมสคริปต์จากบทความทั้งสองเพื่อสร้างสคริปต์ดังกล่าว ค่อนข้างวางสคริปต์ใน notepad ด้วยตนเองฉันเพิ่มOut-File
คำสั่งเพื่อบันทึกps1
และ$profile
ไฟล์จากสคริปต์
เคล็ดลับ: หากคุณไม่ใช่แฟนตัวยงของป๊อปอัป UAC (อย่างฉัน) ให้บันทึกสิ่งต่อไปนี้ในไฟล์ * .reg และเรียกใช้:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"ConsentPromptBehaviorAdmin"=dword:00000000