Show current WinRM-Configuration
- winrm get winrm/config
Configure WinRM to listen on HTTPS
- winrm quickconfig -transport:https
Confirm WinRM is listening on HTTPS/View winrm listeners
- winrm enumerate winrm/config/listener
Remove the http listener
- winrm delete winrm/config/Listener?Address=+Transport=HTTP
Nützliche Quellen/Seiten:
- https://www.der-windows-papst.de/2021/01/08/winrm-usessl/
- https://docs.microsoft.com/en-us/troubleshoot/windows-client/system-management-components/configure-winrm-for-https
- https://philpug.com/2020/10/01/setting-up-winrm-to-listen-interfaces-over-https/
- https://support.infrasightlabs.com/help-pages/how-to-enable-https-for-winrm/
- https://www.visualstudiogeeks.com/devops/how-to-configure-winrm-for-https-manually/