setup_iis.ps1 275 B

1234567891011
  1. param($action)
  2. $source = "C:\FrameworkBenchmarks\aspnet-stripped\src"
  3. # Stop
  4. if (Get-WebSite -Name Benchmarks) { Remove-WebSite -Name Benchmarks }
  5. if ($action -eq 'start') {
  6. # Create a website in IIS
  7. New-WebSite -Name Benchmarks -Port 8080 -PhysicalPath $source
  8. }