Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation instructions for install from PSGallery #223

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions RestSetAcls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ RestSetAcls.psm1 is a PowerShell module that provides functions to set Access Co

## Installation

1. Download the `RestSetAcls.psm1` file from this repo.
1. Save the file to a local directory.
```powershell
Install-Module RestSetAcls
```

## Usage

Expand Down Expand Up @@ -58,7 +59,6 @@ RestSetAcls.psm1 is a PowerShell module that provides functions to set Access Co
```powershell
$FileShareName = "<file-share-name>" # replace with the name of your file share

Import-Module -Name "Path\To\RestSetAcls.psm1" # replace with the path to the downloaded RestSetAcls.psm1 file
Set-AzureFilesAclRecursive -Context $context -FileShareName $FileShareName -FilePath "/" -SddlPermission $sddl
```

Expand Down