专栏名称: dotNET跨平台
专注于.NET Core的技术传播。在这里你可以谈微软.NET,Mono的跨平台开发技术。在这里可以让你的.NET项目有新的思路,不局限于微软的技术栈,横跨Windows,Linux 主流平台
今天看啥  ›  专栏  ›  dotNET跨平台

C#中,如果你想要以管理员权限启动应用程序,可以通过这几种方式实现具体代码事例分享

dotNET跨平台  · 公众号  ·  · 2024-06-17 07:56
    

文章预览

在C#中,如果你想要以管理员权限启动应用程序,可以通过多种方式实现。以下是一些常见的方法: 方法1:使用Windows API 你可以使用Windows API中的`ShellExecute`函数来以管理员权限启动应用程序。 ```csharp using System; using System.Diagnostics; using System.Runtime.InteropServices; class Program { [ DllImport( "shell32.dll" , SetLastError = true) ] private static extern bool ShellExecuteEx ( ref SHELLEXECUTEINFO lpExecInfo ) ; private const int SW_SHOWNORMAL = 1 ; [ StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode) ] private struct SHELLEXECUTEINFO { public int cbSize; public uint fMask; public IntPtr hwnd; public string lpVerb; public string lpFile; public string lpParameters; public string lpDirectory; public int nShow; public IntPtr hInstApp; public ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览