views:

20

answers:

2

icacls d:\users\dptname\username /grant:W company-domain\username:(OI)(CI)(M)

error says: invalid paramter "/grant:W"

why?

A: 

I got it. company-domain\username should be in quotation marks...

Aksedir
That's incorrect
Woot4Moo
A: 
grant:W 

is not valid because the only valid switch is

grant:r

or no switch at all. From the documentation

With :r the permissions replace any previously granted explicit permissions.
Without :r the permissions are added to any previously granted explicit permissions

Woot4Moo