1

Существует ли какая-либо команда DOS, с помощью которой я могу изменить разрешение для папки, находящейся на удаленном компьютере. Ценю вашу помощь по этому вопросу.

Благодарю.

2 ответа2

1

Похоже, такой команды специально для этого не существует, но вы можете использовать команду icacls таким образом, чтобы добиться того же

icacls \\Server_name\E$\test /grant:r "DOMAIN\%user%$":(OI)(CI)F

Надеюсь, что это помогает другим

-1
P:\>attrib /?
Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [+I | -I]
       [drive:][path][filename] [/S [/D] [/L]]

  +   Sets an attribute.
  -   Clears an attribute.
  R   Read-only file attribute.
  A   Archive file attribute.
  S   System file attribute.
  H   Hidden file attribute.
  I   Not content indexed file attribute.
  [drive:][path][filename]
      Specifies a file or files for attrib to process.
  /S  Processes matching files in the current folder
      and all subfolders.
  /D  Processes folders as well.
  /L  Work on the attributes of the Symbolic Link versus
      the target of the Symbolic Link

md test
attrib +A test

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .