Jump to content

Help with some apps...


Kotan

Recommended Posts

Hi, i need some switches to some apps that I havent found on the forum.

I am new on this so I don't know that much...

I am using the RunOnceEx.cmd method.

The apps I need the switches for are:

FFDShow 20031128

Ac3Filter 0.70b

Ventrilo 2.14

Powerstrip 3.29

All-Seeing Eye

Tv-Tool 6.8 + key

iTouch 2.1

Vobsub 2.23

Thanks /Kotan

Edit: Does this look ok btw?

cmdow @ /HID@echo off
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "Installing Applications" /f
REG ADD %KEY%\001 /VE /D "Preparing Installation..." /fREG ADD %KEY%\001 /V 1 /D "%systemdrive%\apps\prepare.cmd" /f
REG ADD %KEY%\005 /VE /D "Diskeeper 8" /fREG ADD %KEY%\005 /V 1 /D "%systemdrive%\Install\Apps\DiskeeperPro_8.0.459.exe /s /v/qn" /f
REG ADD %KEY%\010 /VE /D "Nero Burning ROM 5.5.9.9" /fREG ADD %KEY%\010 /V 2 /D "%systemdrive%\Install\Apps\Nero_5.5.9.9.exe  /SN=XXXXX-XXXXX-XXXXX-XXXXX-XXXX /WRITE_SN /silent /noreboot /NO_UI /NOCANCEL
REG ADD %KEY%\015 /VE /D "WinRAR 3.0" /fREG ADD %KEY%\015 /V 1 /D "%systemdrive%\Install\Apps\WinRar3.exe /s" /f
REG ADD %KEY%\020 /VE /D "Registrering mIRC" /fREG ADD %KEY%\020 /V 1 /D "REGEDIT /S %systemdrive%\Install\mirc.reg" /f
REG ADD %KEY%\025 /VE /D "Adaware 6.0" /fREG ADD %KEY%\025 /V 1 /D "%systemdrive%\Install\Apps\aaw6.exe /s" /f
REG ADD %KEY%\030 /VE /D "Daemon Tools 3.41" /fREG ADD %KEY%\030 /V 1 /D "%systemdrive%\Install\Apps\DaemonTools\daemon.msi /Reboot=Suppress /qn" /f
REG ADD %KEY%\035 /VE /D "Power DVD 5.0" /fREG ADD %KEY%\035 /V 1 /D "%systemdrive%\Install\Apps\PowerDVD5\Setup.exe -s" /fREG ADD %KEY%\035 /V 2 /D "%systemdrive%\install\Apps\PowerDVD5\setup.iss" /f
REG ADD %KEY%\040 /VE /D "Acrobat Reader 5.1" /fREG ADD %KEY%\040 /V 1 /D "%systemdrive%\Install\Apps\AcroReader51_SVE\Setup.exe -s" /fREG ADD %KEY%\040 /V 2 /D "%systemdrive%\install\Apps\AcroReader51_SVE\setup.iss" /f
REG ADD %KEY%\045 /VE /D "Spybot - Search & Destroy 1.2" /fREG ADD %KEY%\045 /V 1 /D "%systemdrive%\Install\Apps\spybotsd12.exe /silent /nocancel" /f
REG ADD %KEY%\050 /VE /D "Importing Registry Tweaks" /fREG ADD %KEY%\050 /V 1 /D "REGEDIT /S %systemdrive%\Install\regtweaks.reg" /f
REG ADD %KEY%\055 /VE /D "Cleaning Up and Rebooting" /fREG ADD %KEY%\055 /V 1 /D "%systemdrive%\apps\cleanup.cmd" /f
EXIT
Link to comment
Share on other sites


not got any ideas for your apps, but as far as the ones you've already got:

try this for spybot (it installs the bad download blocker to work silently):

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{53707962-6F74-2D53-2644-206D7942484F}]@=""[HKEY_CLASSES_ROOT\CLSID\{53707962-6F74-2D53-2644-206D7942484F}\InprocServer32]@="C:\\PROGRA~1\\SPYBOT~1\\SDHelper.dll""ThreadingModel"="Apartment"[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{53707962-6F74-2D53-2644-206D7942484F}]@=""[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{53707962-6F74-2D53-2644-206D7942484F}\InprocServer32]@="C:\\PROGRA~1\\SPYBOT~1\\SDHelper.dll""ThreadingModel"="Apartment"[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{53707962-6F74-2D53-2644-206D7942484F}]

and this to autoimmunize at bootup:

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"SpyBot"="\"C:\\Program Files\\Spybot - Search & Destroy\\SpybotSD.exe\" /taskbarhide /autoimmunize /autoclose"

also why are using adobe reader 5.1? version 6.01 is out now, just wondering. the switch for 6.01 is:

REG ADD %KEY%\015 /VE /D "Adobe Reader 6.01" /fREG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\Applications\AdobeReader601.exe -p"""-s /v\"""/qn\"""

hope this helps in any way

Link to comment
Share on other sites

Hi

sorry no help for apps but for your existing runonceex.cmd some problems :

REG ADD %KEY%\035 /VE /D "Power DVD 5.0" /f

REG ADD %KEY%\035 /V 1 /D "%systemdrive%\Install\Apps\PowerDVD5\Setup.exe -s" /f

REG ADD %KEY%\035 /V 2 /D "%systemdrive%\install\Apps\PowerDVD5\setup.iss" /f

REG ADD %KEY%\040 /VE /D "Acrobat Reader 5.1" /f

REG ADD %KEY%\040 /V 1 /D "%systemdrive%\Install\Apps\AcroReader51_SVE\Setup.exe -s" /f

REG ADD %KEY%\040 /V 2 /D "%systemdrive%\install\Apps\AcroReader51_SVE\setup.iss" /f

You don't need the 2 lines with the .iss files

if you created the .iss files for acrobat & powerdvd and if they are in the same dir than the apps you only need the first line for both of them

remove

REG ADD %KEY%\035 /V 2 /D "%systemdrive%\install\Apps\PowerDVD5\setup.iss" /f

and

REG ADD %KEY%\040 /V 2 /D "%systemdrive%\install\Apps\AcroReader51_SVE\setup.iss" /f

and paul3vanz is right : why not use adobe reader 6?

Link to comment
Share on other sites

Logitech iTouch:

%systemdrive%\install\Logitech\it.exe -s -a -s -f1%systemdrive%\install\Logitech\itsetup.iss"

use this *.iss file:

[installShield Silent]Version=v6.00.000File=Response File[File Transfer]OverwrittenReadOnly=NoToAll[{036AA4D4-6D32-11D4-9875-00105ACE7734}-DlgOrder]Dlg0={036AA4D4-6D32-11D4-9875-00105ACE7734}-SdLicense-0Count=4Dlg1={036AA4D4-6D32-11D4-9875-00105ACE7734}-SdAskDestPath-0Dlg2={036AA4D4-6D32-11D4-9875-00105ACE7734}-SdSelectFolder-0Dlg3={036AA4D4-6D32-11D4-9875-00105ACE7734}-SdFinishReboot-0[{036AA4D4-6D32-11D4-9875-00105ACE7734}-SdLicense-0]Result=1[{036AA4D4-6D32-11D4-9875-00105ACE7734}-SdAskDestPath-0]szDir=C:\Programme\Logitech\iTouchResult=1[{036AA4D4-6D32-11D4-9875-00105ACE7734}-SdSelectFolder-0]szFolder=Logitech\iTouchResult=1[Application]Name=iTouchVersion=CurrentVersionCompany=LogitechLang=0007[{036AA4D4-6D32-11D4-9875-00105ACE7734}-SdFinishReboot-0]Result=1BootOption=0

and the iTouch settings found You under the registry key:

[HKEY_CURRENT_USER\Software\Logitech\iTouch]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...