Link to home
Start Free TrialLog in
Avatar of Sokolaka
SokolakaFlag for United States of America

asked on

How to Determine if user is on Exchange or Domino

Our office has recently migrated over to Outlook 2007 from Lotus Notes 6.5.  Some of our users are still working in Lotus Notes, I'm trying to figure out, is there a place I can look in the Outlook or Lotus Notes application which can help me determine whether a user is on the Exchange server or Domino server?
Avatar of greesh_hem
greesh_hem

To confirm for Outlook 2007 you can check Under Tools>Options>Mail Setup>Email Accounts>Change and then the Microsoft Exchange Setting page will give you the name of the server on which the users mailbox resides so you can confirm from the server name whether the user is on Exchange or Domino Server.
You can check the registry:

HKLM - Software - Clients - Mail - (Default)

To get the value:
Function GetRegValue (szKey$, szValueName$) As String
	Dim szValue As String*200
	
	hKey = 0
	RetCode = RegOpenKeyEx (HKEY_CURRENT_USER, szKey, 0, KEY_READ, hKey)
	If RetCode <> 0 Then
'          Print "RegOpenKeyEx: " & RetCode
		Exit Function
	End If
	dwType = 0
	dwSize = 200
	RetCode = RegQueryValueEx (hKey, szValueName, 0, dwType, szValue, dwSize) 
	If RetCode <> 0 Then
'          Print "RegQueryValueEx: " & RetCode
		Exit Function
	End If
	Call RegCloseKey (hKey)
	
	GetRegValue = szValue
Done:
End Function
 
 
 
Example:
        'Obtain values from the registry:
	lpSubKey1 ="SOFTWARE\Microsoft\Internet Explorer\Main"
	IESearchURL =  GetRegValue(lpsubkey1, "Search Page" )

Open in new window

Avatar of SysExpert
ALso depends on hw you are migrating.

This information may also be in the Domino directory, as well as in AD


I hope this helps !
Avatar of Sokolaka

ASKER

Thank you guys for the prompt response.  I want to find out from my computer rather than needing to accessing the user's computer. Is there any way I can determine that (The other solutions works if I was at the user's desk)?

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of mbonaci
mbonaci
Flag of Croatia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial