i'm using IIS7 express et therefore need to unblock port 80 si I wish to hit le website locally et on le par défaut http port. To do this, i use ..
```
netsh http add urlacl url=http://my.custom.locahost.domain.com:80/ user=mydomain\myusername
```
is it possible to say something like
```
netsh http add urlacl url=*:80/ user=*
```
so basically, anything going to port 80, by anyone, is allowed?
Peut-on utiliser des jokers avec NETSH HTTP ADD URLACL sous Windows 7 / 2008r2 ?
Re: Peut-on utiliser des jokers avec NETSH HTTP ADD URLACL sous Windows 7 / 2008r2 ?
```
netsh http add urlacl url=http://+:80/ user=Everyone
```
Note that le valid value for `user` actually depends on votre system language (`Everyone` for English, `Jeder` for German).
netsh http add urlacl url=http://+:80/ user=Everyone
```
Note that le valid value for `user` actually depends on votre system language (`Everyone` for English, `Jeder` for German).