我用wpi製作一個安裝介面

Home Home
引用 | 編輯 fantasy119
2007-08-08 17:15
樓主
推文 x0
請問各位大大
我用wpi製作一個 ..

訪客只能看到部份內容,免費 加入會員



獻花 x0
引用 | 編輯 FDRGHGH
2007-08-14 13:38
1樓
  
1.光碟中新增一各$OEM$資料夾
2.$OEM$資料夾內新增CMDLINES.TXT 及 RUNONCEEX.CMD兩個檔案

CMDLINES.TXT內容為:
----------------
[COMMANDS]
"RunOnceEx.cmd"
----------------


RUNONCEEX.CMD內容為:
-------------------------------------------------------
@echo off

REM Finding CDROM driveletter
set tagfile=\WIN51
FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST "%%i:%tagfile%" set CDROM=%%i:

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY%\010 /VE /D "WPI" /f
REG ADD %KEY%\010 /V 1 /D "%CDROM%\WPI\WPI.cmd " /f

EXIT
--------------------------------------------------------
WPI.cmd內容為:
-------------------------------------------------------
@ECHO OFF

REM Example, how to look for CDROM-drive. Must have WPI.ico at the root of the CD.
for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\wpi.ico set CDROM=%%i:
echo Found CD-Rom as drive %CDROM%

REM Determine the WPI startup path.
REM if wpi should run off the cd the replace %~dp0 with %cdrom%.
set wpipath=%~dp0

REM Hide this command window.
REM cmdow.exe @ /hid

REM Force resolution to needed size for wpi interface.
REM start %wpipath%\Tools\VideoChanger.exe 1024x768x16@60 -q

REM Font installation - the smooth and customizable way.
REM start /wait %wpipath%\Tools\fonts\fontinstaller.exe
REM Special registry tweak needed.
regedit /s "%wpipath%\common\wpi.reg

REM Make WPI directory the current directory.
for /f "delims=: tokens=1" %%i in ("%wpipath%") do %%i:
cd "%wpipath%"

REM Start WPI and wait for its end
start /wait %windir%\system32\mshta.exe "%CD%\wpi.hta"

exit
-------------------------------------------------------
WPI.cmd與wpi.hta放同一資料夾內

獻花 x0
引用 | 編輯 swbchen
2008-02-10 20:10
2樓
  
vista 適用嗎 ???

獻花 x0