Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

netsh http add urlacl : add reservation for a group

This article explain how to configure a namespace reservation for a user using netsh.exe as follows:

netsh http add urlacl url=http://+:80/MyUri user=DOMAIN\user

The parameter user= is said to be either user or user-group.
It works as described when I configure for a single user, but if I replace DOMAN\user with DOMAIN\Administrators or DOMAIN\Users I'm getting an error (1332).

Q: Why does it work for a user, but does not work for a group? Is syntax for a group different?

OS: Vista 32-bit

Note: The computer is not part of a domain, if that matters.

like image 981
THX-1138 Avatar asked Nov 03 '09 21:11

THX-1138


People also ask

What does netsh http add Urlacl do?

add urlaclAdds a Uniform Resource Locator (URL) reservation entry. This command reserves the URL for non-administrator users and accounts. The DACL can be specified by using an NT account name with the listen and delegate parameters or by using an SDDL string.

What is a URL ACL?

This answer is not useful. Show activity on this post. Each URL access control list (ACL) reserves a portion of the HTTP URL namespace for a particular group of users. The reservation gives those users the right to create services that listen on that portion of the namespace.

What is a URL reservation?

A URL reservation defines the URLs that can be used to access a Reporting Services application. Reporting Services will reserve one or more URLs for the Report Server Web service and the web portal in HTTP.


1 Answers

Administrators is not part of DOMAIN but is part of BUILTIN, so correct command is:

netsh http add urlacl url=http://+:80/MyUri user=BUILTIN\Administrators

like image 53
THX-1138 Avatar answered Oct 11 '22 21:10

THX-1138