Skip to content

Instantly share code, notes, and snippets.

@mollyporph
Created August 23, 2015 13:35
Show Gist options
  • Save mollyporph/1a6217fa43c0ad4aefd3 to your computer and use it in GitHub Desktop.
Save mollyporph/1a6217fa43c0ad4aefd3 to your computer and use it in GitHub Desktop.
$shell = New-Object -ComObject "Shell.Application"
$iisx = 'c:\Program Files (x86)\IIS Express\iisexpress.exe'
$path = (Resolve-path .) # eller hårdkoda path eller ta in som parameter
"" > "$path/input.txt"
$params = "/port:8080","/path:$path"
Write-Host $params
Start-Process -FilePath $iisx -ArgumentList $params -NoNewWindow -RedirectStandardOutput output.txt -RedirectStandardInput input.txt
$shell.minimizeall()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment