VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 642|回复: 2

急求! 各位請問API調用exe應用程序問題.

[复制链接]

2

主题

3

帖子

4.00

积分

新手上路

Rank: 1

积分
4.00
发表于 2020-3-5 19:00:01 | 显示全部楼层 |阅读模式
                [System.Runtime.InteropServices.DllImport("kernel32.dll")]     
                private   static   extern   bool   TerminateProcess(IntPtr   hProcess,   int   uExitCode);   
                [System.Runtime.InteropServices.DllImport("kernel32.dll")]     
                private   static   extern   IntPtr   GetCurrentProcess();   

__________________________________

上面是關閉應用程序的API.

請問,打開指定EXE文件的API函數是什麼?

能否給出代碼....


回复

使用道具 举报

0

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-6-12 11:45:02 | 显示全部楼层
[DllImport("advapi32")] public static extern int CreateProcessAsUser(HANDLE hToken, string lpApplicationName, string lpCommandLine, ref SECURITY_ATTRIBUTES lpProcessAttributes, ref SECURITY_ATTRIBUTES lpThreadAttributes, int bInheritHandles, int dwCreationFlags, string lpEnvironment, string lpCurrentDirectory, ref STARTUPINFO lpStartupInfo, ref PROCESS_INFORMATION lpProcessInformation);

[DllImport("kernel32")] public static extern int CreateProcess(string lpApplicationName, string lpCommandLine, ref SECURITY_ATTRIBUTES lpProcessAttributes, ref SECURITY_ATTRIBUTES lpThreadAttributes, int bInheritHandles, int dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDriectory, ref STARTUPINFO lpStartupInfo, ref PROCESS_INFORMATION lpProcessInformation);

[DllImport("kernel32")] public static extern int CreateThread(ref SECURITY_ATTRIBUTES lpThreadAttributes, int dwStackSize, ref int lpStartAddress, IntPtr lpParameter, int dwCreationFlags, ref int lpThreadId);
回复

使用道具 举报

0

主题

9

帖子

8.00

积分

新手上路

Rank: 1

积分
8.00
发表于 2020-6-18 22:15:01 | 显示全部楼层
        System.Diagnostics.Process pro = new System.Diagnostics.Process();

                        pro.StartInfo.FileName = @"C:\WINDOWS\System32\calc.exe";
                        pro.StartInfo.Arguments ="";
                        pro.Start();
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表