Skip to content

Commit 649d1ef

Browse files
authored
Fix thumbprint format in Connect-SPOService example
Updated the thumbprint format in Example 9 for clarity.
1 parent 626f8cb commit 649d1ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Connect-SPOService.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ Connect to the SharePoint Online service using an app identity and a certificate
127127
### EXAMPLE 9
128128

129129
```powershell
130-
$thumbprint = "<3F2A5C9D4E7B8A1234567890ABCDEF1234567890>"
131-
$cert = Get-ChildItem Cert:\LocalMachine\My\$thumbprint "
130+
$thumbprint = "3F2A5C9D4E7B8A1234567890ABCDEF1234567890"
131+
$cert = Get-ChildItem Cert:\LocalMachine\My\$thumbprint
132132
Connect-SPOService -Url https://contoso-admin.sharepoint.com -ClientId 00000000-0000-0000-0000-000000000000 -Tenant 11111111-1111-1111-1111-111111111111 -Certificate $cert
133133
```
134134
Connect to the SharePoint Online service using an app identity and a certificate object.

0 commit comments

Comments
 (0)