Last Updated: October 14, 2025 Extension Version: 1.0.0
The "Autobid.de → mobile.de Preisvergleich" Chrome Extension ("the Extension") is committed to protecting user privacy. This privacy policy explains how the Extension handles user data.
Last Updated: October 14, 2025 Extension Version: 1.0.0
The "Autobid.de → mobile.de Preisvergleich" Chrome Extension ("the Extension") is committed to protecting user privacy. This privacy policy explains how the Extension handles user data.
Import-Module WebAdministration | |
$virtualHosts = Get-WebSite | ForEach-Object { | |
$site = $_ | |
$site.Bindings.Collection | ForEach-Object { | |
$binding = $_ | |
if ($binding.Protocol -eq "http" -or $binding.Protocol -eq "https") { | |
$hostname = $binding.Host | |
$port = $binding.EndPoint.Port | |
$protocol = $binding.Protocol |