I have a Windows XP SP3 machine that I'm trying to setup a URL reservation on. I'm using the httpcfg utility to try and setup the equivalent of the following netsh reservation:
netsh http add urlacl url=http://+:8080/ user=Everyone
I'm referencing this MSDN article. What's confusing me is the required ACL parameter
httpcfg set urlacl /u {http://URL:Port/ | https://URL:Port/} /a ACL
Documentation indicates the ACL must be passed as an SDDL formatted string, I'm not very familiar with the SDDL syntax, so I'm not sure how can I get the SDDL string for Everyone. Are there some default SDDL strings for granting full permissions to various groups? Or do I have to generate an SDDL string manually? Is there some alternative method of simply setting the permissions as in netsh?