Skip to content

Commit 83c8674

Browse files
authored
fixed an typo that will cause a connection issue
it should be https instead of http
1 parent 2649d36 commit 83c8674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Connect-SPOService.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Example 1 shows how a SharePoint Online global administrator with credential adm
5555
$username = "[email protected]"
5656
$password = "password"
5757
$cred = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $userName, $(convertto-securestring $Password -asplaintext -force)
58-
Connect-SPOService -Url http://contoso-admin.sharepoint.com/ -Credential $cred
58+
Connect-SPOService -Url https://contoso-admin.sharepoint.com/ -Credential $cred
5959
```
6060
Example 2 shows how a SharePoint Online global administrator with a username and password connects to a SharePoint Online Administration Center that has the URL http://contoso-admin.sharepoint.com/.
6161

0 commit comments

Comments
 (0)