Skip to content

Instantly share code, notes, and snippets.

@ciphertxt
Created July 10, 2019 13:21
Show Gist options
  • Save ciphertxt/d0028ad63daee89992d3ba9774e19a22 to your computer and use it in GitHub Desktop.
Save ciphertxt/d0028ad63daee89992d3ba9774e19a22 to your computer and use it in GitHub Desktop.
Install IIS and Update Start Page with Computer Name
Add-WindowsFeature Web-Server; powershell Add-Content -Path "C:\inetpub\wwwroot\Default.htm" -Value $($env:computername)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment