
LLiLo
MemberContent Type
Profiles
Forums
Events
Everything posted by LLiLo
-
Hi, i'm having some issues on restarting the computer after the WPI finishes to install all my programs, it sometimes restarts before all the softwares are completely installed and also if i want to isntall only one aplication it will restar my computer as well, and it doesn't wait for the application to install successfully. Any help will be really apreciated.
-
i will try running the script once the WPI installation is finished. I'll let you know if it works.
-
It's not working, i have on WPI to run the SFX and it still doesnot deletes de $install folder
-
I would like to delete the folder C:\$Install, that my windows cd creates. So this is how I have my Cleanup.vbs Dim Remove :Remove = "%systemdrive%\$Install" Dim Fso :Set Fso = CreateObject("Scripting.FileSystemObject") WScript.Sleep 2000 If Fso.FolderExists(Remove) Then Fso.DeleteFolder(Remove) Fso.DeleteFile(WScript.ScriptFullName) The SFX code will be: ;The comment below contains SFX script commands Path=%Tmp%\ Setup=wscript.exe "%Tmp%\Cleanup.vbs" Silent=1 "wscript.exe"is the name of the SFX file
-
how do I add the script to dhe SFX? ;The comment below contains SFX script commands Path=%Tmp%\ Setup=wscript.exe "%Tmp%\Cleanup.vbs" Silent=1
-
Hi, I have a windows unattended CD, and all the applications install OK, but I want to delete the $Install folder on the C: Drive, I would like to know how I can run a script from my windows CD that will delete that folder. I tried one, but it won't delete the folder becasuse the script is running from that same folder.
-
Thank you for all your help, i'm currently installing some applications without any problems, i think the ones that are giving me some issueas are just for the silent parameters, but i will keep working on that, But REALLY THANK YOU!!!!
-
They match, I tried it with and without the space, currently I have them with the space, this is the print Screen of my install folder and the .cmd file, so you can see the file names match
-
After I removed the " before start I receive the firts error message, and I copied the code posted IcemanND
-
Using this code the command propmt box just disspears inmediatly, ECHO Installing .NET Framework v1.1 ECHO Please wait... "start "" /wait "%systemdrive%\install\Framework1.1\install.exe" ECHO Installing .NET Framework v2.0 ECHO Please wait... "start "" /wait "%systemdrive%\install\NetFramework 2.0\install.exe" /S /qb-! /f ECHO Installing Adobe Reader 7 ECHO Please wait... "start "" /wait "%systemdrive%\install\Adobe Reader 7\AdbeRdr708_en_US.exe" -p-s /v\"/qn\"" ECHO. ECHO Installing Office 2003 Professional ECHO Please wait... "start "" /wait "%systemdrive%\install\Office2003\setup.exe" TRANSFORMS=Unattended.MST /qb- ECHO. ECHO Quicktime ECHO Please wait... "start "" /wait "%systemdrive%\install\Quicktime\QuickTimeInstaller.exe" /S /V/qn ECHO. ECHO Installing Windows Media Player 11 ECHO Please wait... "start "" /wait "%systemdrive%\install\WMP11\MP11setup.exe" /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore" ECHO. ECHO Installing Sun Java ECHO Please wait... "start "" /wait "%systemdrive%\install\Sun Java\Sun Java.exe" [/L<language ID>] /s [ADDLOCAL=jrecore[,extra][,other_US] | ALL] [IEXPLORER=1] [MOZILLA=1] [INSTALLDIR=<drive>:\<install_path>] [REBOOT=Suppress] [JAVAUPDATE=0] [CUSTOM=1] ECHO. ECHO Installing Adobe ShockWave Player 10.2.0 ECHO Please wait... "start "" /wait "%systemdrive%\install\Adobe\Shockwave.exe" /s ECHO. ECHO Installing Adobe Flash Player 9.0.45 ECHO Please wait... "start "" /wait "%systemdrive%\install\Adobe\Flash.exe" /s exit
-
This is what i'm trying to use to install the applications ECHO Installing .NET Framework v1.1 ECHO Please wait... start /wait "%systemdrive%\install\Framework1.1\install.exe" ECHO Installing .NET Framework v2.0 ECHO Please wait... start /wait "%systemdrive%\install\NetFramework 2.0\install.exe" /S /qb-! /f ECHO Installing Adobe Reader 7 ECHO Please wait... start /wait "%systemdrive%\install\Adobe Reader 7\AdbeRdr708_en_US.exe" -p-s /v\"/qn\"" ECHO. ECHO Installing Office 2003 Professional ECHO Please wait... start /wait "%systemdrive%\install\Office2003\setup.exe" TRANSFORMS=Unattended.MST /qb- ECHO. ECHO Quicktime ECHO Please wait... start /wait "%systemdrive%\install\Quicktime\QuickTimeInstaller.exe" /S /V/qn ECHO. ECHO Installing Windows Media Player 11 ECHO Please wait... start /wait "%systemdrive%\install\WMP11\MP11setup.exe" /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore" ECHO. ECHO Installing Sun Java ECHO Please wait... start /wait "%systemdrive%\install\Sun Java\Sun Java.exe" [/L<language ID>] /s [ADDLOCAL=jrecore[,extra][,other_US] | ALL] [iEXPLORER=1] [MOZILLA=1] [iNSTALLDIR=<drive>:\<install_path>] [REBOOT=Suppress] [JAVAUPDATE=0] [CUSTOM=1] ECHO. ECHO Installing Adobe ShockWave Player 10.2.0 ECHO Please wait... start /wait "%systemdrive%\install\Adobe\Shockwave.exe" /s ECHO. ECHO Installing Adobe Flash Player 9.0.45 ECHO Please wait... start /wait "%systemdrive%\install\Adobe\Flash.exe" /s exit And just in case it is any help this is the winnt.sif ;SetupMgrTag [Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" AutomaticUpdates=yes [unattended] FileSystem=* UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes TargetPath=\WINDOWS UnattendSwitch="yes" KeyboardLayout="US-International" [GuiUnattended] AdminPassword= EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone=55 OemSkipWelcome=1 [userData] ProductKey= FullName="AF" OrgName="Home ComputerName=* [RegionalSettings] LanguageGroup=13,17,3,2,5,16,4,12,15,7,8,10,11,9,6,14,1 [identification] JoinWorkgroup=WORKGROUP [Networking] InstallDefaultComponents=Yes [Components] msmsgs=off msnexplr=off freecell=off hearts=off minesweeper=off pinball=off solitaire=off spider=off zonegames=off [GuiRunOnce] %systemdrive%\install\Apps.cmd
-
-
D:\WIN UE V2\$OEM$\$1\$Install\Framework 1.1 this is the complete path.
-
Hi everyone, I'm trying to make an Unattended Windows XP CD, but I can't seem to get the applications to install correctly. Until I managed to get working the windows installation, but when is time for the applications to install I get this error message: Windows cannot find'C:\install\Install\Framewor'. Make sure you typed the name correctly and try again. To search for a file, click start button, and then searh. I Get this message for every application I'm trying to install. Any help will be very much appreciated.!!!!!