-
Disable the Windows First Time Wizard
if youre talking about the welcome screen add UnattendSwitch="yes" to the [unattended] section in your winnt.sif file more info here: http://unattended.msfn.org/global/reference.htm
-
regular & Unattended Installations
i just test it, and it works perfect! now im closer to finish my dvd thanks Incroyable HULK
-
regular & Unattended Installations
i follow the multi-boot dvd guide and make a regular and an unattended installation for winxp pro. the unattended works perfect, but im having a problem with my regular installation. when i choose to make a regular inst., at T-12 it executes cmdlines.txt, so it run my RunOnceEx.cmd and my regtweaks so all my programs start to install as if it where an unattended installation. i have allready checked and double-checked the pro1.dat, pro2.dat, and the two setupldr.bin in each boot folder to be sure everything point to the right place. i also made a winnt.sif file for my regular installation so it enter the key, name and organization (yeah, its not a complete regular inst. anymore), and set OemPreinstall and OemSkipWelcome to "No" but the problem continue here's my "regular" winnt.sif: ;SetupMgrTag [Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=No TargetPath=\WINDOWS KeyboardLayout="Espa¤ol" [GuiUnattended] AdminPassword=* EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone=30 OemSkipWelcome=0 [UserData] ProductID=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX FullName="Usuario" OrgName="N/A" ComputerName=* [Display] BitsPerPel=24 Xresolution=800 YResolution=600 [TapiLocation] CountryCode=52 Dialing=Tone AreaCode=5 [RegionalSettings] LanguageGroup=1 SystemLocale=00000c0a UserLocale=0000080a InputLocale=080a:0000080a [Identification] JoinWorkgroup="Grupo de trabajoDominio" [Networking] InstallDefaultComponents=Yes i found this post were prathapml said: Any other ideas on how to stop cmdlines.txt to being executed in my regular installation?
-
How to compress Winxp9in1?
i had the same problem, so i convert to NTFS, and now i can make my iso without any trouble... maybe its that?
-
Installshield And %programfiles%
i found on a old post a way to use %systemdrive% on a setup.iss answer file it uses a batch like this: parse.bat @echo off echo Starting... echo . echo Wait... echo . echo Wait type %systemdrive%\Photoshop\setup.txt|%windir%\sed.exe 's/\%%systemdrive\%%/%systemdrive%/g'>%systemdrive%\Photoshop\setup.iss what you have to do is put szDir=%systemdrive%\Archivos de programa\Adobe\Photoshop CS in your setup.ss, and then rename it to setup.txt also, you need to put the sed.exe file in the windows directory sed.exe it works perfect for me with photoshop, dreamweaver, and flash i use it like this in my RunOnceEx.cmd : REG ADD %KEY%\032 /VE /D "Adobe Photoshop CS" /f REG ADD %KEY%\032 /V 1 /D "%CDROM%\software\Photoshop\Photoshop.exe" /f REG ADD %KEY%\032 /V 2 /D "%CDROM%\software\Photoshop\parse.bat" /f REG ADD %KEY%\032 /V 3 /D "%systemdrive%\Photoshop\setup.exe -s" /f i made a sfx for the photoshop folder, it decompress to the HD, run the .bat, then run setup.exe -s, and at the end with my cleanup.cmd erase the photoshop folder its better explained here, but its in french Laboratoire des Technologies Microsoft - Supinfo Paris maybe this is what your looking for?
-
Silent install fonts ?
thanks totoymola, it works
-
Silent install fonts ?
ok, i finally got it to work...i dunno if its the right or the easyest way, but this work for me: made 2 sfx, one to copy my fotns to the fonts directory, and another sfx with the fonts, fontsinst.exe, and fontsinst.inf to decompress to a temporary folder, and then run fontinst.exe /f fontinst.inf. All that in my RunOnceEx.cmd thats it, and it work perfectly...
-
Silent install fonts ?
sorry, but i still dont get it using the fontinst.exe method; i need to put in a sfx all the fonts, fontinst.inf, and fontinst.exe, make the sfx extract everything to the fonts folder in windows and then call the command to register the fonts? if so: what should be the comment in the sfx? i run it in the runonce.cmd, or in the cmdlines.txt ?
-
Winamp Plug-in
sorry for posting in the wrong forum anyway, thanks Alanoll, you point me in the right direction the plugin only copy a folder and a file to the winamp plugin folder, so i made a sfx to silently install them, and it works perfect. thanks for the help
-
Winamp Plug-in
hi everyone! well, im trying to install a winamp plug in (dimin hotkeys). so far, i can install it silently, but at the end a dialog pops up asking if i want to configure it now. this is the code that im using: REG ADD %KEY%\055 /VE /D "Winamp 5.08d Pro" /f REG ADD %KEY%\055 /V 1 /D "%CDROM%\software\Winamp5\Winamp5.msi /qn INI="%CDROM%\software\Winamp5\winamp5pro.ini"" /f REG ADD %KEY%\055 /V 2 /D "%CDROM%\software\Winamp5\DiminHotkeys.exe /S" /f REG ADD %Key%\055 /V 3 /D "taskkill /F /IM DiminHotkeys.exe" /f but it doesnt work , the dialog stays open, and when i close it, a command window opens and then closes. any ideas?