找回密码
 立即注册
查看: 3040|回复: 5

[技术文章] Dekaron-用于Win7 / Win2k8R2的服务器启动器

[复制链接]

136

主题

189

回帖

3845

积分

管理员

积分
3845
金钱
1345
贡献
2175
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献) + b% w, S- }/ j& l0 W( d3 k
8 y# S$ ]: ?+ [
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。' s0 M, k6 a! S8 O

- H# M) T& u( S# w" @( A5 ?; O: Y
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    1 o; A1 Q( W  B# G4 b6 D( a3 D
  2. //
    ' e9 p% x" V% Y. b9 |

  3. / [5 t; u. |" p
  4. #include "stdafx.h"* @/ P0 D: Z- f
  5. #include <iostream># j: G5 P1 z# Y" [5 J6 X9 X' D
  6. #include <Windows.h>
    + p2 b) Q9 R9 Q0 L+ v/ C
  7. #include <io.h>
    & U0 V2 }/ D- g! ]( ~+ H6 a

  8. ( ^" s, R4 \- Q$ r6 K
  9. 1 J; e* \9 f" {. Y4 r: h; q: f2 g
  10. int _tmain(int argc, _TCHAR* argv[])
    9 l' ]! b: \# p8 g$ }
  11. {5 Z5 Y5 A2 F+ p& J
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    & c; U. u4 I5 `) k. _/ l

  13. 2 x( ]6 a% q, t& a# f( K
  14.         //查看文件“DekaronServer.exe”是否存在; r0 D; K2 ~4 @% T: M$ f
  15.         if(_access("DekaronServer.exe", 0) == -1)+ S+ n5 `6 V+ n( m3 t
  16.         {
    0 a: R# u; S. F3 K; ^. b$ H7 `
  17.                 printf("DekaronServer.exe not found!\n");8 @5 P9 b3 V0 ^% I
  18.                 printf("Program will close in 5seconds\n");
    8 M) g% s' o& D2 W& C$ y
  19.                 Sleep(5000);3 _0 U! V+ r6 _2 U/ p
  20.         }  F0 g  f! l8 ?4 \% j! q0 j
  21.         else" v/ j% T5 H2 ^# m, t6 {' V4 K
  22.         {# j/ t. {) L5 D) [6 c! I6 |1 K4 a
  23.                   U& O: Q9 d5 `9 @1 Z5 o8 t
  24.                 //Only needed for the CreateProcess function below, no more use in this programm. More info at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms686331(v=vs.85).aspx# d( @7 B$ J& m' c& Z9 C
  25.                 STARTUPINFO si;
    + R/ u+ A* N+ l9 y# k8 P

  26. 0 `! J1 y  X( z0 \
  27.                 //Structure where the CreateProcess function will write the ProcessID and ThreadID of the created Process. More info at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms684873(v=vs.85).aspx
    ( z: o! k. `/ x. F. e# {6 q
  28.                 PROCESS_INFORMATION pi;
    ! p/ u6 |; |* D" n( I, ~0 [4 L$ e
  29. 4 U/ M- u  Z* Z. p. ^
  30.                 //Debug event structure, needed for WaitForDebugEvent and ContinueDebugEvent. More info at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms679308(v=vs.85).aspx7 ^6 V+ @) a( m/ |* w1 e! Y# [; B
  31.                 DEBUG_EVENT dbge;- L/ z  X5 W, a; B

  32. $ a/ v" B# j0 i, i- p, {
  33.                 //Commandline that will used at CreateProcess1 s9 L" \; r7 s
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));
    7 e; L7 f/ l% @! r: y/ j6 g( a$ B
  35. ! c. A  c, Y6 q  @  r
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)" N* g3 N* y5 X$ r3 t
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    ( e) Q% z0 c9 }5 i3 N1 m) w7 K
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)
    , ?! S" [! q9 [
  39. * V3 U" l  J6 R3 N+ p- |
  40. ! o( \$ f' m* |) ]/ I. I9 j
  41. " F, N! c* g' u! I3 j; |
  42.                 //Start DekaronServer.exe
    : A( y8 w+ Y5 c$ W5 f
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx5 L2 y. W7 Z  ?0 v- Y. ?$ Q
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)8 s  A! T) S. u0 l' t+ Q
  45.                         szCmdline,        // Command line1 {4 L5 i# Y' s$ S; y
  46.                         NULL,           // Process handle not inheritable: I8 J5 G0 b  N
  47.                         NULL,           // Thread handle not inheritable
    8 G9 m  E, o- d% Z8 |
  48.                         FALSE,          // Set handle inheritance to FALSE
    . M; z/ o0 S3 f1 Y2 |
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    $ y% a+ H( a% q# c
  50.                         NULL,           // Use parent's environment block
      |7 q/ G: ?+ U' _: G
  51.                         NULL,           // Use parent's starting directory
    9 s* m; C+ P3 ?- k# J* A: v
  52.                         &si,            // Pointer to STARTUPINFO structure
    , J4 \/ ~- @) y( ]$ ~
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    & ~- j+ M9 Q. @: s6 D; i1 J, f7 P
  54.                 )
    7 @- Z* h) t  o7 O3 K
  55.                 {6 s# l5 H' p; Z$ e7 z8 [2 T
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );' h7 e  x: C7 M1 Q3 v
  57.                         return 0;- c1 v9 v: _, N0 q1 h
  58.                 }9 I% _  q9 J; B) w1 \
  59.                 //Creating Process was sucessful
    $ l( c0 K" `2 G# ^+ f
  60.                 else
    5 |7 E* [% x2 z  _, [3 N+ s
  61.                 {2 S7 @& n# H5 ?/ |
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    ) k% }5 B" X& Y. N, v# c0 S
  63. - V$ g3 U; ]. d, N6 d" `/ Y: F8 M
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    * T. A# m0 T3 Q" ]
  65.                         dbge.dwProcessId = pi.dwProcessId;
    , |3 s7 B2 g7 J6 c
  66.                         dbge.dwProcessId = pi.dwThreadId;* X2 I* T# u  H) g9 g% ~8 V

  67. ; V' E' P0 F9 B1 V3 `
  68.                         while(true) //infinite loop ("Debugger")8 e9 _  }  d) U  `, r, X
  69.                         {; h& H+ K1 H6 B6 `0 D  a
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx
    & S# H6 h+ X9 n# R4 M

  71. 4 M+ E3 E( b% J2 q* X! n
  72.                                 /*
    * g6 c. ~! f  u( l+ S- F0 F5 d
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码

: [, }+ U! O, c% l; W/ `5 l8 a
) m3 S4 J" ^5 P5 c" o" I1 ?
商业服务端 登录器 网站 出售

8

主题

231

回帖

863

积分

高级会员

积分
863
金钱
528
贡献
91
注册时间
2023-11-10
发表于 2023-12-18 20:34:07 | 显示全部楼层
我是来学习的!

21

主题

378

回帖

1013

积分

高级会员

积分
1013
金钱
445
贡献
169
注册时间
2024-1-20
发表于 2024-1-21 13:37:44 | 显示全部楼层
感谢楼主分享,我是来学习的

0

主题

189

回帖

298

积分

注册会员

积分
298
金钱
106
贡献
3
注册时间
2024-5-14
发表于 2024-5-14 15:56:57 | 显示全部楼层
学习学习赞赞赞

8

主题

231

回帖

863

积分

高级会员

积分
863
金钱
528
贡献
91
注册时间
2023-11-10
发表于 2024-5-25 11:48:57 | 显示全部楼层
每天报道一次!

2

主题

83

回帖

971

积分

高级会员

积分
971
金钱
876
贡献
10
注册时间
2023-11-15
QQ
发表于 2024-6-5 17:06:28 | 显示全部楼层
学些大神分享,受用了
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|EGameol

GMT+8, 2025-4-5 04:16 , Processed in 0.047702 second(s), 26 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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