Vincent, You can.. You just need to create a iss file and a bat file to launch the install. Then you can define the default install path and in the bat file you simply use the setup command with the -s -f1 switch with the name of your iss file.
Your bat file might look like this @ECHO OFF setup -s -f1 setup.iss IF EXIST IpswitchIM.REG GOTO NATTED :NATTED REGEDIT /s IpswitchIM.REG :END Your iss file might look something like this [InstallShield Silent] Version=v5.00.000 File=Response File [File Transfer] OverwriteReadOnly=NoToAll [DlgOrder] Dlg0=SdWelcome-0 Count=5 Dlg1=SdAskDestPath-0 Dlg2=SdSelectFolder-0 Dlg3=SdStartCopy-0 Dlg4=SdFinish-0 [SdWelcome-0] Result=1 [SdAskDestPath-0] szDir=F:\Program Files\Ipswitch IM Result=1 [SdSelectFolder-0] szFolder=Ipswitch IM Result=1 [SdStartCopy-0] Result=1 [Application] Name=Messenger Version=1.00.000 Company=Ipswitch Lang=0009 [SdFinish-0] Result=1 bOpt1=0 bOpt2=0 You can also setup your bat file to edit the registry after setup to include a special login name. In the bat file you would use something like this REGEDIT /s IpswitchIM.REG In the install directory you would have a file called IpswitchIM.REG that would look like this maybe Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Ipswitch\Messenger\Version 1.0\Settings] "Client Update Timestamp"=dword:3e41dbce "Network Timeout"=dword:0000ea60 "Opacity"=dword:ffffffff "LastUsername"="[EMAIL PROTECTED]" "LastPassword"=hex:ff "RemberPassword"=dword:00000001 "AutomaticalyLogin"=dword:00000000 "LoginInvisible"=dword:00000000 "Client Uses NAT"=dword:00000001 "NOOP Interval"=dword:00000005 "Enable POP3 Check"=dword:00000000 "ExpandedGroups-Main(@yourdomain.com)"=hex(7):31,00,30,00,30,00,30,00,30,\ 00,00,00,31,00,30,00,30,00,30,00,33,00,00,00,31,00,30,00,30,00,30,00,32,00,\ 00,00,00,00 "WindowPos"=hex:2c,00,00,00,00,00,00,00,01,00,00,00,ff,ff,ff,ff,ff,ff,ff,ff,ff,\ ff,ff,ff,ff,ff,ff,ff,00,00,00,00,00,00,00,00,40,01,00,00,c2,01,00,00 [HKEY_CURRENT_USER\Software\Ipswitch\Messenger\Version 1.0\Settings\Layout] "Skin"="Default" [HKEY_CURRENT_USER\Software\Ipswitch\Messenger\Version 1.0\Settings\Layout\Default] -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Vincent Toussaint Sent: Wednesday, February 26, 2003 4:05 PM To: [EMAIL PROTECTED] Subject: RE: [IpswitchIM_Forum] 1.0 to 1.01 Communications and Login I know...I wasn't talking about encryption level... If I use a login script... Can I force some options ? Like installation path, default username or else ? Vincent --------------------------------------- Vincent Toussaint Network Administrator Hybride Technologies www.hybride.com > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Herschel Jones > Sent: February 26, 2003 3:50 PM > To: [EMAIL PROTECTED] > Subject: Re: [IpswitchIM_Forum] 1.0 to 1.01 Communications and Login > > > No, the 2 different levels of encryption just cannot talk to > each other. > > -HJ > > ----- Original Message ----- > From: "Vincent Toussaint" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, February 26, 2003 3:44 PM > Subject: RE: [IpswitchIM_Forum] 1.0 to 1.01 Communications and Login > > > > Is there any special switch we can use to force some > automatic setting > > ? > > > > Like -s -a or whatever ? > > > > Vincent > > > > --------------------------------------- > > Vincent Toussaint > > Network Administrator > > Hybride Technologies > > www.hybride.com > > > > > -----Original Message----- > > > From: [EMAIL PROTECTED] > > > [mailto:[EMAIL PROTECTED] On Behalf Of > > > Herschel Jones > > > Sent: February 26, 2003 2:51 PM > > > To: [EMAIL PROTECTED] > > > Subject: [IpswitchIM_Forum] 1.0 to 1.01 Communications and Login > > > > > > > > > All > > > The original 1.0 evaluation version of Ipswitch Instant Messenger > > > was sent with 168-bit encryption. Due to export controls, the > > > evaluation version of 1.01 was released with 40-bit > encryption. This > > > is why the 1.0 evaluation clients cannot connect to a > 1.01 server, > > > the 2 levels of encryption simply cannot talk to each other. To > > > upgrade the 1.0 clients to 1.01, it will have to be done > manually, > > > either 1 workstation at a time, or by use of a login script. > > > > > > -HJ > > > > > > > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > > > List Archive: > > > http://www.mail-archive.com/ipswitchim_forum%40list.ipswitch.c > > om/ > > Knowledge Base/FAQ: > > http://www.ipswitch.com/support/Instant_Messenger/index.asp > > > > > > > > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > > List Archive: > http://www.mail-archive.com/ipswitchim_forum%40list.ipswitch.com/ > > Knowledge Base/FAQ: > http://www.ipswitch.com/support/Instant_Messenger/index.asp > > > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > List Archive: > http://www.mail-archive.com/ipswitchim_forum%40list.ipswitch.c om/ Knowledge Base/FAQ: http://www.ipswitch.com/support/Instant_Messenger/index.asp To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html List Archive: http://www.mail-archive.com/ipswitchim_forum%40list.ipswitch.com/ Knowledge Base/FAQ: http://www.ipswitch.com/support/Instant_Messenger/index.asp To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html List Archive: http://www.mail-archive.com/ipswitchim_forum%40list.ipswitch.com/ Knowledge Base/FAQ: http://www.ipswitch.com/support/Instant_Messenger/index.asp
