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

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

[复制链接]

127

主题

142

回帖

2388

积分

管理员

积分
2388
金钱
857
贡献
1262
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献)
8 h, x% Q0 |  P, z" t1 x) M' l$ y* r1 m# C' c* U
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。
2 ]$ ^5 j& X9 s$ l# [  p' A
, K7 f. S& ~: L( z4 ]
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    - Q, y, @6 n& \6 U; c
  2. //- B$ A* x, \3 C" j# g

  3. - G# d2 h% `7 F# N
  4. #include "stdafx.h"  _; \1 b6 L. o+ `
  5. #include <iostream>
    ( q6 x; p5 \- c8 U8 ~
  6. #include <Windows.h>
    ' J3 E' h. S; y( x5 {
  7. #include <io.h>( w8 V3 i: F! K1 G9 F
  8. 9 P( u0 a4 g9 i) w2 p
  9. - q( }2 C: F6 Z: P% U
  10. int _tmain(int argc, _TCHAR* argv[])
    $ }; o8 k3 f8 R. Q( |7 Y
  11. {
    8 a. u$ s. I4 o. ?
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    - q5 D, N' |3 p! P* U% E1 f' l
  13. . a3 E4 n& P; y& ~, f
  14.         //查看文件“DekaronServer.exe”是否存在
    9 s+ M, F4 C2 @' Q* s& N6 u1 e
  15.         if(_access("DekaronServer.exe", 0) == -1)3 H* [. V$ _) f
  16.         {$ J+ u! `" Q2 V1 {. H' }
  17.                 printf("DekaronServer.exe not found!\n");
    . Q* C3 ]( x5 I4 h# o$ O$ u' P
  18.                 printf("Program will close in 5seconds\n");
    / B9 ~7 Z/ o0 L4 G
  19.                 Sleep(5000);$ ^  W0 k& |5 ?/ k
  20.         }, Z3 Q+ i* H6 ]' V7 o4 S1 a
  21.         else  u6 P! d, z8 I
  22.         {# h( _. r' P8 ^1 ^+ X! ~
  23.                 ' w  A# A3 z' b! L, b# 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).aspx+ K; V4 R" U( [
  25.                 STARTUPINFO si;
    ; H1 j. m9 D, }
  26. 2 j- U# F4 e' u% q/ V: v6 J
  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
    8 z* W9 ~: N; E" r1 s7 M7 K; T
  28.                 PROCESS_INFORMATION pi;( @# z, U9 M/ Q2 [- Z9 V

  29. 2 Q0 I  E6 h$ k8 d, k# l) Z% A
  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
    ) T! o6 C; I" X. L9 `1 `
  31.                 DEBUG_EVENT dbge;
    ; z+ R0 c# P; @( |1 A  \
  32. $ E0 Y3 k) h3 |
  33.                 //Commandline that will used at CreateProcess/ u7 d& P8 P3 i- ]4 `# j# K1 J
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));
    9 [5 q3 A7 C7 W# r  @/ r
  35. + @4 l7 p4 v' g" l7 o
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)
    9 L: G' q. m8 t0 h/ S- P/ P
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    $ b" J0 \" h9 _( w1 u- a
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made): {; j' d* A( B8 Q! F1 U

  39. 4 V0 N" I$ z6 G( E* {; }, P, J( w% j
  40. 9 ^; O: Y" ]6 r% v/ I
  41. : i& j+ H* Q8 c$ Y
  42.                 //Start DekaronServer.exe
    2 \. A/ h/ R* Y
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx5 B! g  M+ |/ Z/ L7 `
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)* F; h/ J5 J7 L) r  X  U
  45.                         szCmdline,        // Command line
    % e( ^  W2 v  L1 E. Z5 C* N
  46.                         NULL,           // Process handle not inheritable) q! K& k5 {" Y) Z2 `
  47.                         NULL,           // Thread handle not inheritable
    9 c3 C0 ^% z& J; g+ J; m7 J
  48.                         FALSE,          // Set handle inheritance to FALSE, t% n! }) _( _/ l" F
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    ) W/ H0 y5 I8 V$ G2 d# C( A
  50.                         NULL,           // Use parent's environment block
    0 R; J7 L+ M0 c
  51.                         NULL,           // Use parent's starting directory
    1 k$ E( l/ m5 }% q% s. A- g
  52.                         &si,            // Pointer to STARTUPINFO structure8 e& A$ h: q& t! D) ]; ?' h
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    5 G9 ^; K$ m. w
  54.                 )
    6 A% r% {8 x' k9 q
  55.                 {# ]+ G/ q5 T+ L8 [4 c7 z
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );
    * \8 u  T- r+ `7 ^: @9 ]8 J
  57.                         return 0;
    4 Y% |. W  h. E
  58.                 }: r) G/ {) m8 E  T7 m
  59.                 //Creating Process was sucessful
    ! n0 T7 B3 c3 X7 C! E
  60.                 else4 T6 X, o" [! w5 W
  61.                 {
    ! g6 n7 b& U: Q, D
  62.                         printf("Sucessfully launched DekaronServer.exe\n");& i. Z* a/ ^& s3 l5 s! |
  63. 4 e5 h" z9 X4 T
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    8 v3 \) Q; r" Z. ]
  65.                         dbge.dwProcessId = pi.dwProcessId;
    ' @/ y* ?5 @4 c1 {$ X
  66.                         dbge.dwProcessId = pi.dwThreadId;
    9 ^" p5 I) D& \6 }

  67. ; e6 s& ~% r9 |, u% _- v
  68.                         while(true) //infinite loop ("Debugger")- S5 P+ n* U  ^/ i0 S, h$ J8 E) I
  69.                         {! h2 B6 B7 Q9 x& }* {) O1 K
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx& ]  K) P, ~7 }5 ~. D
  71. , t  {3 T( A/ G& [5 S) [' b
  72.                                 /*' f' Y0 s( h& G) Z6 T0 l
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码

* {  S# D% z: A" v: S0 p8 w, C! T. G9 Y; r  @. p3 y, _
( O* k4 _2 }! z
商业服务端 登录器 网站 出售

8

主题

222

回帖

737

积分

高级会员

积分
737
金钱
397
贡献
105
注册时间
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

主题

222

回帖

737

积分

高级会员

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

2

主题

80

回帖

405

积分

中级会员

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

本版积分规则

Archiver|手机版|小黑屋|EGameol

GMT+8, 2024-11-21 21:09 , Processed in 0.066344 second(s), 25 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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