We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e703a1a commit 6d20c6cCopy full SHA for 6d20c6c
1 file changed
README.md
@@ -76,12 +76,12 @@ Show help for Cmdlet to connect to StorageGRID Management Server
76
Get-Help Connect-SgwServer -Detailed
77
```
78
79
-Connect to StorageGRID Management Server (use the `-Insecure` switch to skip checking the certificate of the server)
+Connect to StorageGRID Management Server (use the `-SkipCertificateCheck` switch to skip checking the certificate of the server)
80
81
```powershell
82
$Credential = Get-Credential
83
- $Server = "nms.mydomain.tld"
84
- Connect-SgwServer -Name $Server -Credential $Credential -Insecure
+ $Name = "admin-node.example.org"
+ Connect-SgwServer -Name $Name -Credential $Credential -SkipCertificateCheck
85
86
87
List all StorageGRID-Webscale Accounts
0 commit comments