Ich versuche, ein einfaches Skript zu erstellen, damit meine Site sowohl als auch www.example.com
einfach erreicht werden kann example.com
. Wie gebe ich es als verbindliches Argument weiter?
Folgendes versuche ich:
$iisApp = New-Item $iisAppName -bindings @{protocol="http";bindingInformation="*:80:"+ $url + ",*:80:www." + $url} -physicalPath $directoryPath
$iisApp | Set-ItemProperty -Name "applicationPool" -Value $iisAppPoolName
quelle