码迷,mamicode.com
首页 > 其他好文 > 详细

VBScripts and UAC elevation(visa以后的系统)

时间:2014-06-03 00:18:37      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:vbscripts   vbs   uac   

这两天因为工作需要,在写一些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", 1
Else
  'Add your code here
End 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", 1
Else
     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 If
end function

'Re-runs the process prompting for priv elevation on re-run
sub 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.Quit
end sub

'Make sure we are running elevated, prompt if not
if not isElevated Then uacPrompt

'Add your code here
MsgBox "hello world"

参考地址:

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

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


              


VBScripts and UAC elevation(visa以后的系统),布布扣,bubuko.com

VBScripts and UAC elevation(visa以后的系统)

标签:vbscripts   vbs   uac   

原文地址:http://blog.csdn.net/chenjintaoxp/article/details/27710817

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!