Jump to content

Cuteftp Pro 7 (ready Made) 7zip+silent


Astalavista

Recommended Posts

Ok, I looked at the setup.log and I have a resultcode of -3 which, according to InstallShield's Knowledgebase... means:

-3 Required data not found in the Setup.iss file.

There is no entry in setup.iss for the screen pertaining to the Google Toolbar.

Any chance someone could paste their setup.iss here?

This is what mine looks like:

[installShield Silent]

Version=v6.00.000

File=Response File

[File Transfer]

OverwrittenReadOnly=NoToAll

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-DlgOrder]

Dlg0={1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdWelcome-0

Count=5

Dlg1={1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdLicense-0

Dlg2={1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdAskDestPath-0

Dlg3={1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SetupType-0

Dlg4={1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdFinish-0

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdWelcome-0]

Result=1

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdLicense-0]

Result=1

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdAskDestPath-0]

szDir=C:\Program Files\GlobalSCAPE\CuteFTP 7 Professional

Result=1

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SetupType-0]

Result=301

[Application]

Name=CuteFTP 7 Professional

Version=7.00.0000

Company=GlobalSCAPE

Lang=0009

[{1CCBCF78-EF12-4137-B3CA-99F30A2E7D21}-SdFinish-0]

Result=1

bOpt1=0

bOpt2=0

Link to comment
Share on other sites

  • 2 weeks later...

I have a registration key and I enter the information but I still get the popup window when I start it up asking for the License Key. Does anybody know what registery key is used to turn on/off this window?

Link to comment
Share on other sites

azaze1, I think I think I know what your problem is. The installer I made works fine on my machine. But when I tested it on vmware, I got the same pop-up. :no::angry:

About the resultcode in the log file, if the value is zero ( 0 ), then the software is installed properly. Other than that means error. :lol:

Link to comment
Share on other sites

GlobalScape did a bad job on making this InstallScript setup.. I don't really use google toolbar, so I need to find out another way to install this software. Maybe there is a missing line in the setup.iss. I don't have the google option either.

Link to comment
Share on other sites

  • 2 weeks later...

Any news of this ? I have the same Google popup using my own ISS.

On some pcs, the application just wont install, on others, I have the **** popup.

Looked like on some pcs, the google popup makes the app quits the setup.

The registration process works fine using totoymola method. :thumbup

Link to comment
Share on other sites

  • 4 weeks later...

:thumbupI found the fix!!!!!!!!!! :thumbup

Excerpt from my RunOnceEx:

REG ADD %KEY%\085 /VE /D "CuteFTP Pro v7.0.1" /f
REG ADD %KEY%\085 /V 1 /D "REGEDIT /S %FROM%\IM_P2P\CuteFTP\GoogleRedo.reg" /f
REG ADD %KEY%\085 /V 2 /D "%FROM%\IM_P2P\CuteFTP\Setup.exe /s"  /f
REG ADD %KEY%\085 /V 3 /D "REGEDIT /S %FROM%\IM_P2P\CuteFTP\GoogleUndo.reg" /f

My GoogleRedo.reg

Windows Registry Editor Version 5.00
;    Google Toolbar Registry Redo

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{00EF2092-6AC5-47c0-BD25-CF2D5D657FEB}]
@="Google Script Object"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{00EF2092-6AC5-47c0-BD25-CF2D5D657FEB}\InprocServer32]
@="c:\\program files\\google\\googletoolbar1.dll"
"ThreadingModel"="Apartment"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]
@="&Google"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{2318C2B1-4965-11d4-9B18-009027A5CD4F}\InprocServer32]
@="c:\\program files\\google\\googletoolbar1.dll"
"ThreadingModel"="Apartment"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{AA58ED58-01DD-4d91-8333-CF10577473F7}]
@="Google Toolbar Helper"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{AA58ED58-01DD-4d91-8333-CF10577473F7}\InprocServer32]
@="c:\\program files\\google\\googletoolbar1.dll"
"ThreadingModel"="Apartment"

[HKEY_LOCAL_MACHINE\SOFTWARE\Google\NavClient]
"installtime"="1115702271"
"sentfs"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]
"Compatibility Flags"=dword:00000400

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]
"{2318C2B1-4965-11d4-9B18-009027A5CD4F}"=hex(03):00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{AA58ED58-01DD-4d91-8333-CF10577473F7}]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]
"DisplayName"="Google Toolbar for Internet Explorer"
"UninstallString"="regsvr32 /u /s \"c:\\program files\\google\\googletoolbar1.dll\""

My GoogleUndo.reg

Windows Registry Editor Version 5.00
;    Google Toolbar Registry Undo

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{00EF2092-6AC5-47c0-BD25-CF2D5D657FEB}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{AA58ED58-01DD-4d91-8333-CF10577473F7}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Google]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]
"{2318C2B1-4965-11d4-9B18-009027A5CD4F}" = -

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{AA58ED58-01DD-4d91-8333-CF10577473F7}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{2318C2B1-4965-11d4-9B18-009027A5CD4F}]

Somewhere in there is what the CuteFTP installer is looking for.

If someone wants to clean it up a bit...please feel free.

Note: Install CuteFTP with this method BEFORE installing any Google software. I will not be held responsible for lost settings of other Google software.

B)

Link to comment
Share on other sites

  • 8 months later...

I have tried OrocoXP's method (Google[Re/Un]do) and cannot get this to work. Can anyone who's been able to get CuteFTP 7.1 Professional to install silently help me out? I've also tried setup.iss but as I've read, it doesn't seem others could get it to work, either. :no: (Heh heh, my first smilie!)

Edit: Sorry for bringing up such an old topic.

Edited by Yungsters
Link to comment
Share on other sites

  • 2 months later...
  • 4 weeks later...

re: OrcoXP's earlier post (I found the fix!!!) to kill the Google Toolbar popup, it is this one:

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{00EF2092-6AC5-47c0-BD25-CF2D5D657FEB}\InprocServer32]

@="c:\\program files\\google\\googletoolbar1.dll"

"ThreadingModel"="Apartment"

I add this to what I call my "Prereg.reg" ran at T-13.

Then I add the following to what I call my "Postreg.reg" ran after first boot to remove it.

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{00EF2092-6AC5-47c0-BD25-CF2D5D657FEB}\InprocServer32]

Probably should just leave it in there to prevent any future Google popups beings they seem to be appearing more and more rather than removing on my Postreg.reg.

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...