Der WinRM-Client hat einen HTTP-Statuscode "502" vom Remote-WS-Verwaltungsdienst erhalten. Dies weist auf eine unzulässige Proxy Konfiguration des Exchange Servers im System-Kontext hin. 


Lösung:

  • Auf dem Exchange-Server als Administrator einloggen und Kommando-Prompt öffnen:
  • Aktuelle Proxy Einstellung für SYSTEM kontrollieren: 
    C:\> netsh winhttp show proxy
  • Proxy Einstellung für SYSTEM vom aktuellen User übernehmen:  
    C:\> netsh winhttp import proxy source=ie
  • Proxy Einstellungen für SYSTEM löschen: 
    C:\> netsh winhttp reset proxy
  • Proxy Einstellungen für SYSTEM setzen mit Bypass-Liste inklusive localhost, sowie als Beispiel domain.local und IP-Bereich 10.11.12.x: (Bitte entsprechend Ihres Proxy-Servers und des IP-Bereichs des LOGINventory-Servers anpassen)
    C:\> netsh winhttp set proxy proxy-server="http://myproxy.domain.local:8080" bypass-list="localhost;*.domain.local;10.11.12.*"

Falls ein Proxy konfiguriert ist, muss stets localhost als Ausnahme definiert sein.