Skip to content

Instantly share code, notes, and snippets.

View chriswoj's full-sized avatar

chris chriswoj

View GitHub Profile

Privacy Policy - Autobid.de → mobile.de Preisvergleich

Last Updated: October 14, 2025 Extension Version: 1.0.0

Overview

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.

Data Collection

@chriswoj
chriswoj / ListWebsites.ps1
Created July 25, 2023 09:23
List all Websites in IIS with Powershell
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