Jump to content

ALiAS_2004

Member
  • Posts

    16
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Tunisia

Posts posted by ALiAS_2004

  1. @surgeon

    hello,

    If it is ADOBE ACROBAT PRO 6 English version, you can have the installer interface in french if not try to modify the setup.ini file. there is something about GUI langage.

    If it is ADOBE ACROBAT PRO 6 French there is no problem, all things are in french !

  2. Hello Suisse,

    According to msfn Guide :

    If in your CD you havee $OEM$\$1\Apps\MSOffice2003 as directory then

    rename your silent.mst to Unattended.MST

    then don't use c: but %systemdrive% more portable install !

    ECHO.

    ECHO Installing Office 2003 Professional

    ECHO Please wait...

    start /wait %systemdrive%\Apps\MSOffice2003\setup.exe TRANSFORMS=Unattended.MST /qb-

    That's it!

  3. Hello Mazin,

    "But, we don't need to re-create %TEMP% folder again. The slash after %TEMP%\ means deleting objects inside TEMP folder, not the TEMP folder itself."

    I dont agree with you. Unfortunately, with or without "\" the directory passed in parameter to RD /S is deleted itself. (Tested with Win XP)

    used with /Q, no question is asked.

    Good Continuation and all my respect mazin. ;)

  4. @MAZIN

    For Deleting temporary files and folders We need Only :

    CLS

    @echo off

    ECHO Deleting temporary files and folders

    RD /S /Q %TEMP%\

    EXIT

    The

    RD /S "DirName" : Deletes files and folders inside "DirName" and DirName also.

    /Q : for quiet mode.

    Finaly %TEMP% must be created after (If it was really supressed ".dat inside" !) :

    We need to add : MD %TEMP%

    Have a nice Day @mazin :thumbup

  5. HELLO snakesnake,

    YOUR BATCH IS :

    *************************************************

    4. batch file

    here is the batch for the silent install

    CLS

    @echo off

    ECHO.

    REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

    ECHO.

    start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

    ECHO.

    taskkill.exe /F /IM symlcsvc.exe

    CCPD-LC.exe

    del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

    EXIT

    *************************************************

    I MODIFIED TO :

    ======================================

    CLS

    @echo off

    ECHO.

    REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg *** INCHANGED

    ECHO.

    REM taskkill.exe /F /IM symlcsvc.exe *** NOT USED

    CCPD-LC.exe *** SECOND

    del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe" *** THIRD

    ECHO.

    start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb *** BECAME FOURTH

    EXIT

    ======================================

    I assume that is very clear !

    :realmad:

    This Method is machine specific, therefore can not be used for other machine

    :realmad:

    :D HAVE A NICE DAY

  6. You can save time if you do :  :o

    CLS

    @echo off

    ECHO.

    REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

    ECHO.

    REM taskkill.exe /F /IM symlcsvc.exe

    CCPD-LC.exe

    del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

    ECHO.

    start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

    EXIT

    => No need to taskkill !!!

                                                        GoodBye.

    it doesn't work here if i don't kill this task

    it doesn't work here if i don't kill this task !!!

    NAV NOT YET INSTALLED !!! WHAT TASK TO KILL => NOTHING.

    100% TESTED AND VERIFIED WORKING :D

  7. You can save time if you do : :o

    CLS

    @echo off

    ECHO.

    REGEDIT /S %systemdrive%\Install\NAV2005\navreg.reg

    ECHO.

    REM taskkill.exe /F /IM symlcsvc.exe

    CCPD-LC.exe

    del "%systemdrive%\WINDOWS\system32\CCPD-LC.exe"

    ECHO.

    start /wait %systemdrive%\Install\NAV2005\NAVSetup.exe /O REBOOT=ReallySuppress /qb

    EXIT

    => No need to taskkill !!!

    GoodBye.

×
×
  • Create New...