Skip to content

neutmute/exchange-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exchange Client

Exchange Management Shell wrapper for .NET

Methods implemented can be found here

Usage

Example usage

	private ConnectionConfiguration GetConfig()
    {
        var config = new ConnectionConfiguration();
        config.Username = "theuser";
        config.Password = "supersecret";
        config.Uri = "http://YourExchangeServer/powershell";
        return config;
    }

    private void ExampleUsage()
    {
        var client = new ExchangeClient(GetConfig());
        var output = client.GetDistributionGroup("MyDistributionGroupName");
    }

Notes

Client may require AllowUnencrypted set to true

About

Exchange Management Shell wrapper for .NET

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages