1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38:
Public LiveUri als Koord = „http://***********/Powershell?serializationLevel=Full“ Sub InitWsMan () Schemerige AdminPassSecure = Nieuwe SecureString Voor Elk c als Klusje in AdminPass AdminPassSecure.AppendChar (c) Daarna Schemerig cred = Nieuwe PSCredential (AdminUser, AdminPassSecure) WS = Nieuwe WSManConnectionInfo (Nieuwe Uri (LiveUri), „http://schemas.microsoft.com/powershell/Microsoft.Exchange“, cred) WS.AuthenticationMechanism = AuthenticationMechanism.Default RS = RunspaceFactory.CreateRunspace (WS) PS = PowerShell.Create ServicePointManager.ServerCertificateValidationCallback = Nieuwe Security.RemoteCertificateValidationCallback (AddressOf SSlOk) Sub van het eind Sub EnableMailbox (ByVal Gebruikersbenaming als Koord, ByVal [alias] als Koord) Schemerige cmd = Nieuwe PSCommand cmd.AddCommand („toe:laten-Brievenbus“) cmd.AddParameter („Identiteit“, Gebruikersbenaming) cmd.AddParameter („alias“, [alias]) PS.Commands = cmd PS.Runspace = RS Probeer RS.Open () Schemerig I = PS.Invoke RS.Close () Vangst ex als Remoting.PSRemotingTransportException Het eind probeert Sub van het eind