หมวดวิศวกรรม/เทคโนโลยียานยนต์ => ซอฟท์แวร์สแกนรถยนต์ => เครื่อง/โปรแกรมวิเคราะห์ปัญหา => อิเล็กทรอนิกส์ยานยนต์ => Hino DX => ข้อความที่เริ่มโดย: Auto Man ที่ 11 มิถุนายน 2569, 13:48:42

หัวข้อ: การติดตั้งใช้งานโปรแกรม Hino DX3
เริ่มหัวข้อโดย: Auto Man ที่ 11 มิถุนายน 2569, 13:48:42
    เป็นการแนะนำการติดตั้งใช้งาน โปรแกรม Hino DX3 



( <- คลิ๊กเพื่อแสดง/ซ่อนเนื้อหา)
หัวข้อ: การติดตั้งใช้งานโปรแกรม Hino DX3
เริ่มหัวข้อโดย: Auto Man ที่ 22 กรกฎาคม 2569, 06:56:16
Hino DX3 2025 1.25.1

ตรงนี้มีภาพ! แต่ท่านจะมองไม่เห็น , ท่านต้อง  สมัครสมาชิก หรือ ลงชื่อเข้าระบบ
 (https://postimages.org/)

    ดูในโฟลเดอร์ 3.1
มีไฟล์ install.bat

ตรงนี้มีภาพ! แต่ท่านจะมองไม่เห็น , ท่านต้อง  สมัครสมาชิก หรือ ลงชื่อเข้าระบบ
 (https://postimages.org/)

โค๊ด: [Select]
@echo off
CD /d %~dp0

echo.
echo Microsoft Visual C++ All-In-One Runtimes by W1zzard @ TechPowerUp
echo https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/
echo.
echo Installing runtime packages...

set IS_X64=0
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set IS_X64=1
if "%PROCESSOR_ARCHITEW6432%"=="AMD64" set IS_X64=1
if "%PROCESSOR_ARCHITECTURE%"=="ARM64" set IS_X64=1

if "%IS_X64%" == "1" goto X64

echo 2005...
start /wait vcredist2005_x86.exe /q

echo 2008...
start /wait vcredist2008_x86.exe /qb

echo 2010...
start /wait vcredist2010_x86.exe /passive /norestart

echo 2012...
start /wait vcredist2012_x86.exe /passive /norestart

echo 2013...
start /wait vcredist2013_x86.exe /passive /norestart

echo v14 (2015-2026) ...
start /wait vcredist_v14.x86.exe /passive /norestart

goto END

:X64

echo 2005...
start /wait vcredist2005_x86.exe /q
start /wait vcredist2005_x64.exe /q

echo 2008...
start /wait vcredist2008_x86.exe /qb
start /wait vcredist2008_x64.exe /qb

echo 2010...
start /wait vcredist2010_x86.exe /passive /norestart
start /wait vcredist2010_x64.exe /passive /norestart

echo 2012...
start /wait vcredist2012_x86.exe /passive /norestart
start /wait vcredist2012_x64.exe /passive /norestart

echo 2013...
start /wait vcredist2013_x86.exe /passive /norestart
start /wait vcredist2013_x64.exe /passive /norestart

echo v14 (2015-2026) ...
start /wait vcredist_v14.x86.exe /passive /norestart
start /wait vcredist_v14.x64.exe /passive /norestart

goto END

:END

echo.
echo Installation completed successfully

exit