Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 954 Bytes

readme.md

File metadata and controls

27 lines (20 loc) · 954 Bytes

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