Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Posts posted by radix

  1. after compile the same thing happens, oh and to compile i right click on the script file and select " Compile script " , maybe that is wrong, or can u tell me anoher way to make addon with this script without compile?

    As I already written, the first script you have posted works fine (compiled or not).

    Try to compile and test on to another computer. Probably you need to test again after a fresh Windows installation.

    You can compile with right click, or use C:\Program Files\AutoIt3\Aut2Exe for more options, or install

    SciTE4AutoIt3.

    Edit: Try ControlClick function instead of Send (probably Send interfere with something).

  2. I have a problem starting PowerDVD 9 on Vmware (XP SP3 host OS).

    It installs properly, but it starts (I see it from task manager running processes only, nothing on screen being displayed), and then exits.

    Exactly the same problem here (start PDVDLaunchPolicy.exe and PowerDVD9.exe and quits both processes). Can't start it under VMware, but I already install PowerDVD in real machine and it works.

    Have you tried under VirtualBox?

  3. How to install PowerDVD 9 in silent mode then? Can't get it working with "Setup.exe /S /v /qn".

    Extract the original installer.

    Go to custom.ini file and add Silent=1 under [PowerDVD9] and change RichVideo=1 to RichVideo=0

    Go to setup.ini file and make sure that EnableLangDlg=N and SuppressReboot=Y

    Delete RichVideo folder.

    Run silent installation from setup.exe without switches.

  4. Normal installation works ok, just have to right click the .exe file and select Vista as compatibility mode.

    I extracted the contents of the .exe and tried to install with the inf file it seems to install but when i run from the control panel this error pop up ("IFS drives control" - system cannot find the file specified)

    It seems that can not install correctly through .inf files (not all registry are imported).

    Try an AutoIt script (unattended only):

    #cs ----------------------------------------------------------------------------

    AutoIt Version: 3.3.0.0
    Author: myName

    Ext2 Installable File System For Windows 1.11a
    Application site: [url="http://www.fs-driver.org/"]http://www.fs-driver.org/[/url]

    Script Function:
    Template AutoIt script.

    #ce ----------------------------------------------------------------------------

    ; Script Start - Add your code below here

    Opt("TrayIconDebug", 1)

    ; Installer file name
    $Installer = "Ext2IFS_1_11a.exe"
    ; Enable the read-only option
    $Enable_the_read_only_option = 0
    ; Enable UTF-8 encoding
    $Enable_UTF_8_encoding = 1
    ; Enable the large file feature
    $Enable_the_large_file_feature = 1
    ; Assign drive letter automatically upon plugging in a device the first time
    $Assign_drive_letter = 0

    ; Run the installer
    Run($Installer)

    ; Welcome
    WinWait("Welcome", "It is recommended that you exit any further Windows application before you proceed with this setup.")
    WinActivate("Welcome", "It is recommended that you exit any further Windows application before you proceed with this setup.")
    ControlClick("Welcome", "It is recommended that you exit any further Windows application before you proceed with this setup.", "Button2")

    ; License
    WinWait("License", "Please read the following license contract carefully.")
    WinActivate("License", "Please read the following license contract carefully.")
    ControlCommand("License", "Please read the following license contract carefully.", "Button5", "Check", "")
    ControlClick("License", "Please read the following license contract carefully.", "Button2")

    ; Read-Only Option
    WinWait("Read-Only Option", "Choose whether you want to prevent the Ext2 driver from writing to any of the available volumes.")
    WinActivate("Read-Only Option", "Choose whether you want to prevent the Ext2 driver from writing to any of the available volumes.")
    If $Enable_the_read_only_option = 1 Then
    ControlCommand("Read-Only Option", "Choose whether you want to prevent the Ext2 driver from writing to any of the available volumes.", "Button8", "Check", "")
    EndIf
    ControlClick("Read-Only Option", "Choose whether you want to prevent the Ext2 driver from writing to any of the available volumes.", "Button2")

    ; UTF-8 Encoding
    WinWait("UTF-8 Encoding", "When accessing an Ext2 volume, you have to decide whether to enable UTF-8 encoding.")
    WinActivate("UTF-8 Encoding", "When accessing an Ext2 volume, you have to decide whether to enable UTF-8 encoding.")
    If $Enable_UTF_8_encoding = 0 Then
    ControlCommand("UTF-8 Encoding", "When accessing an Ext2 volume, you have to decide whether to enable UTF-8 encoding.", "Button9", "UnCheck", "")
    EndIf
    ControlClick("UTF-8 Encoding", "When accessing an Ext2 volume, you have to decide whether to enable UTF-8 encoding.", "Button2")

    ; Large File Feature
    WinWait("Large File Feature", "Now you have to decide whether to switch on the large file feature of all the volumes with the Ext2 file system.")
    WinActivate("Large File Feature", "Now you have to decide whether to switch on the large file feature of all the volumes with the Ext2 file system.")
    If $Enable_the_large_file_feature = 0 Then
    ControlCommand("Large File Feature", "Now you have to decide whether to switch on the large file feature of all the volumes with the Ext2 file system.", "Button10", "UnCheck", "")
    EndIf
    ControlClick("Large File Feature", "Now you have to decide whether to switch on the large file feature of all the volumes with the Ext2 file system.", "Button2")

    ; Drive Letters
    WinWait("Drive Letters", "Now you have to create the drive letters of your volumes with the Ext2 file system. Note: You may resize the whole dialog for better working.")
    WinActivate("Drive Letters", "Now you have to create the drive letters of your volumes with the Ext2 file system. Note: You may resize the whole dialog for better working.")
    If $Assign_drive_letter = 1 Then
    ControlCommand("Drive Letters", "Now you have to create the drive letters of your volumes with the Ext2 file system. Note: You may resize the whole dialog for better working.", "Button11", "Check", "")
    EndIf
    ControlClick("Drive Letters", "Now you have to create the drive letters of your volumes with the Ext2 file system. Note: You may resize the whole dialog for better working.", "Button2")

    ; Readme
    WinWait("Readme", "You may read the following release notes, print them or save them to disk for later reading. Note: You may resize the whole dialog for better reading.")
    WinActivate("Readme", "You may read the following release notes, print them or save them to disk for later reading. Note: You may resize the whole dialog for better reading.")
    ControlClick("Readme", "You may read the following release notes, print them or save them to disk for later reading. Note: You may resize the whole dialog for better reading.", "Button2")

    ; Finished
    WinWait("Finished", "The Ext2 Installable File System Software has been installed successfully on your computer.")
    WinActivate("Finished", "The Ext2 Installable File System Software has been installed successfully on your computer.")
    ControlClick("Finished", "The Ext2 Installable File System Software has been installed successfully on your computer.", "Button4")

    Func OnAutoItStart()
    ; One script instance only
    If WinExists(@ScriptName & '_Interpreter') Then Exit
    AutoItWinSetTitle(@ScriptName & '_Interpreter')
    EndFunc

  5. nLite use one core of the cpu, so his processor is loading at 100% during integration process and probably on Windows installation. Your friend should buy a notebook with dual core processor. This way the cpu should be colder (load at max. 50%).

  6. after re-editin the .msi i now get

    "error 1606. could not access network location photosuite"

    Installed twice. First without switches (was OK). Then uninstall (without errors) and install with /qb! switch which generate that message "error 1606. could not access network location photosuite".

    I didn't use the next modification on msi file:

    TABLE					  PROPERTY								  VALUE
    Condition varies change YES to NO to not install

    IcemanND's instructions is OK.

  7. I´m still trying to figure out how to get rid of the "first run" popup menú. I used regshot to get a picture of the system changes that the first run made and copied every file and modified the registry manually and still nothing

    Put an empty file called

    First Run

    here:

    %USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application

    Also you can add Bookmarks and others to have a customized installation.

  8. Any chance for TweakUI? I tried to find out its switch, but was unsuccessful.

    TweakUiPowertoySetup.exe contains Tweakui Powertoy for Windows XP.msi. So, you need to run TweakUiPowertoySetup.exe and on first screen go to %temp% and copy from there Tweakui Powertoy for Windows XP.msi which resides in a folder inside Temp dir.

  9. This works for me!

    but for the en setup only. not for the international setup..

    It works for int. setup, but need to extract the installer with 7-Zip, and run first from Opera Installer.exe. On first screen, choose your language, let say French (France), hit Ok and wait the next window, then go to %temp% and copy from one of those folders two files: Opera installer.msi and 1036.MST (needed for french lang).

    @echo off
    start /wait msiexec /i "Opera installer.msi" /qb! /norestart MULTI_USER_SETTING=0 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 ALLUSERS=1 TRANSFORMS="1036.MST"
    exit

    or

    @echo off
    start /wait msiexec /i "Opera installer.msi" /qb! /norestart MULTI_USER_SETTING=1 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 ALLUSERS=1 TRANSFORMS="1036.MST"
    exit

×
×
  • Create New...