coz i need something like ..... how it can freeze open logon xp to install program????? like this image:
Posted 14 January 2009 - 01:25 PM
Posted 14 January 2009 - 02:36 PM
Posted 14 January 2009 - 05:40 PM
Posted 14 January 2009 - 05:48 PM
Posted 14 January 2009 - 06:11 PM
Posted 14 January 2009 - 06:35 PM
Posted 15 January 2009 - 06:00 AM
@ECHO OFF
REM Example, how to look for CDROM-drive. Must have a file to identify in its root (like WIN51 or WPI.ico).
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=%cdrom%\wpi
REM Hide this command window.
%wpipath%\Tools\cmdow.exe @ /hid
REM Force resolution to needed size for wpi interface.
--start %wpipath%\Tools\VideoChanger.exe 1280x1024x32@85 -q
REM Font installation - the smooth and customizable way.
--start /wait %wpipath%\Tools\fonts\fontinstaller.exe
REM Calling the Unnatended aAdio Player
--Start %wpipath%\Tools\Music\uap2.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"
REM Cleaning up the desktop.
del /s/q "%userprofile%\desktop\*.lnk"
REM Rebooting the sytem to finalize the installation process.
--shutdown.exe -r -f -t 10 -c "WPI will now reboot in 10 sec..."
exit
:end
REM Force resolution to needed size for wpi interface. --start %wpipath%\Tools\VideoChanger.exe 1280x1024x32@85 -q
REM Cleaning up the desktop. del /s/q "%userprofile%\desktop\*.lnk"
Posted 15 January 2009 - 04:45 PM
This post has been edited by Kelsenellenelvian: 15 January 2009 - 04:45 PM
Posted 16 January 2009 - 10:38 AM