มันมีอยู่ใน Driver Pack ครับ

อยากรู้ว่ามันหมายความว่ายังไง แล้วทำไม Antivirus ต้องมองว่ามันเป็นไฟล์ไวรัสด้วย ไฟล์ชื่อ init.cmd และ onexit.cmd
อยู่ใน bin >> Tools
และถ้าไม่มีไฟล์เหล่านี้มันจะลงไดร้ส์เวอร์ได้สมบูรณ์มั้ยครับ
set cwd=%~dp0

:: cmd arguments poarsing
shift

:argsloop
if not [%1]==[] (
  if "%~1"=="--sfx" (
    set "executeFileName=%~2"
    shift
  )
  shift
  goto :argsloop
)

:: clientid.js
if defined executeFileName (
  if not exist "%cwd%\modules" mkdir "%cwd%\modules"
  echo var executeFileName="%executeFileName%"; > "%cwd%\modules\clientid.js"
)

:: Registry patching
call:reg import %cwd%\patch.reg

goto :eof

::----------------------
::-- Helper functions --
::----------------------

:reg
reg %* >nul 2>&1
if %PROCESSOR_ARCHITECTURE% == x86 (
  if defined PROCESSOR_ARCHITEW6432 (
    :: x32 process on x64 OS - call native x64 reg.exe
    %windir%\sysnative\reg.exe %* >nul 2>&1
  )
) else (
  :: x64 process on x64 OS - call x32 reg.exe
  %windir%\syswow64\reg.exe %* >nul 2>&1
)
goto :eof
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่