2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

トップのフォルダからサブフォルダまで一律同じアクセス権を設定する

Last updated at Posted at 2023-01-05

以下のコマンドをコマンドプロンプトから実行する

コマンド

rem /c アクセス拒否エラーを無視して操作を続行する
rem (OI) フォルダに対する継承アリ
rem (CI) ファイルに対する継承アリ
rem (F)  フルコントロール
rem (M)  変更
rem (RX) 読み取り
icacls "アクセス権を付与したいターゲットフォルダ" /c /grant ユーザー・グループ名1:(OI)(CI)(F) /grant ユーザー・グループ名2:(OI)(CI)(M)

ついでに、アクセス権の付与状況を取得するコマンドは以下


icacls "アクセス権を取得したいターゲットフォルダ" > "結果出力先ファイル"
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?