Stopping websites using Stop-Website is, apparently, not the same as stopping them using the IIS Manager.
Stop-Website 'Some site'
iisreset.exe
# site is started again
Using IIS Manager, the state is the same after a reset/reboot. I guess stopping a site using IIS Manager modifies some sort of persistent configuration (the registry?).
Can anyone tell me how I can use PowerShell to stop a site permanently, so that a reset/reboot does not bring the site online again?
(Stop-WebAppPool exhibits exactly the same behavior.)