Ah okay, no worries. For anyone else interested in the meantime, managed to come up with some powershell to do the trick:
$hostname = $env:computername
$file = "\\my-pc\" + $hostname + "output.txt"
import-module webadministration
$response = get-WebBinding |Select-Object -ExpandProperty bindingInformation
foreach($i in $response){
$ip,$port,$binding = $i.split(':')
if($binding -ne ""){
$binding >> $file
}
}
This basically stores a list of host named txt files showing all IIS bindings with a few extra bits. Haven't found an alternative for apache/nginx etc but might be helpful