Skip to content

Commit 91c48e3

Browse files
committed
Change recommended execution policy in README to RemoteSigned
1 parent aee79d1 commit 91c48e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ By default PowerShell 5 and later have the official [Microsoft PowerShell Galler
1818
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
1919
```
2020

21-
The StorageGRID Webscale Cmdlets are code signed. PowerShell (**currently only on Windows!**) can verify the code signature and only run signed code. To run the Cmdlets you need to ensure that your execution policy is set to either `AllSigned`, `RemoteSigned`, `Unrestricted`, `Bypass`. It is recommended to use `AllSigned`.
21+
The StorageGRID Webscale Cmdlets are code signed. PowerShell (**currently only on Windows!**) can verify the code signature and only run signed code. To run the Cmdlets you need to ensure that your execution policy is set to either `AllSigned`, `RemoteSigned`, `Unrestricted`, `Bypass`. It is recommended to use `RemoteSigned`.
2222

2323
```powershell
2424
Get-ExecutionPolicy
2525
```
2626

27-
You can change the execution policy using the following command. It is recommended to change it only for the current user and use `AllSigned`:
27+
You can change the execution policy using the following command. It is recommended to change it only for the current user and use `RemoteSigned`:
2828

2929
```powershell
30-
Set-ExecutionPolicy -ExecutionPolicy AllSigned -Scope CurrentUser
30+
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
3131
```
3232

3333
To install the Cmdlets only for the current user run

0 commit comments

Comments
 (0)