You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This tutorial will give an introduction to the StorageGRID S3 Management PowerShell Cmdlets
3
+
This tutorial will give an introduction to the StorageGRID Webscale PowerShell Cmdlets
4
4
5
5
## Discovering the available Cmdlets
6
6
7
-
Load the S3-Mgmt Module
7
+
Load the StorageGRID-Webscale Module
8
8
9
9
```powershell
10
-
Import-Module S3-Mgmt
10
+
Import-Module StorageGRID-Webscale
11
11
```
12
12
13
-
Show all available Cmdlets from the S3-Mgmt Module
13
+
Show all available Cmdlets from the StorageGRID-Webscale Module
14
14
15
15
```powershell
16
-
Get-Command -Module S3-Mgmt
16
+
Get-Command -Module StorageGRID-Webscale
17
17
```
18
18
19
-
Show the syntax of all Cmdlets from the S3-Mgmt Module
19
+
Show the syntax of all Cmdlets from the StorageGRID-Webscale Module
20
20
21
21
```powershell
22
-
Get-Command -Module S3-Mgmt
22
+
Get-Command -Module StorageGRID-Webscale -Syntax
23
23
```
24
24
25
-
To get detailed help including examples for a specific Cmdlet (e.g. for Connect-S3MgmtServer) run
25
+
To get detailed help including examples for a specific Cmdlet (e.g. for Connect-SGWServer) run
26
26
27
27
```powershell
28
-
Get-Help Connect-S3MgmtServer -Detailed
28
+
Get-Help Connect-SGWServer -Detailed
29
29
```
30
30
31
31
## Connecting to a StorageGRID Management Server
32
32
33
-
For data retrieval a connection to the StorageGRID Management Server is required. The Connect-S3MgmtServer Cmdlet expects the hostname or IP and the credentials for authentication
33
+
For data retrieval a connection to the StorageGRID Management Server is required. The Connect-SGWServer Cmdlet expects the hostname or IP and the credentials for authentication
0 commit comments