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

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

[复制链接]

128

主题

142

回帖

2403

积分

管理员

积分
2403
金钱
861
贡献
1272
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献) + L& ~* d( o0 @" \; P) \$ T

3 Y/ h5 x1 I" S' c' Q: h3 U! Q! d虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。
  [& E( B, A& T" n0 i- A# o! e* Z( [  O8 G) v+ z
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。
    4 p+ c- j1 `& V" j) e3 s  y; \
  2. //2 Q) q* b8 v/ C# X3 _" Y2 U

  3. 1 v. B7 [  m) K  O% d4 R, |' k4 c
  4. #include "stdafx.h"
    ) w3 v$ q8 \# d3 x9 |+ F2 D
  5. #include <iostream>7 `0 a" d2 R+ N. v. R$ u
  6. #include <Windows.h>
    + V; G; V0 X, x
  7. #include <io.h>; q: a+ [3 J( Y

  8. 1 s! ]: _# P5 g) p' J
  9. 7 z4 [1 E( P4 Q& f4 ^2 D
  10. int _tmain(int argc, _TCHAR* argv[])- p1 M" b( z! D; _$ n, Q  ]9 d
  11. {
    1 F- {$ ~6 ]  x! y1 ]# i
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    2 I, Z8 ~* I, B1 J  m5 f
  13.   E. f) {( K  A# n/ a
  14.         //查看文件“DekaronServer.exe”是否存在
    ( U+ x! D+ ?' w
  15.         if(_access("DekaronServer.exe", 0) == -1)
    . W' \) j1 N! V7 W1 D; `
  16.         {& |7 N( e. P; i6 q
  17.                 printf("DekaronServer.exe not found!\n");
    4 Z2 K# X' W, ?$ K8 l
  18.                 printf("Program will close in 5seconds\n");( x! {6 }; [- I; x0 j( y0 ^
  19.                 Sleep(5000);' y# U7 ?% z3 e( J7 d
  20.         }
    + t) H* O4 G5 ]6 C
  21.         else: ~3 i% t5 o# w( h( d$ ~6 v
  22.         {2 h. f, V0 ?  G" P; m
  23.                 9 }! I) F  J( q/ N2 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  m5 `3 C, X) M+ ]! \* }( ~
  25.                 STARTUPINFO si;4 S: |, L! v: s( \$ b, v6 E

  26. 8 m. w+ G# S6 J% L% r7 d' b
  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
    4 E5 j2 i# r' T) \; ~! s1 q) S
  28.                 PROCESS_INFORMATION pi;
    : Z2 j9 i  a( ]# }  N& {5 v" j* z
  29. 9 [( p2 T5 d. r& V
  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
    : a' s% Y4 Y3 e9 i* }7 K0 S& B2 k
  31.                 DEBUG_EVENT dbge;
    - `- E9 g# d" h( T/ E! E
  32. $ A% i1 Y" e& [
  33.                 //Commandline that will used at CreateProcess
    7 ~; Q; H# P+ U7 D, E- x7 a
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));4 ?$ ~# K! k2 O9 p" T/ A

  35. 2 Q* k8 J8 d; g* P  s) a- e
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made); s* w! k2 c6 {% j/ v
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)1 s+ n- y* ]: t- n" G- B3 z
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)' P& h' p( B. ?% n' j
  39. 0 T, V5 {9 V- y: H7 K- ^

  40. ' f! V" w! a# A6 y+ r& B
  41. 9 n% J& w  R+ X+ l" y1 R/ u
  42.                 //Start DekaronServer.exe 5 U, B9 T( m; l0 z& E
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx& s- e. W' S( \
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)
    # v$ T2 _" I& v6 p  A5 l
  45.                         szCmdline,        // Command line
    ! S8 J( q/ t$ R% c) s' ?
  46.                         NULL,           // Process handle not inheritable
    7 n- u! o7 {) G% A1 R. Z! V
  47.                         NULL,           // Thread handle not inheritable
    + M* P* G4 S( M) w$ M% R7 T
  48.                         FALSE,          // Set handle inheritance to FALSE1 g- w9 t2 j( _. |5 i2 I0 s, m$ a
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx' j9 s" Q  t, G3 B1 i8 S3 L# a& x% j
  50.                         NULL,           // Use parent's environment block
    4 Z# m, h/ B" O# i2 {% O
  51.                         NULL,           // Use parent's starting directory ( e7 T7 p- k" d  Y( C( h- Q: m
  52.                         &si,            // Pointer to STARTUPINFO structure4 j: Y, ^2 Y1 I/ t8 r: P
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure. q9 c% z& ~" x( L$ }
  54.                 ) ! N( l5 d: |# K8 [: j8 Z# U
  55.                 {
    2 v0 V. K6 F, V" z2 C
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );4 M& V* q1 w0 ?) H* e+ s
  57.                         return 0;9 Z8 Y0 T9 b' }, ?$ q
  58.                 }
    2 L* i% ~1 e7 |+ ?
  59.                 //Creating Process was sucessful$ ^% n9 L# P) G1 T/ f" [2 |
  60.                 else
    . ~8 k% i6 x3 f% N
  61.                 {
    2 {/ l3 E5 x! k  Q; q# Y1 `
  62.                         printf("Sucessfully launched DekaronServer.exe\n");
    1 E8 U  o- i) I8 i6 |  w% m4 s

  63. 2 U, v  @/ l- T! [& |0 {
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    . f5 I. G% f/ y) ?, k; o
  65.                         dbge.dwProcessId = pi.dwProcessId;
    * Q  y0 E6 p! h: @+ d( J
  66.                         dbge.dwProcessId = pi.dwThreadId;
    3 s% O* m) y( a$ }1 Q

  67. % p0 G0 z: b  B/ h  z% W
  68.                         while(true) //infinite loop ("Debugger")
    9 p6 T; A1 V# t- ?6 G
  69.                         {
    * H' v$ s. A- O6 }- a! o
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx
    7 a7 E% o6 }+ W, L2 _

  71. 1 o4 r3 {# j& B5 P" I
  72.                                 /*
    , ^# g9 |4 S4 B8 t4 |
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码

- Q4 k  ~# @3 \$ v0 v  y
& z: r& {1 ]: ^# Z$ `% K
; ~" Q% v& d6 R8 o
商业服务端 登录器 网站 出售

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

回帖

411

积分

中级会员

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

本版积分规则

Archiver|手机版|小黑屋|EGameol

GMT+8, 2024-11-23 16:04 , Processed in 0.073345 second(s), 26 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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