Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

R4 client on a R5 server

Status
Not open for further replies.

fgerard4

Technical User
Jan 4, 2002
1
FR
After a server and client migration I need to know how many R4 client are always connected on my R5 server.
thank
 
Just keep track of the phone calls of people complaining about the garbage in their mail box. They'll be your r4 users.

Otherwise, I'm not aware of any functionality on the server that keeps track of what version client the user is using. Although there may be something in the NAB entry, administration section of the license your people were issued.
 
We had a similar issue so we put this LotusScript in a news database that all users read. If you add it to the Database Script Under Initalize. It emails a mail in DB with the version info for the user who entered the DB.

Set maildb = session.CurrentDatabase
Set maildoc = New NotesDocument( maildb )
maildoc.form = "Memo"
maildoc.subject= Session.UserName
whenNow$ = Today()
maildoc.body = Session.CommonUserName + " entered News running " + whenNow$ + " using Notes version " + Session.NotesVersion + " on " + Session.Platform + "."
maildoc.NotesVersion = Session.NotesVersion
maildoc.OperatingSystem = Session.Platform
Call maildoc.send( False, "Mail In DB")
 
the console will tell you the version the client they are using when opening up sessions with the server.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top