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

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

[复制链接]

128

主题

145

回帖

2422

积分

管理员

积分
2422
金钱
870
贡献
1279
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献) 4 m9 f1 C, c$ p% d

% a$ |* L! Y; J: |虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。% N- G# o6 ^7 a4 n5 P( c

! O% y; w5 x8 Q( c# D! ?
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。7 l+ y5 I/ ^. J9 W9 @$ d
  2. //. N' B- ?% v% B; c" h3 {: o) t! l

  3. ! i# J( X7 H( K$ W, O/ F
  4. #include "stdafx.h"- u& {& \) X$ q. ]) H
  5. #include <iostream>. q' b/ h; D' G: s
  6. #include <Windows.h>  F6 G- m9 f1 C
  7. #include <io.h>* q: ~8 H1 t3 l

  8. 0 p# u+ X6 P; L& n

  9. 6 y) E3 q+ e7 J$ C. Z
  10. int _tmain(int argc, _TCHAR* argv[])( Z+ _* U4 ~3 T  n/ u- v
  11. {
    / E4 H( Z% [' o( t! T+ ?4 ~' C
  12.         printf("Dekaron-Server Launcher by Toasty\n");. u+ P  i: X1 U0 a: q$ m+ ~
  13. ) b" \! g% m6 @1 o) s
  14.         //查看文件“DekaronServer.exe”是否存在
    . t' C8 c6 ]6 s# t$ c% T- v
  15.         if(_access("DekaronServer.exe", 0) == -1)
    " u3 N* t$ }2 g$ Y0 S+ y; ^# s8 b
  16.         {: x4 e3 e, o& a8 G# U5 i( i. A9 _
  17.                 printf("DekaronServer.exe not found!\n");
    - o; C2 P) y0 S+ p* {
  18.                 printf("Program will close in 5seconds\n");7 Z2 ~3 q, b: [- h4 O( U
  19.                 Sleep(5000);
    3 @# N8 |' Y1 `) q! {7 Z
  20.         }
    / }1 Y. g1 c2 Q6 z( q$ q
  21.         else5 `; H* T( ~7 R8 N8 A
  22.         {0 G7 a5 d3 L. L% t, |/ g
  23.                 ) U5 Q" y: `7 z
  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).aspx3 i1 A# y0 G9 f/ o9 B7 o; l
  25.                 STARTUPINFO si;! B- y( m& Q' N% o+ E
  26. 7 Y0 l$ G* m" i. Y& r
  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
    " ^* i$ [5 @, U0 W& Z/ i& B
  28.                 PROCESS_INFORMATION pi;
    5 B3 o7 P/ _7 ^7 c' @) o
  29. 1 O9 o- }8 A& n) j* u7 {; ?" q  {
  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. s# k- m6 X: m
  31.                 DEBUG_EVENT dbge;5 i" h7 z1 c9 D. k3 G, E
  32. / N) D9 q+ o; d
  33.                 //Commandline that will used at CreateProcess
    ! P# C( t5 A& @1 b+ d2 c
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));- K- N* {2 F0 s- y3 `- l
  35. 4 N# d0 Z  x6 Z% k+ L
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)& S: p* o3 @0 o# O
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn); M! r; k# }' Q2 A7 n. s$ g
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)* u6 l: f+ q9 @. H; f/ V

  39. 8 M; c* a% w0 f4 ^/ ?

  40. ( z' Y+ Y0 }3 e* J. W' i9 }9 b8 L
  41. $ f7 ^' Q9 P, T' G8 u
  42.                 //Start DekaronServer.exe
    " [7 |0 f7 Z3 d+ B: n- Z
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx- x5 F* ?" ^2 S1 Y
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)7 A& F% j+ h% q! ~8 u% Z6 b
  45.                         szCmdline,        // Command line1 }1 h6 F5 r7 \+ @! n
  46.                         NULL,           // Process handle not inheritable/ l  T3 j( h1 v
  47.                         NULL,           // Thread handle not inheritable& ]* w, P; O, i! r+ X
  48.                         FALSE,          // Set handle inheritance to FALSE* G5 D; _+ h8 b. l) U( O: \) E
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    9 |, o, B# W" |
  50.                         NULL,           // Use parent's environment block
      s4 z( d5 H# [3 u* o7 J6 Z, z
  51.                         NULL,           // Use parent's starting directory : `3 X6 Z+ x( ^; S3 o2 |7 t, W0 L* U
  52.                         &si,            // Pointer to STARTUPINFO structure5 P. [! d% F( t' u: [: s* x
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    2 T: ~$ ]. w0 N' k8 d
  54.                 )
    ; U+ l0 {2 l% a: i8 T# ]2 R
  55.                 {
    3 i: ?) C; F: t! G! R) K5 N3 A* D
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );
    - a: R5 N& X  A! r4 {
  57.                         return 0;! u( S8 \' [( U. q# @- }
  58.                 }
    / A2 P3 ^5 [5 b: C
  59.                 //Creating Process was sucessful1 c! w4 f; i: ]$ f
  60.                 else
    % z; @, s2 w. p+ Q  J* [. }  q
  61.                 {: g% w3 u$ W' e7 u* m/ j
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    7 {% b- S& p% t! J7 ]: |' B

  63. 2 B9 @( ~9 Z& c; e" ?, z
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    ' ?4 u+ }0 o: e/ Q: M! Y
  65.                         dbge.dwProcessId = pi.dwProcessId;
    / N- {. z- v1 a/ E1 I3 {% e) y" T
  66.                         dbge.dwProcessId = pi.dwThreadId;. D) ?$ X' w' m/ o3 L+ c
  67. 7 V; J& U" a, N% a
  68.                         while(true) //infinite loop ("Debugger")' o1 p3 j, @  L- L3 B; R0 A
  69.                         {
    ! y$ U0 N6 M- G9 s1 t1 `9 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: U) T: `+ x0 q7 M- w+ ]9 {. C* x* ^

  71. / K  X, w$ V2 Q- Q! h4 A
  72.                                 /*
    - o3 \  G, l0 [. X, l
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
. a8 l' ?! o- ^# h! A0 R- [
4 @  [( t+ U. \* o

9 X9 T' e  }# W' ]/ C
商业服务端 登录器 网站 出售

8

主题

223

回帖

732

积分

高级会员

积分
732
金钱
400
贡献
96
注册时间
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

主题

223

回帖

732

积分

高级会员

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

2

主题

80

回帖

420

积分

中级会员

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

本版积分规则

Archiver|手机版|小黑屋|EGameol

GMT+8, 2024-11-26 10:41 , Processed in 0.065352 second(s), 25 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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