Jump to content

ckislam

Member
  • Posts

    137
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Egypt

Everything posted by ckislam

  1. TGUP is still running.. development is continuing.. check updates at the official site: www.tgup.net
  2. Here is a batch script to install Fonts in any Folder automatically. Paste the following code in notepad and save it as "ADD_Fonts.cmd" place the cmd file inside the folder of the fonts you want to install and run it or add the source folder as a parameter. for example "ADD_fonts.cmd" C:\Folder 1\Folder 2\ @ECHO OFF TITLE Adding Fonts.. REM Filename: ADD_Fonts.cmd REM Script to ADD TrueType and OpenType Fonts for Windows REM By Islam Adel REM 2012-01-16 REM How to use: REM Place the batch file inside the folder of the font files OR: REM Optional Add source folder as parameter with ending backslash and dont use quotes, spaces are allowed REM example "ADD_fonts.cmd" C:\Folder 1\Folder 2\ IF NOT "%*"=="" SET SRC=%* ECHO. ECHO Adding Fonts.. ECHO. FOR /F %%i in ('dir /b "%SRC%*.*tf"') DO CALL :FONT %%i REM OPTIONAL REBOOT REM shutdown -r -f -t 10 -c "Reboot required for Fonts installation" ECHO. ECHO Done! PAUSE EXIT :FONT ECHO. REM ECHO FILE=%~f1 SET FFILE=%~n1%~x1 SET FNAME=%~n1 SET FNAME=%FNAME:-= % IF "%~x1"==".otf" SET FTYPE=(OpenType) IF "%~x1"==".ttf" SET FTYPE=(TrueType) ECHO FILE=%FFILE% ECHO NAME=%FNAME% ECHO TYPE=%FTYPE% COPY /Y "%SRC%%~n1%~x1" "%SystemRoot%\Fonts\" reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" /v "%FNAME% %FTYPE%" /t REG_SZ /d "%FFILE%" /f GOTO :EOF ADD_Fonts.cmd
  3. Development of TGUP has been suspended due to health related reasons, if interested to take it over, reply with a good reason + sourceforge username
  4. This method doesn't Install TeamViewer as Service, doesn't create Shortcuts and doesn't add Uninstall Information!
  5. i assume the download link changed, sorry dont have time to update it right now, because i have exams to do at college. maybe you can find a full offline installer on the repo. http://tgup.net/repo
  6. send me the value of this key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" "Common Start Menu"
  7. Please provide me with some info to help u with the startmenu shortcut 1. The Operating System you use 2. The language of the operating System 3. The Full path to the Allusers Startmenu. (eg: C:\Documents and Settings\All Users\Startmenu) Thanks
  8. Sorry the free nero lite is not offered in dutch! only the full version supports dutch. so maybe you can try experimenting a little bit by copying the lang l. files from the full to yhe lite version. not sure if this works, but worth a try. good luck
  9. The portable version has some limitations. it doesn't save any settings upon exit, doesn't run as a service, so you won't be able to auto connect with your TeamViewer account, run at windows logon screen or have a permanent password. Because of these reasons, I invested some time figuring out a way to install the original full version silently. Tested on Windows XP/7. works Link for TeamViewer Silent Installer (repacked): TeamViewer Silent Setup [Generated by TGUP - Create Silent Installers method]
  10. New Feature: Now it is possible to add your own software directly to TGUP create your own software repository and customize the installers as you wish. Your Repository can be a URL, Network share, local or removable Drive. Documentation here: http://tgup.net/support/repository
  11. Hi, I downloaded the Nero lite version from here: http://www.nero.com/eng/downloads-nero9-free.php where it is mentioned on the website to be Version 9.4.12.708 After E-mailing the nero support multiple times they confirmed that it is the version 9.4.12.708 on the website and it is not a mistake, they suggested to use Nero Info Tool to query the correct version. I used Nero Info Tool, I looked in the Registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{7748AC8C-18E3-43BB-959B-088FAEA16FB2}\DisplayVersion and saw the File Properties for File Version and Product Version: %ProgramFiles%\Nero\Nero 9\Nero StartSmart\NeroStartSmart.exe and the result was Version 9.4.31.100 and not 9.4.12.708 as the the website and Nero support team said. Can anybody help me to identify the correct installed Version of Nero ?? {Reason: I need it for TGUP to compare the Installed version on the PC with the latest available version} Thanks
  12. I found some different formatting in some XPIs <em:id>{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}</em:id> em:id="bettergmail2@ginatrapani.org" I updated the script above to handle both cases correctly
  13. This method is not silent. as you still have to confirm installation when firefox starts.. it is the same as passing your xpi to firefox as the first parameter. "%ProgramFiles%\Mozilla Firefox\Firefox.exe" anyaddon.xpi have a look here, maybe it helps: http://www.msfn.org/board/index.php?showto...mp;#entry906191
  14. assuming the first id is the correct id.. i made the following script to install Firefox addons requirements: (put all of them in the same folder) 1. UnZip.exe (Command line extractor) from http://www.info-zip.org or use any other you extractor you prefer and adjust the parameters for extraction below 2. youraddon.xpi (any Firefox compatible xpi) 3. This cmd script call it install.cmd for example @echo off Title Firefox Addon installer by TGUP.net echo. Echo Installing youraddon.. IF EXIST "%temp%\youraddon\" rd /s /q "%temp%\youraddon" MD "%temp%\youraddon\addon" Start /B /Wait "Extracting" "UnZip.exe" -q -o "youraddon.xpi" -d "%temp%\youraddon\addon" FOR /F "tokens=2,3 delims=^<^>=" %%i in ('FIND "em:id" "%temp%\youraddon\addon\install.rdf"') DO (IF "%%~j"=="" (SET xpi_id=%%~i&GOTO :vaivai) ELSE (SET xpi_id=%%~j&GOTO :vaivai)) :vaivai IF NOT DEFINED xpi_id ( ECHO. ECHO. Echo Error occured while extracting.. ping.exe 127.0.0.1 -n 4 >NUL EXIT ) rem kill firefox or get write error tskill firefox FOR /F %%a in ('dir /ad /b "%appdata%\Mozilla\Firefox\Profiles\*.default"') DO ( IF EXIST "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\" rd /s /q "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%" IF NOT EXIST "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\" MD "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%" FOR /F "tokens=*" %%i in ('dir /b /og "%temp%\youraddon\%xpi_id%\"') DO MOVE /Y "%temp%\youraddon\%xpi_id%\%%i" "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\" ) echo. echo Installation Done! ping.exe 127.0.0.1 -n 4 >NUL IF EXIST "%temp%\youraddon\" rd /s /q "%temp%\youraddon" exit
  15. did you face any case where the id was NOT the first one? (that would help me a lot in creating a global installer for all addons) thanks a lot.
  16. @fisofo Hi, Adobe Reader 9.3 is already available in TGUP since its first release TGUP Apps Database is updated twice daily what kind of patches do u expect? thanks
  17. Dutch has been added to nero. run the installer again, should work now thanks
  18. now fixed! create your installers again and tell me how it is
  19. Unfortunately not yet. this issue is caused by the SFXMaker i used to create the installers. which terminates right after extraction, and not when the installer command (inst.bat) has finished. The only workaround for this is to replace the sfxmaker with another tool like 7zip Sfxmaker. I'm working on its configuration since yesterday. Once i'm done, you will have to recreate your installers again! Then it should work sorry for this issue, I didn't know about. thanks again for notifying it. as said b4 will let u know as soon as fixed
  20. I use this short form and it works fine: FOR %%i in (2000 2002 2003 Vista 2008 7) DO NET CONFIG WORK|Find "Windows %%i">Nul 2>&1&&(Set HostOS=%%i&IF "%%i"=="2002" SET HostOS=XP)
  21. thanks for posting, will inform you as soon the issue is fixed.
  22. found a a fatat error in the net config work method which leads to identify the windows version as 7 although it is xp. this error is caused as the net config work has the following output NetBT_Tcpip_{08BD6D91-B894-4FE6-B4EF-077A49EBBA77} (00242C01B83F) As you see the number 7 is available in the tcpip value which leads the find command to have an exitcode 0 EDIT: sorry it was my fault i used find "7" instead of "Windows 7"
  23. Need Help Translating the TGUP interface language: French, Spanish, Dutch (German interface already done. Italian on the way) Please reply if interested
×
×
  • Create New...