Jump to content

Raoul90

Member
  • Posts

    281
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Posts posted by Raoul90

  1. Can anyone you help me how do i use this program to find program switches?

    Right click on a executable.

    Then go to "More options", then go to "Installer Tools" and then go to "Identify Installer"

    t_cmenum_23cc33a.png

  2. Something like:

    @Echo Off

    Set RegTweaks=%SystemDrive%\RegTweaks

    IF Exist %RegTweaks% Goto MainMenu

    :MainMenu

    CLS

    Color 9E

    Mode 62,14

    Title Register Tweaks

    echo.

    echo.

    echo.

    echo.

    echo Wilt u de Register-Tweaks importeren of niet?

    Echo.

    echo 1 = Ja, importeren..

    echo 2 = Nee, niet importeren..

    ECHO.

    SET UC=

    SET /P UC=Type een nummer in en druk vervolgens op ENTER ^>

    IF /I '%UC%'=='1' GOTO RegTweaks.reg

    IF /I '%UC%'=='2' GOTO TheEnd1

    :: If It Not A Correct Input

    CLS

    MODE 55,5

    COLOR F4

    TITLE Input Error

    ECHO.

    ECHO This was not valid ^> %UC%

    ping -n 5 127.0.0.1>nul

    GOTO MainMenu

    :RegTweaks.reg

    Cls

    Mode 62,5

    REGEDIT /S "" "%systemdrive%\RegTweaks\RegTweaks.reg"

    Goto TheEnd1

    :TheEnd1

    Exit

    Put it in batch and call it from runonce or whatever.

  3. What is the "temp download folder" of Chrome? I have searched for that, but i dont think i succeeded.

    Thought it was:

    C:\Documents and Settings\Raoul\Local Settings\Application Data\Google\Chrome\Application

    But im not sure.

    See:

    http://www.msfn.org/board/index.php?showtopic=122855

    edit:

    Found it:

    C:\Documents and Settings\USER\Local Settings\Application Data\Google\Update\Download

    The chrome_installer.exe is silent from itself and is 8,36MB

  4. Okay thanks!

    Got it working, but

    When i push start it opens the txt in the cmd? How can i open it with notepad?

    I should call %SystemRoot%\system32\notepad.exe first then?

    When i say:

    NOTEPAD.EXE "" "C:\%systemdrive%\MeerInfo.txt"

    Notepad say it cant find a .txt file, also MeerInfo without .txt wont work??

  5. Hey,

    Im trying to make a batchscript to install some drivers.

    @echo off

    CLS

    :menu

    echo.

    echo.

    echo.

    echo.

    echo Wilt u drivers installeren of niet?

    echo.

    echo 1 = Meer informatie

    echo 2 = ATi

    echo 3 = NVidia

    echo 4 = Exit

    echo.

    :choice

    set /P C=[1,2,3,4]?

    if "%C%"=="1" goto MeerInfo.txt

    if "%C%"=="2" goto ati.exe

    if "%C%"=="3" goto nvidia.exe

    if "%C%"=="4" goto exit script

    After this there must come something like

    goto choice

    :MeerInfo

    %systemdrive%\Drivers\MeerInfo.txt

    goto choice

    :ATi

    %systemdrive%\Drivers\ati.exe

    goto choice

    :NVidia

    %systemdrive%\Drivers\nvidia.exe

    goto choice

    :Exit

    EXIT

    Now i have a map called "Drivers" @ %systemdrive%

    1 has to call up a txt file called MeerInfo.txt its in the "Drivers" directory @ %systemdrive%.

    2 has to call up the ati.exe (ati drivers), this is also in the "Drivers" directory @ %systemdrive%.

    3 has to call up the nvidia.exe (nvidia drivers), this one is also in the "Drivers" directory @ %systemdrive%.

    4 has to call nothing and just exit the script.

    Can someone help me with this.

    Thanks in advance!! :rolleyes::yes::lol::w00t:

  6. So something like this?

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "Adobe Reader Speed Launcher"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "IMJPMIG8.1"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "Malwarebytes' Anti-Malware"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "PHIME2002A"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "PHIME2002ASync"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "VMware Tools"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "VMware User Process"

    REG DELETE HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v "vmware-tray"

  7. Hey,

    Can someone tell me how i can delete start items from HKLM/Run?

    I want to delete a couple of these (at HKLM/Run):

    t_runm_2a11a80.png

    And how to delete Windows Live Messenger from HKCU/Run?

    Also there is one program which starts from Common (Startup Common) what is the way too delete this startup entrie?

    Thanks in advance! :thumbup

    Grtz,

    Raoul

  8. I did the following for IE7:

    ;!@Install@!UTF-8!

    RunProgram="IE7NLD.exe /Quiet /UpDate-No /NoBackup /NoRestart"

    GUIMode="2"

    ;!@InstallEnd@!

    And then used the odyn1982 bat, and made myself a switchless IE7 that works.

    For WMP11 i did the following.

    I unieextracted the original installer and put all files in my $OEM$.

    Then i called setupwm.exe from cmdlines.

    SETUP_WM.EXE /Q /R:N /NoPID /DisallowSystemRestore /P:#e

    Works fine.

×
×
  • Create New...