VBScripts and UAC elevation(visa以後的系統)

來源:互聯網
上載者:User

這兩天因為工作需要,在寫一些vbs的指令碼,才知道,vbs不能像其他可執行檔一樣,在 需要提升存取權限時,彈出UAC視窗,那麼,如何通過UAC提升vbs指令碼的存取權限呢?

查了一些資料,將結果整理一下:

第一種:

If WScript.Arguments.length =0 Then  Set objShell = CreateObject("Shell.Application")  'Pass a bogus argument with leading blank space, say [ uac]  objShell.ShellExecute "wscript.exe", Chr(34) & _  WScript.ScriptFullName & Chr(34) & " uac", "", "runas", 1Else  'Add your code hereEnd If

第二種:

Set objShell = CreateObject("Shell.Application")Set FSO = CreateObject("Scripting.FileSystemObject")strPath = FSO.GetParentFolderName (WScript.ScriptFullName)If FSO.FileExists(strPath & "\MAIN.VBS") Then     objShell.ShellExecute "wscript.exe", _         Chr(34) & strPath & "\MAIN.VBS" & Chr(34), "", "runas", 1Else     MsgBox "Script file MAIN.VBS not found"End If 

第三種:

'Checks if the script is running elevated (UAC)function isElevated      Set shell = CreateObject("WScript.Shell")      Set whoami = shell.Exec("whoami /groups")      Set whoamiOutput = whoami.StdOut      strWhoamiOutput = whoamiOutput.ReadAll       If InStr(1, strWhoamiOutput, "S-1-16-12288", vbTextCompare) Then        isElevated = True      Else        isElevated = False      End Ifend function'Re-runs the process prompting for priv elevation on re-runsub uacPrompt    'Check if we need to run in C or W script  interpreter = "wscript.exe"  If Instr(1, WScript.FullName, "CScript", vbTextCompare) = 0 Then    interpreter = "wscript.exe"  else    interpreter = "cscript.exe"  end if  'Start a new instance with an elevation prompt first  Set shellApp = CreateObject("Shell.Application")  shellApp.ShellExecute interpreter, Chr(34) & WScript.ScriptFullName & Chr(34) & " uac", "", "runas", 1  'End the non-elevated instance  WScript.Quitend sub'Make sure we are running elevated, prompt if notif not isElevated Then uacPrompt'Add your code hereMsgBox "hello world"

參考地址:

http://www.winhelponline.com/articles/185/1/VBScripts-and-UAC-elevation.html

http://www.kellestine.com/self-elevate-vbscript/


              


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.