CITRIX - 6.5.3 install freezes

Hi all,

We are installing 6.5.3 Client on the Citrix server.

Currently…

The users have the following files that are R5 design, on a network share. These are uploaded to their Citrix data folder on logging in.

bookmark.nsf

desktop5.dsk

names.nsf

notes.ini

journal.nsf

user.id

uk.dic

user.dic

When a current user logs in, it logs in within 15secs.

When a new Citrix user logs in, this uses the R6 template folder & personal files to create the Data folder.

When logging in, it appears Citrix freezes. 5mins and nothing has happened.

Is it expected that if the R6 template files are present, it will take a long time to upgrade and create a new set of R6 databases?

If so, how long should I expect?

Subject: CITRIX - 6.5.3 install freezes

I think the your Notes 6 is searching for somes R6 templates.

I work with Citrix Also and the way that I migrate my users from 5 to 6 is with a batchfile that is started in the publish application on Notes R6. Here a example of the batchfile.

@ECHO OFF

If exist H:\Notes.5.0.12\data\names.nsf goto Fin

@ECHO ON

@ECHO

@ECHO Migration of Lotus Notes Version 6 started

@ECHO

@ECHO OFF

md H:\notes.new

xcopy /s /i H:\notes\notes.ini H:\notes.new

xcopy /s /i H:\notes\data*.id H:\notes.new\data

xcopy /s /i H:\notes\data\bookmark.nsf H:\notes.new\data

xcopy /s /i H:\notes\data\desktop*.* H:\notes.new\data

xcopy /s /i H:\notes\data\names.nsf H:\notes.new\data

xcopy /s /i P:\utils\MigR6\LotusR6E H:\notes.new\data

ren H:\notes notes.5.0.12

ren H:\notes.new notes

@ECHO IM_NO_SETUP=1 >> h:\notes\notes.ini

@ECHO ON

@ECHO

@ECHO MIGRATION COMPLETED

@ECHO

@ECHO OFF

:Fin

START N:\UsrApps\Notes6\notes.exe =H:\notes\notes.ini

I copy all the template in the notes\data in the personnal drive of the user, do the upgrade and after that send another batchfile that clean all template after the upgrade is done… When All user will be upgraded, I will remove the batchfile in the location of the publish application and just put the path so that this application start rigth away

Hope that help