icacls - nieprawidłowy błąd parametru

0

W Server 2008 R2 używam następującego polecenia i działa dobrze:

icacls “D:\wamp\apache” /grant “run_apache”:(OI)(CI)RX /T

Jednak za pomocą

icacls “D:\wamp\apache\logs” /grant “run_apache”:(OI)(CI)RWXD /T

powoduje wyświetlenie tego komunikatu o błędzie:

Invalid parameter “run_apache:(OI)(CI)RWXD”

Czy możesz mi powiedzieć, co jest nie tak i jak to naprawić?

David H Petersen
źródło

Odpowiedzi:

2

Za pomocą twojego polecenia otrzymuję ten sam błąd. Ale jeśli zmienię go na użycie RXWDzamiast RWXDdziała, to:

icacls "D:\wamp\apache\logs" /grant "run_apache":(OI)(CI)RXWD /T

Powodem tego jest RXWDkombinacja trzech uprawnień RX+ W+ D.

Maski uprawnień można wyświetlić, wpisując icacls /?:

ICACLS name [/grant[:r] Sid:perm[...]]
    /grant[:r] Sid:perm grants the specified user access rights. With :r,
        the permissions replace any previously granted explicit permissions.
        Without :r, the permissions are added to any previously granted
        explicit permissions.
    perm is a permission mask and can be specified in one of two forms:
        a sequence of simple rights:
                N - no access
                F - full access
                M - modify access
                RX - read and execute access
                R - read-only access
                W - write-only access
                D - delete access
OOOO
źródło