Content Type
Profiles
Forums
Events
Everything posted by ckislam
-
Unattended switches for Hotfixes
ckislam replied to ckislam's topic in Unattended Windows 2000/XP/2003
This works great net stop srservice hotfix-kb123.exe -u -z -o -n net start srservice -
Unattended switches for Hotfixes
ckislam replied to ckislam's topic in Unattended Windows 2000/XP/2003
as you said, i want to disable creating a restore point. because each hotfix i install, creates a system restore point, which takes too much time during the installation. I will try it with the RegistryKey you gave me. I suppose it will work by stopping the System Restore before the installation and then enabling it again. Thanks -
Hello, I am using these switches for hotfixes unattended setup since win2k -u Unattended mode -f Force other programs to close when the computer shuts down -n Do not back up files for uninstall -o Overwrite OEM files without prompting -z Do not restart when installation is complete -q Quiet mode (no user interaction) I'm missing the switch to disable the system restore. do you know it? i couldn't find it anywhere!
-
i think you have to remove the shortcut with the del command. but this iss file worked only for the 4.0 version. I don't know why it doesn't work anymore for 4.1 !!!
-
perfect thanks.
-
@ [Dexter] Thats Great.. thanks a lot.. exactly what i was looking for. do you know how to set the icon of the shortcut?
-
hello, i dont want want to download a command to generate my shortcuts. i was asking how to create shortcuts with the usual windows commands from the console. is it possible ? thanks
-
is there a way to create shortcuts without downloading an extra command?
-
alright, thanks for the notice. actually i was planning to make the offline packages generate themselves on the users computer. i already started developing the scripts for this feature. it is one of the best features i think. anyhow.. i hope by the end of this month, it will be available for use.
-
InfraRecorder Silent Setup has been added! This is the best Nero alternative i have ever found.
-
[Release] Adobe Shockwave Player 11.0.0.465
ckislam replied to Shark007's topic in Application Installs
When I use this: http://fpdownload.macromedia.com/get/shock...taller_Slim.exe /S i still get a an annoying notification about installing Google Toolbar.. Do u know how to avoid it ??? thanks -
@nutral thanks for response Only one Offline File, would be TOO big, people dont need all the applications at once. But I am planning to make offline packages for each application. this could be generated by adding a certain switch and the application name. i think this is more usefull. I will tell you when it is done.
-
100% Clean Certificate for TGUP http://www.softpedia.com/progClean/TGUP-Clean-74192.html
-
TGUP - The Great Unattended Project Online Unattended Installer The Solution for Windows Silent Software Installation. The Great Unattended Project - TGUP is an executable Package that downloads and installs latest versions of commonly-used freeware silently in sequence and sorts them into the startmenu. based on WIHU screenshot: For Download and more info visit: http://tgup.sourceforge.net
-
TortoiseSVN Silent Setup has been added
-
and My Favorite: Notepad++ Silent Setup has been added
-
anybody knows silent switch for ICQ 6 ?
-
[Release] Adobe Shockwave Player 11.0.0.465
ckislam replied to Shark007's topic in Application Installs
I use these installers and switches in my TGUP Script Current Flash Player for Internet Explorer http://download.macromedia.com/get/flashpl...er_active_x.msi /qb Current Flash Player for Mozilla, etc. http://download.macromedia.com/get/flashpl...ayer_plugin.msi /qb Slim Shockwave Player: http://fpdownload.macromedia.com/get/shock...taller_Slim.exe /S -
iTunes Silent Setup and XnView Silent Setup have been added.
-
Windows Media Player 11 silent setup has been added
-
TGUP 0017 has been released! Support for Windows 2000/XP/VISTA Possibilty for choosing custom list of applications to install. and more options. Run TGUP with /h for more info tgup0017.exe /h Please test the new release and tell me you opinion. Thanks
-
Avira AntiVir PersonalEdition Classic Silent Setup has been added. I claim this to be the only silent installer of Avira AntiVir in the World!
-
Google SketchUp silent setup has been added.
-
I found them here, here is the code i used for the batch file in TGUP: set ans="%temp%\setup.iss" rem genareate ans_file echo [InstallShield Silent]>%ans% echo Version=v7.00 >>%ans% echo File=Response File>>%ans% echo [File Transfer]>>%ans% echo OverwrittenReadOnly=NoToAll>>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-DlgOrder]>>%ans% echo Dlg0={3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdWelcome-0 >>%ans% echo Count=5 >>%ans% echo Dlg1={3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdLicense2Rtf-0 >>%ans% echo Dlg2={3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SetupType2-0 >>%ans% echo Dlg3={3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdStartCopy2-0 >>%ans% echo Dlg4={3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-AskOptions-0 >>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdWelcome-0]>>%ans% echo Result=1 >>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdLicense2Rtf-0]>>%ans% echo Result=1 >>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SetupType2-0]>>%ans% echo Result=304 >>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-SdStartCopy2-0]>>%ans% echo Result=1 >>%ans% echo [Application]>>%ans% echo Name=Google Earth>>%ans% echo Version=4.0.2737 >>%ans% echo Company=Google>>%ans% echo Lang=0009 >>%ans% echo [{3DE5E7D4-7B88-403C-A3FD-2017A8240C5B}-AskOptions-0]>>%ans% echo Result=1 >>%ans% echo Sel-0=0 >>%ans% rem end answer file echo Installing Google Earth.. echo. start /wait "Google Earth Setup" "GoogleEarth.exe" /s /f1"%ans%" /SMS