找回密码
 立即注册
查看: 3033|回复: 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* n# [- ~( T) z
6 w1 Y  o# z( B" j" X5 l9 O# ?
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。* M. w, ^$ M* W+ z8 z: Q

1 |' k5 U/ N8 N2 z
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    $ M4 E* b6 K- M/ K
  2. //
    ) R! k" h+ K/ T* C8 u, V
  3. 5 p2 b" u. F) a/ ~. ^0 w! q
  4. #include "stdafx.h"7 Q9 {( K/ q$ b1 f/ V
  5. #include <iostream>& X  {; n- D" ]; z: |
  6. #include <Windows.h>4 Q6 L! R; e+ r: q5 N8 ]$ `
  7. #include <io.h>% e- Y5 R; h: s  B

  8. 8 s1 K% M$ v* C6 N  \
  9. 3 r( J( q" b& \! Q' o5 k% Q2 `: W
  10. int _tmain(int argc, _TCHAR* argv[])# G) G0 X3 q  k' t  y
  11. {  l0 F6 ]/ B* r: l* ?
  12.         printf("Dekaron-Server Launcher by Toasty\n");& _, P1 M1 q+ i8 @: H0 [6 r7 ]
  13. . L* p" Q) r( J- M4 s+ s
  14.         //查看文件“DekaronServer.exe”是否存在' D$ e' u( h/ v! r
  15.         if(_access("DekaronServer.exe", 0) == -1): {+ S8 p+ n: O8 M0 N! |6 Q5 j$ r
  16.         {  o: n# s$ x2 g5 x/ j
  17.                 printf("DekaronServer.exe not found!\n");
    ; V# M0 D- W8 y. j# Q- ^
  18.                 printf("Program will close in 5seconds\n");  ^2 V0 n+ D' J! z
  19.                 Sleep(5000);
    & g$ [3 T. ^2 X9 t1 T) `0 h" t
  20.         }
    ( ]. j, Q) t- `. ]8 ^
  21.         else/ u. u8 H5 Z& k. V
  22.         {( L" u1 K3 g$ C
  23.                 ! h# C/ @& n8 u& t" S3 p
  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+ u! O, |; V' l( @" C  r% l- j% U1 Y/ J
  25.                 STARTUPINFO si;2 `8 r4 \& [9 [/ O/ `* i0 h* }2 X& R

  26. , L6 s8 o0 y# w; ~0 y: 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).aspx0 R7 o  ~* X8 G# ]7 N! o4 Y! E
  28.                 PROCESS_INFORMATION pi;' O6 @7 ^) }* q  E
  29. 7 ?- K" k2 k3 L: X# r( M/ Z
  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).aspx
    " {6 `4 b0 c; n" V5 K. Z
  31.                 DEBUG_EVENT dbge;/ n+ M+ b: V8 _
  32. ; T; M, g) c. u  @. s& W* |  z, ^
  33.                 //Commandline that will used at CreateProcess: O5 d0 @, n! `( r- ?
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));
    6 D  O% M, l( O) m7 `8 E- a1 B6 J' F

  35. . d& [6 A0 ?4 s! b+ K* A
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)
    # {8 j. v  V& `& }. z! J& G  v- S
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    , N7 |6 \( G5 d1 l7 Y" W
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)
    , R' b" L! S, A. N

  39. ' l6 F8 ^, T3 g1 j  H

  40. ! ]2 F8 c6 l2 O) n' P; H

  41.   X0 ^4 |- G0 A5 G' R
  42.                 //Start DekaronServer.exe
    0 Q6 _" \7 y" m
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx+ Q( h. m4 |! A. z5 _
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)
    7 X0 _( _, T  N( n3 X! {9 Q. E
  45.                         szCmdline,        // Command line6 E8 s6 a3 d0 ^* ^. M
  46.                         NULL,           // Process handle not inheritable
    0 d6 [* A$ p$ K* ~2 Z6 D% n0 V
  47.                         NULL,           // Thread handle not inheritable1 |& w$ j0 g* p/ W6 W" l7 Q
  48.                         FALSE,          // Set handle inheritance to FALSE- S7 }; h7 z2 j
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx! x. g* Y% V9 U  b+ y
  50.                         NULL,           // Use parent's environment block; Q8 _7 I2 u4 a# [0 G- I
  51.                         NULL,           // Use parent's starting directory * b7 j/ t# m. ~& f( s
  52.                         &si,            // Pointer to STARTUPINFO structure
    , U3 V& i% K/ f/ M1 K
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure* j- t" v9 M- |6 e5 l
  54.                 )
      ~0 k$ `1 e% }+ x" Y* a
  55.                 {
    0 f+ |% r2 Y) K" l7 `0 U
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );7 \- l- O" ?% \5 i  c! y+ _
  57.                         return 0;
    7 |7 s* j4 _: }; v( T1 i
  58.                 }
    $ ~, @: t# w+ Z5 F  D6 u4 x
  59.                 //Creating Process was sucessful' U4 s0 i/ G) }* R7 G$ {- @
  60.                 else3 P/ [8 v4 g1 i1 l$ a, M
  61.                 {% P2 a% \& n" v* [0 w/ `
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    1 x) C% x+ b% Y; l$ R6 D

  63. 8 |8 H/ v* ^6 o" d( a1 v
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    . A  n6 y6 d4 X" }0 {2 p5 i/ i- U0 V
  65.                         dbge.dwProcessId = pi.dwProcessId;
    " v* P, f, U8 N& Q4 A
  66.                         dbge.dwProcessId = pi.dwThreadId;
    " K9 l, @$ F, ~! k" l2 y# ~

  67. & h' Y4 W1 a# S% D1 ?2 F5 s: Z
  68.                         while(true) //infinite loop ("Debugger")9 j; k- A' v  M' U
  69.                         {
      l/ m! J7 v! u5 W
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx9 l" p+ ^, Z  E

  71. 6 ]; s% d! B7 d; p6 I6 c
  72.                                 /*
    & F$ r6 ~* y0 {# r) r
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
) U9 l6 w$ N3 g

0 ]  g7 Z! y  ?2 `, f9 F1 d5 d% t6 n0 Y' L
商业服务端 登录器 网站 出售

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-4 12:34 , Processed in 0.047734 second(s), 26 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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