找回密码
 立即注册
查看: 4555|回复: 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 贡献) # u4 P+ t, R% i/ q

  ^* N: \4 ^+ i' E0 C虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。' z2 j8 {2 s2 n5 Q- h9 w# N
( z* J6 \0 S; y
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    9 M. E6 b: p2 c* @9 m3 u
  2. //
    $ c9 c% `6 ?1 g
  3. 1 F6 @+ g" X1 e+ t  z+ E0 P+ f
  4. #include "stdafx.h"1 Q! k" Y: C- i% Y7 S  {- q3 `
  5. #include <iostream>0 f9 G8 R+ m6 P, o3 v
  6. #include <Windows.h>
    9 V: `- h* I5 Q6 F$ |. O
  7. #include <io.h>0 w9 J% v& Q2 G! @. s6 t

  8. 6 ^" f, P$ C) y' u
  9. 8 C8 m. C* w, \3 z/ |
  10. int _tmain(int argc, _TCHAR* argv[])
    , K3 X( C% _7 [7 t9 c3 [
  11. {
    + [$ ?7 |! @' T. ?  C% R
  12.         printf("Dekaron-Server Launcher by Toasty\n");7 C* {4 X) {. J+ X5 A- l
  13. / c" \" f/ G+ Y5 W- G/ k
  14.         //查看文件“DekaronServer.exe”是否存在. R, y$ E. X+ ^5 r, a4 ~  i
  15.         if(_access("DekaronServer.exe", 0) == -1)
    ( d& R4 o1 A4 k! b' L
  16.         {
    * M: l$ v5 Y& y2 b+ n' X- I2 H
  17.                 printf("DekaronServer.exe not found!\n");/ S8 `* Z6 @: |
  18.                 printf("Program will close in 5seconds\n");1 c( V; _/ M; {0 u! o  T5 P
  19.                 Sleep(5000);
    / k& y2 g0 N1 H1 o% S
  20.         }9 V# B* f* }  q8 b/ n
  21.         else& o( N: z5 M& N4 X
  22.         {
    ; P/ w( r6 d) ?" p
  23.                 + q6 s+ m8 I- {8 J$ T& ]' E
  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
    ) R0 K0 k! S8 |
  25.                 STARTUPINFO si;
    0 D8 g- w0 d7 r" C. C, U6 u: @
  26. 5 h: V% L4 r4 P# X' m. Y
  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" B, g' q5 H0 i
  28.                 PROCESS_INFORMATION pi;' X& B$ `  P. w; G
  29. ( `& i2 `* H" }4 w' W
  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).aspx4 y* J! e0 X" B6 ?" _1 _
  31.                 DEBUG_EVENT dbge;4 d7 Y9 l0 O0 C" J2 ~5 J$ @4 X
  32. 3 E  a; g- X0 k2 m, Y" r& U6 q* C! N
  33.                 //Commandline that will used at CreateProcess4 p" s+ }! l- _  U. U0 O& \' B* R
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));# J7 V& W: c' M) a3 p/ b+ c
  35. % ]: I4 r8 h7 A' }# v
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)
    ; v+ y! C/ E/ R  z+ d
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)8 p* W$ g+ K$ b8 |. ?
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)0 [1 J/ i- S, N9 L! l

  39.   x+ S7 U! N  w9 Q; y) r
  40. # s: o0 D6 A  l; l2 R" y

  41. + |: b4 n8 r# I, h& _1 z
  42.                 //Start DekaronServer.exe ( i9 E6 @3 g: L/ M+ V$ u
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx* I7 G, b) [: {2 t- C
  44.                 if( !CreateProcess( NULL,   // No module name (use command line): T( v1 v  _) V
  45.                         szCmdline,        // Command line2 E% l7 W# U* C# x# Q
  46.                         NULL,           // Process handle not inheritable; J9 y+ X+ ?4 z& g) M. I6 W$ X& X
  47.                         NULL,           // Thread handle not inheritable
    0 Y" d7 ]" H4 r/ |
  48.                         FALSE,          // Set handle inheritance to FALSE
    & h* s8 t. j3 ]  ]" ]; |4 Y
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx- ~( b' o& [* y' ^5 g( E
  50.                         NULL,           // Use parent's environment block! k/ D2 A7 Y# c! r1 A  c, [+ \0 {  }
  51.                         NULL,           // Use parent's starting directory 2 }* ]; N* _" J! Z
  52.                         &si,            // Pointer to STARTUPINFO structure
    " U: u' z; i5 V3 B: k
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    4 _! G$ @* j5 y3 \$ w( s3 {
  54.                 ) # Z- L% v' T5 S: C, j2 q
  55.                 {5 l* ~8 a( H/ w# ]( F
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );
    2 u9 ?# s: Q' }8 ^' c
  57.                         return 0;5 k# I+ Z1 r! z% R" [$ j
  58.                 }
    ; c4 a" G0 y. Y2 F) f, C. W3 n5 L
  59.                 //Creating Process was sucessful
    2 S8 @3 p+ J( [1 f6 T6 L
  60.                 else* E' S+ u+ b  ]1 z
  61.                 {
    5 V: M# u6 @$ n: _* t
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    / v: [3 G; B/ T4 ^$ g

  63. , A9 m/ C7 A: `6 H, Y. y
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure9 K5 G# b0 I$ h+ v  S
  65.                         dbge.dwProcessId = pi.dwProcessId;
    9 P( [( c$ |( \& a$ R# P
  66.                         dbge.dwProcessId = pi.dwThreadId;) @1 U* n4 y2 Z# o2 p. A/ s/ I8 a4 w+ |

  67. ' j1 ~  K; [, _, h& c2 n  A5 S
  68.                         while(true) //infinite loop ("Debugger")# t# T, }& p( {
  69.                         {1 I# y, s7 w' a* Y7 ~, r5 E. v
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx# V! w/ U" {) U( P% a0 f; E7 ~6 ?6 W% o6 W9 x
  71. $ t, _' }7 B4 j/ r; \$ d  U9 A$ I
  72.                                 /*
    $ a' p) _9 u% y) V6 x  M
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
1 U! s3 r) v: M8 R* H: \. X

3 z4 i' W0 I/ G
! S8 p" I0 A& Q- w+ T' b3 t  l
商业服务端 登录器 网站 出售

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-12-1 03:54 , Processed in 0.062609 second(s), 27 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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