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

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

[复制链接]

154

主题

335

回帖

5754

积分

管理员

积分
5754
金钱
1813
贡献
3452
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献)
- J* d' |( B' x
0 b& k7 s' [6 G虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。
) G! f2 v: t) @! @
" X; Z# Y: P8 a, M" A( X) q2 a
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。$ V4 @/ g5 m  h, m
  2. //
    - l, P& q% M; n7 i) D3 Y7 d7 p

  3. - X: L7 _- F% }* w
  4. #include "stdafx.h"" A$ i- M- k- O9 p
  5. #include <iostream>
    $ r/ N; K' }. M! F1 Q; x* C" A- u" U: n
  6. #include <Windows.h>4 c3 _# K# y. A9 `2 R% u& X8 Q6 J' f& k1 X
  7. #include <io.h>: C# T$ i/ y7 A: o

  8. 2 G$ {: T1 z! t" w
  9. 7 k8 a7 }/ W( Q/ g8 h: U8 m
  10. int _tmain(int argc, _TCHAR* argv[])
    " T. W0 P" T- A
  11. {- |/ Q8 Y* ]$ ]7 X8 r! S0 @
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    " G& ?$ y: s: Z2 |1 ]& A. g
  13. 1 g/ @$ j9 o( N9 e: [) e4 F
  14.         //查看文件“DekaronServer.exe”是否存在* ]+ W7 c; o- ?2 t
  15.         if(_access("DekaronServer.exe", 0) == -1)+ n0 T. T3 x* @5 t
  16.         {
    ; I4 u/ U- B( @4 I, _
  17.                 printf("DekaronServer.exe not found!\n");
    " @! a# t- y2 v9 y  M- a1 B
  18.                 printf("Program will close in 5seconds\n");
    5 |, _% U6 h" f
  19.                 Sleep(5000);
    3 m) |2 X% h, \" ]* Q
  20.         }
    " R3 B% t  i+ P8 Z& W3 l, x5 I
  21.         else1 t" J, }6 R' U/ \3 }9 r
  22.         {
    5 p% M" M+ j- j: l  f* e. ?, Q
  23.                
    & m- s$ E) l8 d2 |0 p3 l4 S
  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).aspx5 ]$ G+ }! j1 f
  25.                 STARTUPINFO si;$ u& G0 Y1 B, ~0 o/ e2 Y9 N$ V- M
  26. 4 X0 Y* A( `! m/ y# u/ `. q/ |
  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  z7 h8 o6 u' R5 c0 D7 u
  28.                 PROCESS_INFORMATION pi;% K5 f* T) W/ F! X
  29. 2 W/ q$ d" B& c, m* }, @7 s
  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).aspx9 w" d* ?" A; ^% Y% s
  31.                 DEBUG_EVENT dbge;4 T9 m6 j+ x0 {: c" U

  32. 4 V/ [9 L; A6 r9 y9 X. _
  33.                 //Commandline that will used at CreateProcess; [! x# Z) V" L( N* p
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));9 V6 A$ @8 |' Y8 u9 q

  35. * X$ r3 e7 }+ c
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)
    + N% y0 ~! O( t. b- p* G& N0 n1 A
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    8 P% V" Y% O' ^$ s; n$ m
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)7 j! @, |$ k; f7 F( I

  39. 9 r/ a! d0 p- `9 [1 ^5 m

  40. 9 e0 w, A5 h2 H2 L1 i7 @# V; j2 s
  41. 7 o6 w7 g. A; o- d( P4 L& f
  42.                 //Start DekaronServer.exe ( H  x4 j* `; p0 _2 O& ]
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx! G7 ^. H. J# j5 N7 g& b
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)
    6 V# B4 d% f' L& W1 D1 s, K( r. _- b
  45.                         szCmdline,        // Command line
    ( f8 g& k/ x& l; _9 z! u0 F
  46.                         NULL,           // Process handle not inheritable% j8 l. ]2 |3 c
  47.                         NULL,           // Thread handle not inheritable
      {9 ^( c& m: ]+ H2 e
  48.                         FALSE,          // Set handle inheritance to FALSE
    4 C( F% X& x2 D. H+ Z
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    : r% X! {! t3 L- R8 ~3 }
  50.                         NULL,           // Use parent's environment block; @- p2 `4 B: ?9 ~
  51.                         NULL,           // Use parent's starting directory
    / Z$ `* X. _" r- o% I
  52.                         &si,            // Pointer to STARTUPINFO structure
    / G6 B( [, ?0 }! i# w
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure$ H. f  G; F3 E  ?
  54.                 ) 4 _1 M- ^( v2 l& v8 z
  55.                 {
    $ G! l) w$ g* _( _& \; T2 I' r
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );
    " Y) C1 N% }( S8 A
  57.                         return 0;7 ~4 X0 s& P2 z0 u- B: F
  58.                 }# i* n  j" u5 k- X$ ]2 L  L
  59.                 //Creating Process was sucessful6 ]3 |: @& _  F' D. m8 r3 i
  60.                 else+ m- a- B8 D' Z0 O- }3 O+ {
  61.                 {
    & E6 R% o, G& \. b0 ?2 |
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    # b# e0 k( x! x& n  W

  63. 2 y% c. {% o4 x" Y
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure* U/ a/ L$ H. C
  65.                         dbge.dwProcessId = pi.dwProcessId;4 l: _1 B4 _/ q9 ]) v" Y' a9 v
  66.                         dbge.dwProcessId = pi.dwThreadId;
    0 l6 r" z1 f% g
  67. " s' Q& ^7 e$ v8 _
  68.                         while(true) //infinite loop ("Debugger")
    ' H( Z- |* b" B3 f+ S. V
  69.                         {
    / \: |7 D1 H6 Y; 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
    + Q5 O, ]- q' o9 e
  71. 5 V; H! E8 ]2 U* S6 Z, W
  72.                                 /*2 z7 @- D( w% b# V# h( z. F. M
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
2 u4 b, N" a6 n/ T/ d! G0 }
. o  s% U$ y7 g5 ^& {: |6 L
0 }. D* y5 ?6 S9 A' H5 |  D
商业服务端 登录器 网站 出售

13

主题

250

回帖

1229

积分

金牌会员

积分
1229
金钱
785
贡献
176
注册时间
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

主题

205

回帖

345

积分

中级会员

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

13

主题

250

回帖

1229

积分

金牌会员

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

3

主题

99

回帖

5193

积分

论坛元老

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

本版积分规则


Archiver|小黑屋|EGameol

GMT+8, 2025-11-30 21:46 , Processed in 0.074794 second(s), 27 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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