anti1986 Posted January 14, 2009 Posted January 14, 2009 Can you learn me or anlysis Wpi.cmd code???......coz i need something like ..... how it can freeze open logon xp to install program????? like this image:
AlBundy33 Posted January 14, 2009 Posted January 14, 2009 Why do you think it's an wpi.cmd problem?First have look into Taskmanager too what tasks are running.if mshta.exe is running it is not a wpi.cmd problem if no cmd.exe is runnig it's not WPI problem,Do you have integratesome application in you image thatwill be installed at T13?Al
anti1986 Posted January 14, 2009 Author Posted January 14, 2009 no no ....not have problem !!!!!!!! maybe you dont understand me!!!!just my ask.......how is can wpi program or WPI.cmd do that??????can't enter to Xp desktop once time just when Wpi finishing install program........i need analysis wpi.cmd code(patch) to understand how???
Kelsenellenelvian Posted January 14, 2009 Posted January 14, 2009 OK, OK, SLOW DOWN.We are having a hard time understanding your question.Do you want your programs to install with NO display whatsoever?Do you want that as your background DURING installation?The bootscreen you show there comes with the last version of XPize is that what your looking for? What is your native language? Maybe we can get a translator for you.
anti1986 Posted January 15, 2009 Author Posted January 15, 2009 thank you!!!! about your question I'll answer you! Do you want your programs to install with NO display whatsoever?yes... Do you want that as your background DURING installation?yes........ The bootscreen you show there comes with the last version of XPize is that what your looking for? abt this question: forget my background just this a sample to show ""NO display whatsoever""
Kelsenellenelvian Posted January 15, 2009 Posted January 15, 2009 Then I am very sorry... WPI is not the solution for you.You will have to go old school and use plain runonceex from cd methodology.http://unattended.msfn.org/unattended.xp/view/web/59/WPI's installer windows cannot be supressed.
anti1986 Posted January 15, 2009 Author Posted January 15, 2009 thanx...................thats not what i need!!!!!!!!!!But the sulotion exist here::::with this code (mywpi.cmd) @ECHO OFFREM 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%\wpiREM Hide this command window.%wpipath%\Tools\cmdow.exe @ /hidREM Force resolution to needed size for wpi interface.--start %wpipath%\Tools\VideoChanger.exe 1280x1024x32@85 -qREM Font installation - the smooth and customizable way.--start /wait %wpipath%\Tools\fonts\fontinstaller.exeREM Calling the Unnatended aAdio Player--Start %wpipath%\Tools\Music\uap2.exeREM Special registry tweak needed.regedit /s "%wpipath%\common\wpi.regREM 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 endstart /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:endi need to understand whats does mean every code::::??????????????????????????????example::REM Force resolution to needed size for wpi interface.--start %wpipath%\Tools\VideoChanger.exe 1280x1024x32@85 -qother example REM Cleaning up the desktop.del /s/q "%userprofile%\desktop\*.lnk"
Kelsenellenelvian Posted January 15, 2009 Posted January 15, 2009 (edited) WOW that is a VERY OLD wpi.cmd file...@ECHO OFFREM 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%\wpiREM Force resolution to needed size for wpi interface. <---- This used to call the reschanger and set the WPI resolution.--start %wpipath%\Tools\VideoChanger.exe 1280x1024x32@85 -qREM Font installation - the smooth and customizable way. <-- Install fonts for system use.--start /wait %wpipath%\Tools\fonts\fontinstaller.exeREM Calling the Unnatended aAdio Player <---- NEVER seen this one in here but I assume it is to key up music during install--Start %wpipath%\Tools\Music\uap2.exeREM Special registry tweak needed. <--- This was to "fix" the XP\SP2 security box warnings on every installer that ran.regedit /s "%wpipath%\common\wpi.regREM 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 endstart /wait %windir%\system32\mshta.exe "%CD%\wpi.hta"REM Cleaning up the desktop. <--- This one would remove ALL shortcuts from the desktop...del /s/q "%userprofile%\desktop\*.lnk" You are using a VERY old WPI.cmd file ALL of this has been replaced by internal WPI functions... Edited January 15, 2009 by Kelsenellenelvian
anti1986 Posted January 16, 2009 Author Posted January 16, 2009 thank you very much........i know its very old........
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now