zoukankan      html  css  js  c++  java
  • RunAsAdmin in windows 8

    function RunAsAdmin(hWnd: HWND; filename: string; Parameters: string): Boolean;
    {
        See Step 3: Redesign for UAC Compatibility (UAC)
        http://msdn.microsoft.com/en-us/library/bb756922.aspx
    }
    var
        sei: TShellExecuteInfo;
    begin
        ZeroMemory(@sei, SizeOf(sei));
        sei.cbSize := SizeOf(TShellExecuteInfo);
        sei.Wnd := hwnd;
        sei.fMask := SEE_MASK_FLAG_DDEWAIT or SEE_MASK_FLAG_NO_UI;
        sei.lpVerb := PChar('runas');
        sei.lpFile := PChar(Filename); // PAnsiChar;
        if parameters <> '' then
        	sei.lpParameters := PChar(parameters); // PAnsiChar;
        sei.nShow := SW_SHOWNORMAL; //Integer;
    
        Result := ShellExecuteEx(@sei);
    end;
    

    See Mask values here:
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb759784(v=vs.85).aspx

    This article will show you how to create a Delphi Application with a manifest to request elevation (run as admin). Read the article, it has a link to Delphi Manifest creator for doing this - very nice ! it will save you a lot of work. So if the program you need to run is written in Delphi and you have the source code then use this method.

    http://delphi.about.com/od/delphitips2009/qt/delphi-vista-registry-run-on-startup.htm
    https://stackoverflow.com/questions/15319158/use-shell-execute-to-run-cmd-as-admin

  • 相关阅读:
    MySQL统计函数记录——按月、按季度、按日、时间段统计
    Myslq查询字段为null的数据
    表情包
    在线logo制作
    在线图片识别 图片转文字 OCR
    PDF
    php读取access数据库
    java注解的自定义和使用
    zookkeper原理学习
    mybatis源码阅读心得
  • 原文地址:https://www.cnblogs.com/findumars/p/4177409.html
Copyright © 2011-2022 走看看