Skip to content

Commit 9e79735

Browse files
committed
Rewrote Cmdlets for StorageGRID 10.2
1 parent 798e378 commit 9e79735

5 files changed

Lines changed: 1348 additions & 579 deletions

File tree

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
S3-Mgmt
2-
=======
3-
4-
StorageGRID S3 Management PowerShell Module
1+
StorageGRID Webscale PowerShell Module
2+
======================================
53

64
Installation
75
------------
86

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`).
1010

1111
Usage
1212
-----
1313

14-
Check if S3-Mgmt Module can be found by PowerShell
14+
Check if StorageGRID-Webscale Module can be found by PowerShell
1515

16-
Get-Module -ListAvailable S3-Mgmt
16+
Get-Module -ListAvailable StorageGRID-Webscale
1717

1818
Import PowerShell Module
1919

20-
Import-Module S3-Mgmt
20+
Import-Module StorageGRID-Webscale
2121

22-
List all Cmdlets included in the S3-Mgmt Module
22+
List all Cmdlets included in the StorageGRID-Webscale Module
2323

24-
Get-Command -Module S3-Mgmt
24+
Get-Command -Module StorageGRID-Webscale
2525

2626
Show help for Cmdlet to connect to StorageGRID Management Server
2727

28-
Get-Help Connect-S3MgmtServer -Detailed
28+
Get-Help Connect-SGWServer -Detailed
2929

3030
Connect to StorageGRID Management Server (use the `-Insecure` switch to skip checking the certificate of the server)
3131

3232
$Credential = Get-Credential
33-
Connect-S3MgmtServer -Name myserver.mydomain.tld -Credential $Credential -Insecure
33+
Connect-SGWMgmtServer -Name myserver.mydomain.tld -Credential $Credential -Insecure
3434

35-
List all S3 Accounts
35+
List all StorageGRID-Webscale Accounts
3636

37-
Get-S3Accounts
37+
Get-SGWAccounts
3838

39-
Show Account Usage
39+
Show StorageGRID-Webscale Account Usage
4040

41-
Get-S3Accounts | Get-S3AccountUsage
41+
Get-SGWAccounts | Get-SGWAccountUsage
4242

43-
Trusting the Publisher of the S3-Mgmt Cmdlets
44-
-------------------------------------------------------
43+
Trusting the Publisher of the StorageGRID-Webscale Cmdlets
44+
----------------------------------------------------------
4545

4646
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
4747

0 commit comments

Comments
 (0)