找回密码
 立即注册
查看: 3039|回复: 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 贡献)   ]3 x5 _/ V0 [* I: b6 f
% j3 G! V8 s' R9 M( }
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。
7 d1 l0 a9 N+ [$ H3 `% D% {) F( X' \( z+ U0 t
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    * l- r: K+ f2 }8 e
  2. //8 i5 \" m/ H9 k

  3. ; v8 e" q+ [2 L' S
  4. #include "stdafx.h"
    & O9 y6 n+ M/ Y
  5. #include <iostream>
    3 p% h4 M0 `. i' ]3 w$ ?
  6. #include <Windows.h>
    ) p/ A# p, ]& s6 M+ h5 j4 F3 O
  7. #include <io.h>
    8 C5 G) G( g$ Y" ]% g7 ^3 j

  8. # Z9 c6 g: r& d! T- W' [3 |

  9. 8 d) O+ A6 S* X4 s6 E  ^
  10. int _tmain(int argc, _TCHAR* argv[])
    : {; r5 M4 O8 F( q& H0 G9 }8 E
  11. {9 ~/ o) C5 }6 I" T- Y5 e- W9 g) [) R
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    . ^- W4 m% @7 e# p0 _5 s5 J

  13. 8 ?. h' w7 c0 t9 ]6 O$ k. b
  14.         //查看文件“DekaronServer.exe”是否存在
    - }' N6 }; k5 H. B/ |! C
  15.         if(_access("DekaronServer.exe", 0) == -1)
    + q5 j- {, ^* m$ G( L
  16.         {# a$ M# W$ O% E6 Q
  17.                 printf("DekaronServer.exe not found!\n");4 M; G8 Q; R9 M& I( k% X* o# Q. |( m$ R
  18.                 printf("Program will close in 5seconds\n");
    ! H( q* m* z4 G- L3 E
  19.                 Sleep(5000);
    2 S6 X0 D! L) Z  p2 I: V) S
  20.         }4 F  k0 A0 ~- ?8 w
  21.         else
    5 L) L7 }" M: N) c
  22.         {
    / N8 m+ o: [. N# j0 X
  23.                 ; T9 n( `$ ?8 Y* 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
    ) z! U: w0 |6 d9 J$ @
  25.                 STARTUPINFO si;; K+ Y0 r6 _9 m  D
  26. 8 H1 ^1 b$ C* |& g6 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
    + J1 _& d. f3 q4 W) {
  28.                 PROCESS_INFORMATION pi;7 v3 ]  `8 ~/ E( }

  29. / D; [+ ]' E" y- N4 G
  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
    : c6 ]. n, ?/ [- j
  31.                 DEBUG_EVENT dbge;
    5 @/ M8 |* t2 T" J& @( o. H  h# T
  32. * x; X% S, t! ?
  33.                 //Commandline that will used at CreateProcess! t# D3 Z7 n* w- P; ~
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));
    ' R+ h+ z% W! |8 U

  35. + N0 v7 J/ d6 G0 n( a# [
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made); D, B# w' s2 X7 h4 p3 f
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)# s. |, ]# B; H% v4 f. N% k( _" L  a
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)4 \# }3 B( {; F0 w) g$ N
  39. & b  w: W6 |$ E4 Q

  40. # D, z6 D. E4 B9 [8 P2 v4 A

  41. % v3 c# L& _8 S) b& U! S
  42.                 //Start DekaronServer.exe
    - G9 w# S0 a& U" F0 t: q$ X; G
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx8 A# \  Z9 Q1 x# m. S
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)
    * G) {3 E! c% @
  45.                         szCmdline,        // Command line
    ! o4 q+ d) e$ g7 M# j: Z$ R
  46.                         NULL,           // Process handle not inheritable
    0 C3 ~8 q9 l" ?8 x. o
  47.                         NULL,           // Thread handle not inheritable
    ) v. M- T3 R& w3 ]9 N) V; e: ^
  48.                         FALSE,          // Set handle inheritance to FALSE
    % f1 v5 O* r  ^2 @
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    ( U: h8 X$ Q4 {  r+ G* B5 U5 c$ g; j
  50.                         NULL,           // Use parent's environment block
    # O- P+ r) N% E) ?; x# T; i$ ^
  51.                         NULL,           // Use parent's starting directory 5 G- T5 S4 A8 \
  52.                         &si,            // Pointer to STARTUPINFO structure
    7 y6 {* L$ H" j0 L4 u- H/ z
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure* g( r9 L  C9 l4 R- \, `- n
  54.                 )
    * l) |1 J  O  H# _
  55.                 {
    7 H% ~( L) \/ ^* @+ q: d9 q* c/ a- t( L
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );0 @% p1 \" V" t3 f
  57.                         return 0;
    * a7 n. }$ X6 U& a8 L- x7 `
  58.                 }
    . P$ Y; ~5 \( k
  59.                 //Creating Process was sucessful
    $ A' {2 r# O9 a# q/ b
  60.                 else
    , D2 Y: X; |3 C$ M9 t7 I
  61.                 {
    + i! i  b3 N5 H$ k, D" s+ h" m
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    . o1 s7 s( h+ }$ d/ i) z- c
  63. $ i% d& j0 b6 v7 g) U  [3 i
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure1 Z; [  _+ C6 O* C
  65.                         dbge.dwProcessId = pi.dwProcessId;" X! \9 ?+ A5 M$ l2 ~
  66.                         dbge.dwProcessId = pi.dwThreadId;
    / \+ M# n) j& G: n0 {1 Z7 q; @

  67. / ^6 {6 A" z* I7 C* X/ M: Y9 W; G. q
  68.                         while(true) //infinite loop ("Debugger")
    3 l; f! c/ Q! Z9 J& @; i. k
  69.                         {
    7 Y' ~* ?% F! l) a4 X
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx
    ) J9 k1 g. z# `: a' R5 S6 d5 k

  71. 3 E" |- `- o/ J; n8 m. \$ t
  72.                                 /*
    ; x9 x/ n: m$ e  w2 r7 S+ P
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
* m5 j1 y! k5 r8 t( c  ]
7 U! g5 O: j4 [' r

% @& d7 W; d0 u
商业服务端 登录器 网站 出售

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-5 03:55 , Processed in 0.047187 second(s), 26 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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