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

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

[复制链接]

134

主题

166

回帖

2947

积分

管理员

积分
2947
金钱
980
贡献
1667
注册时间
2023-11-3
QQ
发表于 2023-12-9 17:54:37 | 显示全部楼层 |阅读模式
SourceCode_Win7DKLauncher.txt (3.77 KB, 下载次数: 0, 售价: 5 贡献) / R& a5 D; H9 a" N# H
4 c$ b4 X1 A! K& q# j& L" F
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。
, d& p1 _3 E$ Z  H* i
% O* h: Q. j7 {8 B0 [4 }3 Y0 l
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。1 z  m9 S9 k' J" M4 }
  2. //
    ! h0 L9 Q% z* h! b: {( K
  3. 9 h2 Q6 V& i! [* [& x  M+ ~
  4. #include "stdafx.h"
    2 \6 B$ d: a0 w$ S9 U
  5. #include <iostream>
    & b5 o0 k  D, e5 e
  6. #include <Windows.h>5 X8 @/ J- @1 X' `
  7. #include <io.h>
    ; E  ?2 U1 d3 d& n8 b
  8. : M, r) x2 }7 d) W; o  h8 R

  9. - u  d8 ?4 ~! s4 D. F0 y2 K3 v
  10. int _tmain(int argc, _TCHAR* argv[])
    2 z8 |# `( ?1 T) i
  11. {1 s5 z. f; ]  N+ p% ~
  12.         printf("Dekaron-Server Launcher by Toasty\n");6 \# C. G! B& F$ v, X
  13. 1 d0 N3 e  I3 @  \. B: |
  14.         //查看文件“DekaronServer.exe”是否存在
    + I9 O( S; x4 `- J# B
  15.         if(_access("DekaronServer.exe", 0) == -1)
    ( H  h, K- C, b$ f* F$ A; I
  16.         {
    . |- p+ k$ V( U2 e6 U7 p* {
  17.                 printf("DekaronServer.exe not found!\n");7 W% ]& V; o3 `$ D3 z4 j; j
  18.                 printf("Program will close in 5seconds\n");
    " s% k* G2 |" l6 _2 |
  19.                 Sleep(5000);, ]2 f2 v" O' W* U: f# D* _0 a
  20.         }
    * [* ~' g$ J0 D2 D% _9 }# A
  21.         else! U2 g* I6 a" T! |% d
  22.         {
    ( W, N- m/ `3 {* u4 j& W% ~0 s/ W
  23.                
    : U# l- D: p: s( 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
    + J5 v$ \$ Z1 R3 C
  25.                 STARTUPINFO si;: }1 k! f- D# B9 d9 f0 L

  26. # B/ A+ u  Z: ~$ u6 s* G
  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).aspx8 A0 c/ l' F+ T/ M
  28.                 PROCESS_INFORMATION pi;7 I% g9 H" ]- O$ Y2 K

  29. , |9 |9 r) B1 Y2 E: x0 p$ Y0 E
  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).aspx9 B2 _* R! _8 o! o' M) L  \/ J
  31.                 DEBUG_EVENT dbge;
    3 ~- l' ~5 Q; \* L; p% G; l5 j
  32. ' \1 A- a: ^* I3 X/ ?
  33.                 //Commandline that will used at CreateProcess; D1 ~3 {8 ]) L8 j! I. G/ E1 a+ \
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));3 d7 x3 |/ H# a0 u# R

  35. 3 }! L) ~, m+ Q
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)! E9 W8 q- ~6 Y3 Z) d
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)' ?; S7 q" I7 O/ n/ e% w0 e8 M( j
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)+ K8 ^% E+ ?4 q( M
  39. + P& z" F1 t; ~# ~) j$ |

  40. 6 z$ e/ ^- Y0 A+ G, o6 j
  41. " l! P# G; k+ p: C7 z# U5 m
  42.                 //Start DekaronServer.exe
    8 R8 s2 _, d: S
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx( X1 v" E- A  s" P: @
  44.                 if( !CreateProcess( NULL,   // No module name (use command line), z2 {/ e9 L& ?( D9 E2 L
  45.                         szCmdline,        // Command line8 I$ k6 q* O7 f/ \9 V* O
  46.                         NULL,           // Process handle not inheritable
    " l6 F, e. D& b
  47.                         NULL,           // Thread handle not inheritable
    ( b& o) j6 F6 C4 S- {
  48.                         FALSE,          // Set handle inheritance to FALSE
    ( z! _9 A0 h8 ~1 f% @
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
    5 G% O9 C$ k5 A6 W8 G5 I1 A8 R
  50.                         NULL,           // Use parent's environment block: V! s" W4 ~/ }' Q
  51.                         NULL,           // Use parent's starting directory
    6 M1 U; m: K/ |( o" c  [) f
  52.                         &si,            // Pointer to STARTUPINFO structure
    & h+ C0 b5 e. W/ c0 w$ K
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure
    3 M+ u* `0 a  t
  54.                 ) 0 {; ]  ^' E$ o( x+ v
  55.                 {
    " t* I" I$ g4 q4 `, C
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );! z. W# H0 S+ w2 U7 Y
  57.                         return 0;
      c  {) c" Z. Z, P) f: @( n
  58.                 }3 P2 Q0 C9 C- t. b
  59.                 //Creating Process was sucessful5 h$ I% x" Y( x7 {4 b
  60.                 else" O6 V  j2 T" g2 [* h
  61.                 {9 h$ j. R/ W  I$ w; J8 W
  62.                         printf("Sucessfully launched DekaronServer.exe\n");" k& l6 k' `, @; T4 H; u! k1 O+ M6 U
  63. ' O- S% ?4 _/ b$ }4 O6 D% a  b0 y" m
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    3 o8 G/ j* a, v  g0 k
  65.                         dbge.dwProcessId = pi.dwProcessId;
    5 s1 V1 T3 Y3 B& B5 N$ `
  66.                         dbge.dwProcessId = pi.dwThreadId;2 I) `0 k( C& S4 ~) H1 {( i
  67. 6 o  n) I: j' V) T5 x
  68.                         while(true) //infinite loop ("Debugger")
    . X% f+ j( [4 V
  69.                         {
    / h" M) \" w" E
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx2 c4 t9 K( [+ R. n! g; {

  71. + y+ ]3 b, a- R. u6 _. O
  72.                                 /*
    $ c: Z- v( V5 C5 i; X
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
; V/ W. P' W# {+ P# I0 m5 {2 v
& C' M: {& \0 p
8 @: h9 p" `' N* c( Z
商业服务端 登录器 网站 出售

8

主题

228

回帖

783

积分

高级会员

积分
783
金钱
451
贡献
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

主题

228

回帖

783

积分

高级会员

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

2

主题

81

回帖

549

积分

中级会员

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

本版积分规则

Archiver|手机版|小黑屋|EGameol

GMT+8, 2025-1-18 16:06 , Processed in 0.059243 second(s), 25 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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