Showing posts with label Exchange Server. Show all posts
Showing posts with label Exchange Server. Show all posts

How to Export Members of Exchange Distribution List

I came across this nice VB script to export the list of members of a distribution list of exchange :

'Script begins here

Dim objGroup, objUser, objFSO, objFile, strDomain, strGroup, Domain, Group

'Change DomainName to the name of the domain the group is in
strDomain = Inputbox ("Enter the Domain name", "Data needed", "Default domain name")
'Change GroupName to the name of the group whose members you want to export
strGroup = InputBox ("Enter the Group name", "Data needed", "Default group name")
Set objFSO = CreateObject("Scripting.FileSystemObject")
'On the next line change the name and path of the file that export data will be written to.
Set objFile = objFSO.CreateTextFile("C:\Bin\" & strGroup & " - Members.csv")
Set objGroup = GetObject("WinNT://" & strDomain & "/" & strGroup & ",group")
For Each objUser In objGroup.Members
    objFile.WriteLine objUser.Name & " - " & objUser.Class
Next
objFile.Close
Set objFile = Nothing
Set objFSO = Nothing
Set objUser = Nothing
Set objGroup = Nothing
Wscript.Echo "Done"
Wscript.Echo "Please check the c: for your output file"

Note: The script will ask you the domain name and the group the distribution group for which member list to be created.

Error “Some Controls are not valid” while uninstalling Exchange 2010 Management Tools

Recently I faced an issue with uninstalling the Exchange 2010 Management Tool from my Windows 7 Workstation. This error occurred when I was trying to uninstall the Exchange Management Console:

“Some Controls are not valid- Please specify an existing server role(s) to uninstall”

Some Controls are not valid- Please specify an existing server role(s) to uninstall”

Actually i was not un-checking the “Management Tools” option. I spent lot of time figuring out this..hence thought to share here which may be helpful for others…I hope this saves some time of them.

Exchange 2010 Quick Installation Guide

I came across this article about installing Exchange Server in very less time.   on a blog which has very good information 2010 in very less time.

Link : Exchange 2010 Quick Installation Guide

Popular Posts