Created
February 14, 2016 19:52
-
-
Save mikebranstein/fde605b919cf09bea6a0 to your computer and use it in GitHub Desktop.
Netsh commands added to my hangfire auto deployment powershell scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param | |
( | |
[string] $userName | |
) | |
netsh http add urlacl url=http://127.0.0.1:9095/ user=$userName | |
netsh http add urlacl url=http://localhost:9095/ user=$userName | |
netsh http add urlacl url=http://$env:computername`:9095/ user=$userName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment