找回密码
 立即注册
查看: 2262|回复: 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 贡献) # @+ y6 e$ ?6 g* T- n
$ W8 U% L+ ^' Z
虽然很多朋友有了成品的工具,但是我发的是源代码。。。需要的可以拿去研究研究。。4 }3 z$ F1 }: A1 r+ q
7 {6 g$ P# a& `1 w( F3 e
  1. // Win7_DKLauncher_v1.0 : 定义控制台应用程序的入口点。2 Y) f; ^$ D; _& g$ f
  2. //
    " h% l, Q: [1 A/ x, t8 Q

  3. 7 o0 K# r1 z" ~! F7 C
  4. #include "stdafx.h"
    0 l4 n" x/ t, o8 r* `% A
  5. #include <iostream>
    ; {( ^# k. x, d. X- P1 n& m" j5 R" E
  6. #include <Windows.h>
    % t- e9 I* s% w  e& ?/ q) A
  7. #include <io.h># a% `& J: ~  J# Z" S" ?5 `& h4 k! g

  8. ; t( ^% X" w3 t

  9. + C8 ?+ X, c6 v9 u. V
  10. int _tmain(int argc, _TCHAR* argv[])$ d9 S6 O( C+ o, F& ~
  11. {
    7 G* H# L0 O5 i( o8 |
  12.         printf("Dekaron-Server Launcher by Toasty\n");
    ( C" m$ }0 d; f

  13. - _6 l  |: ^. u* Y# ^
  14.         //查看文件“DekaronServer.exe”是否存在( {7 K4 m  S8 o8 C
  15.         if(_access("DekaronServer.exe", 0) == -1)8 ?& D& y) C" k+ j4 C/ q, b. y
  16.         {
    + _/ l: ]/ s8 W9 T8 L% r3 D
  17.                 printf("DekaronServer.exe not found!\n");
    , j7 e8 d: W5 H
  18.                 printf("Program will close in 5seconds\n");3 m  h& a% z& ~1 O' K( p- D
  19.                 Sleep(5000);
    % G) u% z% Z% K: w/ x7 m2 A  R% X
  20.         }1 a* z* t9 Z& r9 R' D. l
  21.         else
    ( ~  `  P* R+ ~3 x
  22.         {. n: r# q& x, [/ t* W
  23.                 - s: }5 K7 K5 [% `" S
  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
    6 M9 k8 t* a5 C4 R4 N
  25.                 STARTUPINFO si;& A; \4 l# v, |, _. C$ N
  26. 5 A5 j0 T. J/ k. O
  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
    0 F# l: |# O( K  j
  28.                 PROCESS_INFORMATION pi;
    8 E; G- P  B9 L- ~4 M7 Y
  29. # t4 Q4 r# j* Q2 C" I
  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
    % h4 M# K0 p9 a( \1 K) i
  31.                 DEBUG_EVENT dbge;) A9 v; h  M* x+ c6 J% q. o% _& {
  32. ( D1 Y  d. I( E
  33.                 //Commandline that will used at CreateProcess
    % o( G) P- e9 g9 ]
  34.                 LPTSTR szCmdline = _tcsdup(TEXT("DekaronServer.exe"));
    . }  x8 x9 ]5 l) o# F' W4 s; I/ F
  35. 5 a4 S7 G: q) m& b
  36.                 ZeroMemory( &si, sizeof(si) ); //Set memory of the startupinfo structure to Zero (because no initialization was made)/ ^/ G/ }  V& D: \
  37.                 si.cb = sizeof(si); //Size of the Structure (see msdn)
    8 p# e- H1 a  a9 j4 w4 z
  38.                 ZeroMemory( &pi, sizeof(pi) ); //Set memory of the process_information structure to Zero (because no initialization was made)
    2 P( V$ ^' ?, j$ [

  39. ) H, F* Q5 ~" y0 b1 T
  40.   u! g2 G2 o) E3 P  p; P' b

  41. & X9 F" g2 C) Y7 H
  42.                 //Start DekaronServer.exe
    2 u8 N* _* F# ]1 x3 R
  43.                 //More info fore CreateProcess function at: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx! f5 F; q% d/ G
  44.                 if( !CreateProcess( NULL,   // No module name (use command line)
    ! c/ ]9 p) T6 G9 A
  45.                         szCmdline,        // Command line4 k6 n; a1 l( a" s( E8 l
  46.                         NULL,           // Process handle not inheritable
    + m- M3 i% Y, v* E8 d
  47.                         NULL,           // Thread handle not inheritable, X* L. r, R% D# A/ O& c5 \% h
  48.                         FALSE,          // Set handle inheritance to FALSE
    / B9 A; }: K$ Q+ U( _7 i# _
  49.                         DEBUG_PROCESS,  // Enables Debugging for the started Process http://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx. U" k: b9 o* z2 {& X& I
  50.                         NULL,           // Use parent's environment block
    # p) L  z( I' j
  51.                         NULL,           // Use parent's starting directory
    + c8 f# a3 U% `- ?2 B: Q
  52.                         &si,            // Pointer to STARTUPINFO structure: r( n+ M; g, C+ v4 h
  53.                         &pi )           // Pointer to PROCESS_INFORMATION structure& d4 w& a' T- ^; a& q; j" e
  54.                 ) 9 t0 r: s& j5 D0 n
  55.                 {: M- a, e2 X# L* [, [
  56.                         printf( "CreateProcess failed (%d).\n", GetLastError() );; d7 Y8 V! E( n& ?6 [
  57.                         return 0;5 X+ a* ~% O+ e- g3 y
  58.                 }9 |5 R1 d7 c+ p, S" k* H
  59.                 //Creating Process was sucessful
    $ U9 g% W+ ]3 n$ e' u) m) w
  60.                 else
    1 e) ^; R* b! _9 E# {" o
  61.                 {  l& P5 F/ H; H2 [8 e3 O
  62.                         printf("Sucessfully launched DekaronServer.exe\n");6 B+ s4 K( X( e

  63. 8 X' U3 W7 ^! m. C3 H
  64.                         //Write ProcessId and ThreadId to the DEBUG_EVENT structure
    * B; J9 X% |, {2 t! I  m' Z
  65.                         dbge.dwProcessId = pi.dwProcessId;
    5 m+ _8 G5 n6 K0 y7 j
  66.                         dbge.dwProcessId = pi.dwThreadId;: X1 ~3 f2 E$ Y0 x9 S" r6 b

  67. * `% z0 s% o% f/ A. e6 d! n# w6 L
  68.                         while(true) //infinite loop ("Debugger")
    2 u, n6 F1 o5 q* ^  f& a
  69.                         {
    ! P) V; `+ T6 a. c
  70.                                 WaitForDebugEvent(&dbge, INFINITE); //Wait for an debugevent to occur http://msdn.microsoft.com/en-us/library/windows/desktop/ms681423(v=vs.85).aspx1 b# W3 U0 X. V( o+ E

  71. 2 F. l0 @- C0 Q# Z- h  e3 @0 L" ]
  72.                                 /*0 N, v3 d3 C; R: o% {7 V0 D
  73. <blockquote>通常,您必须在此处处理不同的调试事件(这些事件被写入dbge.dwDebugEventCode),
复制代码
* h4 c' x7 g" w3 U- f
; D* w3 f* f) U" t$ C0 S: r

' o# W+ Y8 w/ Z3 S: b- ~" W
商业服务端 登录器 网站 出售

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:27 , Processed in 0.063937 second(s), 26 queries .

Powered by Discuz! X3.5

Copyright © 2001-2020, Tencent Cloud.

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