Почему я получаю эту ошибку случайно. Иногда сценарий Powershell работает неправильно, иногда не работает, выдает ошибку ниже.
Connect-MsolService : An error occurred while making the HTTP request to https://provisioningapi.microsoftonline.com/provisioningwebservice.svc. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also be caused by a mismatch of the security binding between the client and the server. At D:\O365License\Licensing.ps1:28 char:1 + Connect-MsolService -Credential $cred + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : OperationStopped: (:) [Connect-MsolService], CommunicationException + FullyQualifiedErrorId : System.ServiceModel.CommunicationException,Microsoft.Online.Administration.Automation.ConnectMsolService
Возможно, вы страдаете от проблемы, связанной с .NET с TLS 1.2. Попробуйте выполнить это до запуска команды Connect-MsolService.
Connect-MsolService
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12