MSFN Forum: Ext2Ifs Silent Install Help - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Ext2Ifs Silent Install Help Need help to install on Windows 7 x64 silently Rate Topic: -----

#1 User is offline   trickstar 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 16-September 05

Posted 17 June 2009 - 01:22 PM

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)

Attached File(s)




#2 User is offline   radix 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 702
  • Joined: 08-February 07

Posted 18 June 2009 - 10:26 AM

View Posttrickstar, on Jun 17 2009, 10:22 PM, said:

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 


#3 User is offline   trickstar 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 16-September 05

Posted 18 June 2009 - 01:43 PM

thanks for the script but i forgot to mention I'm using Windows 7 so i need to set the compatibility mode to VISTA or the program wont install.

do you know anyway to get around that?

#4 User is offline   trickstar 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 16-September 05

Posted 18 June 2009 - 04:02 PM

using the code below to install on Win7

ECHO..........ext2ifs

md C:\ext2ifs ; MAKE DIRECTORY
Copy %AppsRoot%Install\ext2ifs\ex2 C:\ext2ifs ; COPIES Ext2IFS_1_11a.exe
REGEDIT /S %AppsRoot%Install\ext2ifs\install.reg ; SETS COMPATIBILITY FOR Ext2IFS_1_11a.exe TO VISTASP2
start /wait C:\ext2ifs\ext2ifs-auto.exe ; RUNS YOUR AUTOIT SCRIPT
REGEDIT /S %AppsRoot%Install\ext2ifs\delete.reg ; DELETES THE INSTALL REG KEY
ping -n 5 127.0.0.1>nul ; WAIT 5 SECS
rd /s /q C:\ext2ifs ; DELETES DIRECTORY AND FILES
EXIT

install.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
"C:\\ext2ifs\\Ext2IFS_1_11a.exe"="VISTASP2"


delete.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
"C:\\ext2ifs\\Ext2IFS_1_11a.exe"=-

This post has been edited by trickstar: 18 June 2009 - 04:23 PM


#5 User is offline   trickstar 

  • Newbie
  • Group: Members
  • Posts: 19
  • Joined: 16-September 05

Posted 19 June 2009 - 03:10 PM

just found out that installing with the .inf is actually working all i had to do was reboot and the driver loads :thumbup . cant believe i didn't try that before. :angry:

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy