|
1 | | -S3-Mgmt |
2 | | -======= |
3 | | - |
4 | | -StorageGRID S3 Management PowerShell Module |
| 1 | +StorageGRID Webscale PowerShell Module |
| 2 | +====================================== |
5 | 3 |
|
6 | 4 | Installation |
7 | 5 | ------------ |
8 | 6 |
|
9 | | -Extract S3-Mgmt.zip either to your preferred PowerShell Module location (e.g. `$HOME\WindowsPowershell\Documents\WindowsPowerShell\Modules` or `C:\Windows\System32\WindowsPowerShell\v1.0\Modules`). |
| 7 | +Download latest release from https://github.com/ffeldhaus/StorageGRID-Webscale/releases/latest. |
| 8 | + |
| 9 | +Extract StorageGRID-Webscale.zip to your preferred PowerShell Module location (e.g. `$HOME\WindowsPowershell\Documents\WindowsPowerShell\Modules` or `C:\Windows\System32\WindowsPowerShell\v1.0\Modules`). |
10 | 10 |
|
11 | 11 | Usage |
12 | 12 | ----- |
13 | 13 |
|
14 | | -Check if S3-Mgmt Module can be found by PowerShell |
| 14 | +Check if StorageGRID-Webscale Module can be found by PowerShell |
15 | 15 |
|
16 | | - Get-Module -ListAvailable S3-Mgmt |
| 16 | + Get-Module -ListAvailable StorageGRID-Webscale |
17 | 17 |
|
18 | 18 | Import PowerShell Module |
19 | 19 |
|
20 | | - Import-Module S3-Mgmt |
| 20 | + Import-Module StorageGRID-Webscale |
21 | 21 |
|
22 | | -List all Cmdlets included in the S3-Mgmt Module |
| 22 | +List all Cmdlets included in the StorageGRID-Webscale Module |
23 | 23 |
|
24 | | - Get-Command -Module S3-Mgmt |
| 24 | + Get-Command -Module StorageGRID-Webscale |
25 | 25 |
|
26 | 26 | Show help for Cmdlet to connect to StorageGRID Management Server |
27 | 27 |
|
28 | | - Get-Help Connect-S3MgmtServer -Detailed |
| 28 | + Get-Help Connect-SGWServer -Detailed |
29 | 29 |
|
30 | 30 | Connect to StorageGRID Management Server (use the `-Insecure` switch to skip checking the certificate of the server) |
31 | 31 |
|
32 | 32 | $Credential = Get-Credential |
33 | | - Connect-S3MgmtServer -Name myserver.mydomain.tld -Credential $Credential -Insecure |
| 33 | + Connect-SGWMgmtServer -Name myserver.mydomain.tld -Credential $Credential -Insecure |
34 | 34 |
|
35 | | -List all S3 Accounts |
| 35 | +List all StorageGRID-Webscale Accounts |
36 | 36 |
|
37 | | - Get-S3Accounts |
| 37 | + Get-SGWAccounts |
38 | 38 |
|
39 | | -Show Account Usage |
| 39 | +Show StorageGRID-Webscale Account Usage |
40 | 40 |
|
41 | | - Get-S3Accounts | Get-S3AccountUsage |
| 41 | + Get-SGWAccounts | Get-SGWAccountUsage |
42 | 42 |
|
43 | | -Trusting the Publisher of the S3-Mgmt Cmdlets |
44 | | -------------------------------------------------------- |
| 43 | +Trusting the Publisher of the StorageGRID-Webscale Cmdlets |
| 44 | +---------------------------------------------------------- |
45 | 45 |
|
46 | 46 | This PowerShell Module is signed with a code signing certificate issued by the *NetApp Corp Issuing CA 1*. If the PowerShell execution policy requires powershell scripts to be signed (see [about_Execution_Policies](technet.microsoft.com/library/hh847748.aspx) for details), two steps are required to run this PowerShell Module |
47 | 47 |
|
|
0 commit comments