Jump to content

ckislam

Member
  • Posts

    137
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Egypt

Everything posted by ckislam

  1. New Year and New Future Plans for TGUP: I'm planning in the near future to add a possibility for users to integrate their own Applications/Installers in TGUP. An Extra Tool will published for that purpose, which intends to make the creating of the Application List (Source) easier. The Lists or Sources can be on a local drive, network share or an internet URL. Who likes can publish his own source for other users. Similar to the Cydia (iPhone) method. Hope it finds satisfaction
  2. TGUP Now Detects The running Operating System and picks the suitable Installers for it. With Extended OS Support Compatible Apps are available for Windows XP, Vista, 7 both in 32-bit and 64-bit
  3. just a silent switch.. what is that switch for imdisk? thanks
  4. as an alternative, u can try the disable autorun registry tweak i wrote. it disables all autorun actions when double clicking on drive icons. this helped a lot of people to avoid spreading of viruses. download here: Tweak_DisableAutoRun
  5. Update: Added New Apps: CCleaner, Sysinternals/Microsoft Autoruns, Process Monitor, Process Explorer Repo Updates on the first page of the topic
  6. iTunes 9.0.2 Silent Setup Without QuickTime Contains: iTunes, Apple Mobile Device Support, Apple Application Support Download Here: http://www.4shared.com/file/146514337/71c4...iTunes_902.html Source: TGUP Repo
  7. Nero Start Smart 9.4.12 Silent Here: http://www.4shared.com/file/142180786/f920...t_9412_ENG.html
  8. BitComet 1.15 Silent Setup Google Earth 5.0.11733.9347 Silent Setup ImgBurn 2.5.0.0 Silent Setup InfraRecorder 0.50 Silent Setup Internet Explorer 8 Silent Setup IrfanView 4.2.5 Silent Setup Nero StartSmart 9.4.12 Silent Setup Opera 10.0 Silent Setup Picasa 3.5.79.69 Silent Setup RealPlayer 12.0.0.319 Silent Setup TeamViewer 4.1.6911 Silent Setup Thunderbird 2.0.0.23 Silent Setup Tweak DisableAutoRun Silent Setup Unlocker 1.8.7 Silent Setup
  9. TGUP Repository for Silent Installers has been released. Download your favourite Silent Installers directly from here: http://tgup.net/repo Feedback - App Requests Here are some direct Links of Silent Installers from the repo: All the following Silent Installers have been created using TGUP if u need other languages just tell me 7-zip 4.65 Silent Setup Adobe Acrobat Reader 9.2 Silent Setup Adobe Flash Player 10.0.32.18 Silent Setup AVG Free 9.0 Silent Setup Firefox 3.5.3 Silent Setup iTunes 9.0.1 Silent Setup Java 6.0.160 Silent Setup K-Lite Codec Pack 5.2 Silent Setup Notepad++ 5.5.1 Silent Setup QuickTime 7.64.17.73 Silent Setup Skype 4.0.1.179 Silent Setup Windows Live Messenger 14.0.8089.726 Silent Setup More Apps can follow on request
  10. Replace Special Characters by query to readable characters in batch files I had the same issue recently when trying to retrieve the common programs path from the registry of a german windows. the retrieved path couldn't be readable. Here is how I solved it: @echo off SET LS=HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders SET CS=HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders for /f "tokens=3* delims= " %%i in ('reg query "%LS%" /v "Common Programs"') do CALL :SPCHARS "ComProgs" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%LS%" /v "Common Startup"') do CALL :SPCHARS "ComStart" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%LS%" /v "Common Desktop"') do CALL :SPCHARS "ComDesk" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%LS%" /v "Common AppData"') do CALL :SPCHARS "ComAppD" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%CS%" /v "AppData"') do CALL :SPCHARS "AppD" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%CS%" /v "Programs"') do CALL :SPCHARS "Progs" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%CS%" /v "Startup"') do CALL :SPCHARS "Start" "%%j" for /f "tokens=3* delims= " %%i in ('reg query "%CS%" /v "Desktop"') do CALL :SPCHARS "Desk" "%%j" ECHO "%ComProgs%" PAUSE EXIT REM MOVE THIS TO THE END OF YOUR BATCH FILES :SPCHARS REM Replaces Special Characters to Readable Characters in Batch File REM VAR 1=Variable Name to SET, VAR 2=Variable Value set t= FOR /F %%i in ("%~2") DO SET t=%~2 SET t=%t:ä=„% SET t=%t:á= % SET t=%t:à=…% SET t=%t:é=‚% SET t=%t:è=Š% SET t=%t:í=¡% SET t=%t:ì=�% SET t=%t:ö=”% SET t=%t:ó=¢% SET t=%t:ò=•% SET t=%t:ü=�% SET t=%t:ù=—% SET t=%t:ú=£% SET t=%t:ß=á% SET t=%t:ç=‡% set %~1=%t% set t= GOTO :EOF EXIT For delims I used [TAB] followed by [sPACE]
  11. Here Updated Switches for Opera 10: /L1033 /S /V"/qb ALLUSERS=1 CREATE_DESKTOP_ICON=1 CREATE_DESKTOP_ICON_REG=0 CREATE_DESKTOP_ICON_REG_USR=0 CREATE_QUICKLAUNCH_ICON=0 CREATE_QUICKLAUNCH_ICON_REG=0 CREATE_QUICKLAUNCH_ICON_REG_USR=0 CREATE_STARTMENU_ICONS=0 CREATE_STARTMENU_ICONS_REG=0 CREATE_STARTMENU_ICONS_REG_USR=0 MULTI_USER_SETTING=1" english 1033 german 1031 french 1036 italian 1040 spanish 1034
  12. I found it: languages and lang-ids here: http://www.opera.com/download/languagefiles/
  13. Where can I get a list of all supported language IDs for that switch: INSTALLER_LANGUAGE=[lang-id] I need: Spanish, Italian, German , English, French, Arabic, all other supported langs. Thanks
  14. Make it simple (in one line) FOR %%i in (2000 2002 2003 Vista 2008 7) DO NET CONFIG WORK|Find "%%i">Nul 2>&1&&(Set "HostOS=%%i"&ECHO %HOSTOS%)
  15. May be you should try this: ver /? Displays the Windows version I get this: at XP: Microsoft Windows XP [Version 5.1.2600] at 7: Microsoft Windows [Version 6.1.7600] Also stated at microsoft documentation: http://www.microsoft.com/resources/documen...r.mspx?mfr=true How did you find out that it detects the command Interpreter version not that windows?! Funny that microsoft was mistaken Anyhow you know it better than them Thanks
  16. To Detect Windows version from the command line use the VER command, with find and errorlevels you can then redirect your commands Example for usage: VER | FIND.exe /i "xp" >NUL if %errorlevel%==0 ECHO You are using XP.. to identify x86 and x64 CPU, use the variable %processor_architecture% also see this: http://support.microsoft.com/kb/556009 I hope this helps
  17. TGUP has now got a new website: check it out:
  18. Great New Feature added to TGUP: a Download Accelerator (aria2) that speeds up all downloads done by TGUP up to 20x Faster! Now you have high speed download + high speed setup try downloading any app by tgup now and you will notice the difference
  19. Answer: No (You are the first to ask about such a function, if there is a big demand >5 people, I would implement a switch to make it possible) New TGUP version 00.18 has been released. Now with proxy support
  20. I discovered a way for making Windows Live Messenger 8.5.1302.1018 Silent Setup. It works only online. But it is not a problem because I suppose you have to be online if you use Windows Live Messenger. It is actually Switchless. All you need is to generate a cookie,that tells Windows Live Installer which components have to be installed. Create the Following Batch File SET CO="%userprofile%\Cookies\%username%@get.live[999].txt" @echo off Title Windows Live Messenger Silent Setup ECHO Installing Windows Live Messenger... >%CO% ECHO wlxp >>%CO% ECHO p=A26D7C8B-875D-48E2-BED1-7168268D022A*0^&m=en-us^&t=1^&s=0^&h=0^&c=0 >>%CO% ECHO get.live.com/ >>%CO% ECHO 1088 >>%CO% ECHO 4219999999 >>%CO% ECHO 99999999 >>%CO% ECHO 9999999999 >>%CO% ECHO 99999999 >>%CO% ECHO * "WLinstaller.exe" Put it in the same folder of "WLinstaller.exe" (Windows Live Installer) and run the batch File. You can add these optional Tweaks to the Batch File: To Disable Sharing Folders and Avoid Autostart reg.exe delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "MsnMsgr" /f 2>NUL>NUL reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\usnjsvc" /v "Start" /t REG_DWORD /d "0x4" /f 2>NUL>NUL reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{FC9FB64A-1EB2-4CCF-AF5E-1A497A9B5C2D}" /f 2>NUL>NUL Add This at the end to Uninstall Windows Live Installer Start /wait "WLIU" "MsiExec.exe" /X{A7E4ECCA-4A8E-4258-8EC8-2DCCF5B11320} /qb /quiet
  21. The generated Silent Installers can't be installed using TGUP. You can run them either manually or using a simple Batch File. @echo off App1.exe App2.exe If you want this Batch File to be automatically generated, then I will consider this as a Feature request.
  22. ipodservice.exe is a process belonging to Apple's iTunes mp3 media suite and is a core process. This is a non-essential process. Disabling or enabling it is down to user preference. ituneshelper.exe is a process belonging to Itunes MP3 streaming tool by Apple, which allows you to play MP3's. This process speeds up iTunes when it starts, and the program also monitors for connected iPod devices. This is a non-essential process. Disabling or enabling it is down to user preference.
  23. Sorry, delete my previous reply please. I respect your switchless installer. But It would be better to describe how you created it rather than just offering the final package. thanks
×
×
  • Create New...