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

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

[复制链接]

154

主题

335

回帖

5751

积分

管理员

积分
5751
金钱
1811
贡献
3451
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献)
% K# z2 G" {6 i; U3 c& A) b1 `0 c8 n) {  w
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。( _  c, J  l7 f

) R/ H1 d; C) _2 |7 ?
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    . M$ ~) m* t* b1 `8 r& t; O
  2. //
    5 @$ b3 q$ ]8 |" w6 w+ a0 J) U
  3. 1 c5 t5 q; ?) ~, _
  4. #include "stdafx.h"
    # j: _! O" A. |. b8 O  X
  5. #include <iostream>0 {  |' D% y, r5 t0 w- D
  6. #include <Windows.h>
    3 U5 e) U" p# E: R% u- G0 r
  7. #include <io.h>
    ( V9 H5 z# a+ f  G3 C7 f
  8. % {) X* [$ k. l1 M. u2 d  a
  9. : C; L" A3 A' k# X6 T0 C& z( e
  10. int _tmain(int argc, _TCHAR* argv[]): l2 s, Q6 i& Y# ]3 n! y
  11. {6 N! F, ~( U, `4 l* g( @
  12.         printf("Dekaron-Server Launcher by Toasty\n");2 ^! s( R8 U: B  ?- X$ `
  13. . q0 y9 G8 U3 q, \/ @- l
  14.         //查看文件“DekaronServer.exe”是否存在4 p& H6 w2 H1 R6 x5 }" W7 R
  15.         if(_access("DekaronServer.exe", 0) == -1)
    3 Z  r( N- z( ?% m  K8 y1 |
  16.         {. n! g  {9 @4 {6 K( s+ ]# Q
  17.                 printf("DekaronServer.exe not found!\n");
    $ h$ ~+ ~1 `! E& M! R2 W
  18.                 printf("Program will close in 5seconds\n");
    2 N9 L% R1 ~2 R. {4 c5 a# b
  19.                 Sleep(5000);
    7 e( F: B5 ?$ r6 g
  20.         }$ Q5 ?1 v4 V+ b' \; I
  21.         else
    - A  I0 V2 \$ m. S, d8 L
  22.         {
    - F0 Y# g* c" \+ Z
  23.                 ' l4 z# M4 \. l" H6 ^/ D
  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
    - A. D" ]) W0 U1 k* B" s
  25.                 STARTUPINFO si;
    1 k9 j% E0 L7 @, r& K9 F: T

  26. 9 U1 Y* m. J4 C! t& c9 S3 }
  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" D3 R4 j. `' m& E+ d) ~
  28.                 PROCESS_INFORMATION pi;
    . ^3 D6 o5 x8 l  D: z
  29. - S* W# q# }. t, m
  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).aspx5 j/ B+ @2 [( e2 Q5 ~3 h
  31.                 DEBUG_EVENT dbge;; X! G, l$ ^" J3 h
  32. 5 O4 |9 b) B$ r% g  g( Q( G
  33.                 //Commandline that will used at CreateProcess+ X0 D6 i" k! w# J9 t
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));; V3 Z1 W- g! {5 r) Y  D* [$ k
  35. # A. Y  c1 X9 i
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)
    3 |! z) o8 Q, A, c; g$ j" v) c
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    9 _& C0 }6 h5 T* D: G, U
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)
    0 b& P3 k9 f  d4 |  ]; u5 |( v

  39. 5 |0 z9 b5 ]3 i; X" Y1 ~% ]; C
  40. . F5 ]6 n2 I' R7 M" f, k! O
  41. ' I( C5 |  J$ Q# \
  42.                 //Start DekaronServer.exe - [. u0 k- g0 a
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx
    % v1 D' a- w7 d4 l: J7 l8 {1 D& g* k
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)$ E7 b& t* C6 v* E" \9 O: d2 U! H
  45.                         szCmdline,        // Command line1 f+ |8 a; R" \& b' ~& U: G7 `
  46.                         NULL,           // Process handle not inheritable
    2 Z) w3 U5 J, z9 L, {- ]
  47.                         NULL,           // Thread handle not inheritable/ ]0 z1 P0 K; u% L4 `3 T
  48.                         FALSE,          // Set handle inheritance to FALSE, U: l) M1 f! S; L* m
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    ; D% S# f$ t, F  ?  N; x  k$ I7 g
  50.                         NULL,           // Use parent's environment block
    ! X9 Y1 C. i) Q& C
  51.                         NULL,           // Use parent's starting directory # k  J+ k4 Y. o+ F" v0 K4 t
  52.                         &si,            // Pointer to STARTUPINFO structure
    . l6 u9 ~& g$ x7 l; @
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    $ \+ Y: `9 a+ C1 e# D
  54.                 ) : P& ?( r0 v& B! r; a; o5 P* [% n
  55.                 {
    # R& }4 R- J3 X2 Z6 D
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );* j' e; Q' v/ V% h& ]
  57.                         return 0;
    , W' `4 C4 m# o, w
  58.                 }
    6 _7 E0 s, I5 j5 N- e( a
  59.                 //Creating Process was sucessful
    ! ?- J( C1 p! H, G' b
  60.                 else3 o, @! m/ {5 |. C& S
  61.                 {) S7 J9 H% F  f# w5 R1 e! q: l, ^
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    1 [1 `# j% J' c: T, ]7 c( E

  63. 2 X: b2 ]7 i& t  P
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    % C6 L% e2 E$ X9 R) \: C
  65.                         dbge.dwProcessId = pi.dwProcessId;9 f" N# N9 X+ `+ n9 p5 f
  66.                         dbge.dwProcessId = pi.dwThreadId;3 g& O' _8 n1 W# r* Q- O: J
  67. " S. s8 i. A' T4 x  O8 T  a$ S
  68.                         while(true) //infinite loop ("Debugger")
    8 Q; Q2 L; I0 z2 G/ t
  69.                         {
    3 W+ J  g* t6 E' }
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx
    ) @+ U* i. T* E, D& J4 X* q' E

  71. 9 n& V" F: U6 K* I0 \9 ~, O
  72.                                 /*- G# {: _( a. ~4 _! D' x
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码

2 B: A1 o0 s" U8 q
8 E4 H$ C/ Y5 b7 _/ l5 ]' {1 x0 W3 w
商业服务端 登录器 网站 出售

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

回帖

5173

积分

论坛元老

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

本版积分规则


Archiver|小黑屋|EGameol

GMT+8, 2025-11-30 04:27 , Processed in 0.075349 second(s), 27 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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