@pnp/cli-microsoft365 6.6.0 → 6.7.0-beta.1a86d83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/README.md +10 -10
  3. package/csom.json +2 -0
  4. package/dist/Auth.js +75 -4
  5. package/dist/AuthServer.js +2 -1
  6. package/dist/Command.js +56 -7
  7. package/dist/m365/aad/commands/user/user-set.js +145 -30
  8. package/dist/m365/base/AzmgmtCommand.js +11 -0
  9. package/dist/m365/base/PowerAppsCommand.js +11 -0
  10. package/dist/m365/base/PowerPlatformCommand.js +11 -0
  11. package/dist/m365/commands/login.js +17 -1
  12. package/dist/m365/commands/status.js +4 -2
  13. package/dist/m365/flow/commands/run/run-get.js +31 -1
  14. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-get.js +144 -0
  15. package/dist/m365/spo/commands/file/file-list.js +108 -32
  16. package/dist/m365/spo/commands/folder/folder-list.js +73 -16
  17. package/dist/m365/spo/commands/list/list-add.js +7 -0
  18. package/dist/m365/spo/commands/list/list-set.js +7 -0
  19. package/dist/m365/spo/commands/listitem/listitem-list.js +113 -55
  20. package/dist/m365/spo/commands/site/site-recyclebinitem-clear.js +115 -0
  21. package/dist/m365/spo/commands.js +2 -0
  22. package/dist/m365/teams/commands/team/team-add.js +2 -2
  23. package/dist/request.js +7 -0
  24. package/dist/utils/misc.js +11 -0
  25. package/docs/docs/cmd/aad/user/user-set.md +53 -8
  26. package/docs/docs/cmd/flow/run/run-get.md +110 -9
  27. package/docs/docs/cmd/login.md +5 -2
  28. package/docs/docs/cmd/planner/task/task-add.md +3 -1
  29. package/docs/docs/cmd/planner/task/task-set.md +6 -4
  30. package/docs/docs/cmd/pp/tenant/tenant-settings-list.md +25 -9
  31. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.md +145 -0
  32. package/docs/docs/cmd/spo/file/file-list.md +87 -2
  33. package/docs/docs/cmd/spo/folder/folder-list.md +36 -1
  34. package/docs/docs/cmd/spo/list/list-add.md +3 -0
  35. package/docs/docs/cmd/spo/list/list-set.md +3 -0
  36. package/docs/docs/cmd/spo/listitem/listitem-list.md +22 -8
  37. package/docs/docs/cmd/spo/site/site-recyclebinitem-clear.md +45 -0
  38. package/docs/docs/cmd/spo/spo-get.md +12 -0
  39. package/docs/docs/cmd/spo/spo-search.md +16 -3
  40. package/docs/docs/cmd/spo/user/user-ensure.md +1 -2
  41. package/docs/docs/cmd/spo/user/user-get.md +24 -0
  42. package/docs/docs/cmd/spo/user/user-list.md +27 -3
  43. package/docs/docs/cmd/spo/userprofile/userprofile-get.md +21 -0
  44. package/docs/docs/cmd/spo/web/web-add.md +24 -0
  45. package/docs/docs/cmd/spo/web/web-clientsidewebpart-list.md +16 -0
  46. package/docs/docs/cmd/spo/web/web-get.md +124 -0
  47. package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +16 -0
  48. package/docs/docs/cmd/spo/web/web-list.md +16 -0
  49. package/docs/docs/cmd/spo/web/web-retentionlabel-list.md +29 -2
  50. package/docs/docs/cmd/tenant/id/id-get.md +6 -0
  51. package/docs/docs/cmd/tenant/report/report-activeusercounts.md +7 -0
  52. package/docs/docs/cmd/tenant/report/report-activeuserdetail.md +7 -0
  53. package/docs/docs/cmd/tenant/report/report-office365activationcounts.md +7 -0
  54. package/docs/docs/cmd/tenant/report/report-office365activationsusercounts.md +7 -0
  55. package/docs/docs/cmd/tenant/report/report-office365activationsuserdetail.md +7 -0
  56. package/docs/docs/cmd/tenant/report/report-servicesusercounts.md +7 -0
  57. package/docs/docs/cmd/tenant/security/security-alerts-list.md +23 -0
  58. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +32 -0
  59. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-list.md +32 -0
  60. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-get.md +26 -0
  61. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +26 -0
  62. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-get.md +22 -0
  63. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +22 -0
  64. package/npm-shrinkwrap.json +2 -2
  65. package/package.json +3 -2
  66. package/dist/m365/spo/commands/file/FilePropertiesCollection.js +0 -3
  67. package/dist/m365/spo/commands/folder/FileFolderCollection.js +0 -3
@@ -32,7 +32,7 @@ m365 spo listitem list [options]
32
32
  : OData filter to use to query the list of items with. Specify `camlQuery` or `filter` but not both.
33
33
 
34
34
  `-p, --pageSize [pageSize]`
35
- : Number of list items to return. Specify `camlQuery` or `pageSize` but not both.
35
+ : Number of list items to return. Specify `camlQuery` or `pageSize` but not both. The default value is 5000.
36
36
 
37
37
  `-n, --pageNumber [pageNumber]`
38
38
  : Page number to return if `pageSize` is specified (first page is indexed as value of 0).
@@ -41,6 +41,8 @@ m365 spo listitem list [options]
41
41
 
42
42
  ## Remarks
43
43
 
44
+ This command retrieves all items in the list, even if there are more than 5000. Use the `pageSize` and `pageNumber` options if you only want a specific amount of items. When using a CAML query, include a `RowLimit`-node to get all items. If you run into list view threshold exceptions, remove any Query-conditions or filters and also include a `RowLimit`-node.
45
+
44
46
  `pageNumber` is specified as a 0-based index. A value of `2` returns the third page of items.
45
47
 
46
48
  If you want to specify a lookup type in the `properties` option, define which columns from the related list should be returned.
@@ -53,12 +55,6 @@ Get all items from a list named Demo List
53
55
  m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x
54
56
  ```
55
57
 
56
- From a list named _Demo List_ get all items with title _Demo list item_ using a CAML query
57
-
58
- ```sh
59
- m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query></View>"
60
- ```
61
-
62
58
  Get all items from a list with ID _935c13a0-cc53-4103-8b48-c1d0828eaa7f_
63
59
 
64
60
  ```sh
@@ -83,10 +79,16 @@ From a list named _Demo List_ get all items with title _Demo list item_ using an
83
79
  m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --filter "Title eq 'Demo list item'"
84
80
  ```
85
81
 
82
+ From a list named _Demo List_ get the first 100 items
83
+
84
+ ```sh
85
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 100 --pageNumber 0
86
+ ```
87
+
86
88
  From a list named _Demo List_ get the second batch of 10 items
87
89
 
88
90
  ```sh
89
- m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 2
91
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 1
90
92
  ```
91
93
 
92
94
  Get all items from a list by server-relative URL
@@ -95,6 +97,18 @@ Get all items from a list by server-relative URL
95
97
  m365 spo listitem list --listUrl /sites/project-x/documents --webUrl https://contoso.sharepoint.com/sites/project-x
96
98
  ```
97
99
 
100
+ From a list named _Demo List_ get all items with title _Demo list item_ using a CAML query
101
+
102
+ ```sh
103
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query><RowLimit Paged='TRUE'>5000</RowLimit></View>"
104
+ ```
105
+
106
+ From a library named _Demo Library_ with 5000+ files and folders, get all items recursively without running into a list view threshold exception, using a CAML query
107
+
108
+ ```sh
109
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View Scope='RecursiveAll'><Query></Query><ViewFields><FieldRef Name='Title'/></ViewFields><RowLimit Paged='TRUE'>5000</RowLimit></View>"
110
+ ```
111
+
98
112
  ## Response
99
113
 
100
114
  === "JSON"
@@ -0,0 +1,45 @@
1
+ # spo site recyclebinitem clear
2
+
3
+ Permanently removes all items in a site recycle bin
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo site recyclebinitem clear [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --siteUrl <siteUrl>`
14
+ : URL of the site where the recycle bin is located.
15
+
16
+ `--secondary`
17
+ : Remove all items from the second-stage recycle bin. When not specified, items from the first-stage recycle bin will be cleared.
18
+
19
+ `--confirm`
20
+ : Don't prompt for confirmation.
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Remarks
25
+
26
+ !!! warning
27
+ Items in the recycle bin will be permanently removed without the ability to restore them.
28
+
29
+ ## Examples
30
+
31
+ Clear all items from the first-stage recycle bin
32
+
33
+ ```sh
34
+ m365 spo site recyclebinitem clear --siteUrl https://contoso.sharepoint.com/sites/sales
35
+ ```
36
+
37
+ Clear all items from the second-stage recycle bin
38
+
39
+ ```sh
40
+ m365 spo site recyclebinitem clear --siteUrl https://contoso.sharepoint.com/sites/sales --secondary
41
+ ```
42
+
43
+ ## Response
44
+
45
+ The command won't return a response on success.
@@ -46,3 +46,15 @@ m365 spo get --output json
46
46
  SpoUrl
47
47
  https://contoso.sharepoint.com
48
48
  ```
49
+
50
+ === "Markdown"
51
+
52
+ ```md
53
+ # spo get
54
+
55
+ Date: 4/10/2023
56
+
57
+ Property | Value
58
+ ---------|-------
59
+ SpoUrl | https://contoso.sharepoint.com
60
+ ```
@@ -126,9 +126,9 @@ m365 spo search --queryText "*" --sourceId "6e71030e-5e16-4406-9bff-9c1829843083
126
126
  === "Text"
127
127
 
128
128
  ```text
129
- Title OriginalPath
130
- ----------------------- --------------------------------------------------------------------------------------------------------
131
- Document https://contoso.sharepoint.com/Shared Documents/Document.docx
129
+ Title OriginalPath
130
+ -------- -------------------------------------------------------------
131
+ Document https://contoso.sharepoint.com/Shared Documents/Document.docx
132
132
  ```
133
133
 
134
134
  === "CSV"
@@ -138,3 +138,16 @@ m365 spo search --queryText "*" --sourceId "6e71030e-5e16-4406-9bff-9c1829843083
138
138
  Document,https://contoso.sharepoint.com/Shared Documents/Document.docx
139
139
  ```
140
140
 
141
+ === "Markdown"
142
+
143
+ ```md
144
+ # spo search --queryText "Title:Marketing*" --rowLimit "50" --trimDuplicates "true"
145
+
146
+ Date: 4/10/2023
147
+
148
+ ## Marketing lunch
149
+ Property | Value
150
+ ---------|-------
151
+ Title | Marketing lunch
152
+ OriginalPath | https://contoso.sharepoint.com/sites/contosoportal/SitePages/Marketing-Lunch.aspx
153
+ ```
@@ -86,7 +86,7 @@ m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/project --use
86
86
  === "Markdown"
87
87
 
88
88
  ```md
89
- # spo user ensure --webUrl "https://mathijsdev2.sharepoint.com" --userName "john@contoso.com"
89
+ # spo user ensure --webUrl "https://contoso.sharepoint.com" --userName "john@contoso.com"
90
90
 
91
91
  Date: 18/02/2023
92
92
 
@@ -104,6 +104,5 @@ m365 spo user ensure --webUrl https://contoso.sharepoint.com/sites/project --use
104
104
  IsEmailAuthenticationGuestUser | false
105
105
  IsShareByEmailGuestUser | false
106
106
  IsSiteAdmin | false
107
- UserId | {"NameId":"100320009d80e5de","NameIdIssuer":"urn:federation:microsoftonline"}
108
107
  UserPrincipalName | john@contoso.com
109
108
  ```
@@ -91,3 +91,27 @@ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --logi
91
91
  Id,IsHiddenInUI,LoginName,Title,PrincipalType,Email,Expiration,IsEmailAuthenticationGuestUser,IsShareByEmailGuestUser,IsSiteAdmin,UserId,UserPrincipalName
92
92
  10,,i:0#.f|membership|johndoe@contoso.onmicrosoft.com,John Doe,1,johndoe@contoso.onmicrosoft.com,,,,,"{""NameId"":""100320022ec308a7"",""NameIdIssuer"":""urn:federation:microsoftonline""}",johndoe@contoso.onmicrosoft.com
93
93
  ```
94
+
95
+ === "Markdown"
96
+
97
+ ```md
98
+ # spo user get --webUrl "https://contoso.sharepoint.com" --loginName "i:0#.f|membership|john.doe@contoso.onmicrosoft.com"
99
+
100
+ Date: 4/10/2023
101
+
102
+ ## John Doe (9)
103
+
104
+ Property | Value
105
+ ---------|-------
106
+ Id | 10
107
+ IsHiddenInUI | false
108
+ LoginName | i:0#.f\|membership\|john.doe@contoso.onmicrosoft.com
109
+ Title | Reshmee Auckloo
110
+ PrincipalType | 1
111
+ Email | john.doe@contoso.onmicrosoft.com
112
+ Expiration |
113
+ IsEmailAuthenticationGuestUser | false
114
+ IsShareByEmailGuestUser | false
115
+ IsSiteAdmin | false
116
+ UserPrincipalName | john.doe@contoso.onmicrosoft.com
117
+ ```
@@ -52,9 +52,9 @@ m365 spo user list --webUrl https://contoso.sharepoint.com/sites/project-x
52
52
  === "Text"
53
53
 
54
54
  ```text
55
- Id Title LoginName
56
- ---------- ------------------------------ --------------------------------------------------------------------------
57
- 10 John Doe i:0#.f|membership|johndoe@contoso.onmicrosoft.com
55
+ Id Title LoginName
56
+ --- -------- -------------------------------------------------
57
+ 10 John Doe i:0#.f|membership|johndoe@contoso.onmicrosoft.com
58
58
  ```
59
59
 
60
60
  === "CSV"
@@ -63,3 +63,27 @@ m365 spo user list --webUrl https://contoso.sharepoint.com/sites/project-x
63
63
  Id,Title,LoginName
64
64
  10,John Doe,i:0#.f|membership|johndoe@contoso.onmicrosoft.com
65
65
  ```
66
+
67
+ === "Markdown"
68
+
69
+ ```md
70
+ # spo user list --webUrl "https://contoso.sharepoint.com/sites/project-x"
71
+
72
+ Date: 4/10/2023
73
+
74
+ ## John Doe (10)
75
+
76
+ Property | Value
77
+ ---------|-------
78
+ Id | 7
79
+ IsHiddenInUI | false
80
+ LoginName | c:0o.c\|membership\|johndoe@contoso.onmicrosoft.com
81
+ Title | John Doe
82
+ PrincipalType | 1
83
+ Email | johndoe@contoso.onmicrosoft.com
84
+ Expiration |
85
+ IsEmailAuthenticationGuestUser | false
86
+ IsShareByEmailGuestUser | false
87
+ IsSiteAdmin | false
88
+ UserPrincipalName | johndoe@contoso.onmicrosoft.com
89
+ ```
@@ -611,4 +611,25 @@ m365 spo userprofile get --userName 'john.doe@mytenant.onmicrosoft.com'
611
611
  i:0#.f|membership|johndoe@contoso.onmicrosoft.com,[],John Doe,johndoe@contoso.onmicrosoft.com,[],"[""i:0#.f|membership|johndoe@contoso.onmicrosoft.com""]",,,[],https://contoso-my.sharepoint.com:443/,https://contoso-my.sharepoint.com/personal/john_contoso_onmicrosoft_com/,,,"[{""Key"":""UserProfile_GUID"",""Value"":""0b4f6da0-97db-456e-993d-80e035057600"",""ValueType"":""Edm.String""},{""Key"":""SID"",""Value"":""i:0h.f|membership|100320022ec308a7@live.com"",""ValueType"":""Edm.String""},{""Key"":""ADGuid"",""Value"":""System.Byte[]"",""ValueType"":""Edm.String""},{""Key"":""AccountName"",""Value"":""i:0#.f|membership|johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""FirstName"",""Value"":""John"",""ValueType"":""Edm.String""},{""Key"":""SPS-PhoneticFirstName"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""LastName"",""Value"":""Doe"",""ValueType"":""Edm.String""},{""Key"":""SPS-PhoneticLastName"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""PreferredName"",""Value"":""John Doe"",""ValueType"":""Edm.String""},{""Key"":""SPS-PhoneticDisplayName"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""WorkPhone"",""Value"":""494594133"",""ValueType"":""Edm.String""},{""Key"":""Department"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""Title"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Department"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""Manager"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""AboutMe"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""PersonalSpace"",""Value"":""/personal/john_contoso_onmicrosoft_com/"",""ValueType"":""Edm.String""},{""Key"":""PictureURL"",""Value"":""https://contoso-my.sharepoint.com:443/User%20Photos/Profile%20Pictures/78ccf530-bbf0-47e4-aae6-da5f8c6fb142_MThumb.jpg"",""ValueType"":""Edm.String""},{""Key"":""UserName"",""Value"":""johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""QuickLinks"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""WebSite"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""PublicSiteRedirect"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-JobTitle"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-DataSource"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-MemberOf"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Dotted-line"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Peers"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Responsibility"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-SipAddress"",""Value"":""johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""SPS-MySiteUpgrade"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-DontSuggestList"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ProxyAddresses"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-HireDate"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-DisplayOrder"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ClaimID"",""Value"":""johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""SPS-ClaimProviderID"",""Value"":""membership"",""ValueType"":""Edm.String""},{""Key"":""SPS-LastColleagueAdded"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-OWAUrl"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ResourceSID"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ResourceAccountName"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-MasterAccountName"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-UserPrincipalName"",""Value"":""johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""SPS-O15FirstRunExperience"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteInstantiationState"",""Value"":""2"",""ValueType"":""Edm.String""},{""Key"":""SPS-DistinguishedName"",""Value"":""CN=78ccf530-bbf0-47e4-aae6-da5f8c6fb142,OU=0cac6cda-2e04-4a3d-9c16-9c91470d7022,OU=Tenants,OU=MSOnline,DC=SPODS188311,DC=msft,DC=net"",""ValueType"":""Edm.String""},{""Key"":""SPS-SourceObjectDN"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-LastKeywordAdded"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ClaimProviderType"",""Value"":""Forms"",""ValueType"":""Edm.String""},{""Key"":""SPS-SavedAccountName"",""Value"":""i:0#.f|membership|johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""SPS-SavedSID"",""Value"":""System.Byte[]"",""ValueType"":""Edm.String""},{""Key"":""SPS-ObjectExists"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteCapabilities"",""Value"":""36"",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteFirstCreationTime"",""Value"":""9/12/2022 6:19:29 PM"",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteLastCreationTime"",""Value"":""9/12/2022 6:19:29 PM"",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteNumberOfRetries"",""Value"":""1"",""ValueType"":""Edm.String""},{""Key"":""SPS-PersonalSiteFirstCreationError"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-FeedIdentifier"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""WorkEmail"",""Value"":""johndoe@contoso.onmicrosoft.com"",""ValueType"":""Edm.String""},{""Key"":""CellPhone"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""Fax"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""HomePhone"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""Office"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Location"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""Assistant"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-PastProjects"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Skills"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-School"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Birthday"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-StatusNotes"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Interests"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-HashTags"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-EmailOptin"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-PrivacyPeople"",""Value"":""True"",""ValueType"":""Edm.String""},{""Key"":""SPS-PrivacyActivity"",""Value"":""4095"",""ValueType"":""Edm.String""},{""Key"":""SPS-PictureTimestamp"",""Value"":""63799442436"",""ValueType"":""Edm.String""},{""Key"":""SPS-PicturePlaceholderState"",""Value"":""1"",""ValueType"":""Edm.String""},{""Key"":""SPS-PictureExchangeSyncState"",""Value"":""1"",""ValueType"":""Edm.String""},{""Key"":""SPS-MUILanguages"",""Value"":""en-US"",""ValueType"":""Edm.String""},{""Key"":""SPS-ContentLanguages"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-TimeZone"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-RegionalSettings-FollowWeb"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Locale"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-CalendarType"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-AltCalendarType"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-AdjustHijriDays"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-ShowWeeks"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-WorkDays"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-WorkDayStartHour"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-WorkDayEndHour"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-Time24"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-FirstDayOfWeek"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-FirstWeekOfYear"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-RegionalSettings-Initialized"",""Value"":""True"",""ValueType"":""Edm.String""},{""Key"":""OfficeGraphEnabled"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-UserType"",""Value"":""0"",""ValueType"":""Edm.String""},{""Key"":""SPS-HideFromAddressLists"",""Value"":""False"",""ValueType"":""Edm.String""},{""Key"":""SPS-RecipientTypeDetails"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""DelveFlags"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""PulseMRUPeople"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""msOnline-ObjectId"",""Value"":""78ccf530-bbf0-47e4-aae6-da5f8c6fb142"",""ValueType"":""Edm.String""},{""Key"":""SPS-PointPublishingUrl"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-TenantInstanceId"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-SharePointHomeExperienceState"",""Value"":""17301504"",""ValueType"":""Edm.String""},{""Key"":""SPS-RefreshToken"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""SPS-MultiGeoFlags"",""Value"":"""",""ValueType"":""Edm.String""},{""Key"":""PreferredDataLocation"",""Value"":"""",""ValueType"":""Edm.String""}]",https://contoso-my.sharepoint.com:443/Person.aspx?accountname=i%3A0%23%2Ef%7Cmembership%7Cjohn%40contoso%2Eonmicrosoft%2Ecom
612
612
  ```
613
613
 
614
+ === "Markdown"
614
615
 
616
+ ```md
617
+ # spo userprofile get --userName "johndoe@mytenant.onmicrosoft.com"
618
+
619
+ Date: 4/10/2023
620
+
621
+ ## John Doe
622
+
623
+ Property | Value
624
+ ---------|-------
625
+ AccountName | i:0#.f\|membership\|johndoe@mytenant.onmicrosoft.com
626
+ DisplayName | John Doe
627
+ Email | johndoe@mytenant.onmicrosoft.com
628
+ IsFollowed | false
629
+ LatestPost | null
630
+ PersonalSiteHostUrl | https://johndoe-my.sharepoint.com:443/
631
+ PersonalUrl | https://johndoe-my.sharepoint.com/personal/johndoe\_johndoe\_onmicrosoft\_com/
632
+ PictureUrl | null
633
+ Title | null
634
+ UserUrl | https://johndoe-my.sharepoint.com:443/Person.aspx?accountname=i%3A0%23%2Ef%7Cmembership%7Cjohndoe%40johndoe%2Eonmicrosoft%2Ecom
635
+ ```
@@ -98,3 +98,27 @@ m365 spo web add --title Subsite --url subsite --webTemplate STS#0 --parentWebUr
98
98
  Configuration,Created,Description,Id,Language,LastItemModifiedDate,LastItemUserModifiedDate,ServerRelativeUrl,Title,WebTemplate,WebTemplateId
99
99
  0,2022-11-05T14:09:11,Subsite,0cbf2896-bac2-4244-b871-68b413ee7b2f,1033,2022-11-05T14:09:22Z,2022-11-05T14:09:22Z,/subsite,Subsite,STS,0
100
100
  ```
101
+
102
+ === "Markdown"
103
+
104
+ ```md
105
+ # spo web add --title "Subsite" --url "subsite" --webTemplate "STS#0" --parentWebUrl "https://contoso.sharepoint.com" --inheritNavigation "true"
106
+
107
+ Date: 4/10/2023
108
+
109
+ ## Subsite (261ab6d3-0064-47d8-9189-82e5745d7a7f)
110
+
111
+ Property | Value
112
+ ---------|-------
113
+ Configuration | 0
114
+ Created | 2023-04-10T06:38:24
115
+ Description |
116
+ Id | 261ab6d3-0064-47d8-9189-82e5745d7a7f
117
+ Language | 1033
118
+ LastItemModifiedDate | 2023-04-10T06:38:32Z
119
+ LastItemUserModifiedDate | 2023-04-10T06:38:32Z
120
+ ServerRelativeUrl | /subsite
121
+ Title | Subsite
122
+ WebTemplate | STS
123
+ WebTemplateId | 0
124
+ ```
@@ -51,3 +51,19 @@ m365 spo web clientsidewebpart list --webUrl https://contoso.sharepoint.com
51
51
  Id,Name,Title
52
52
  9cc0f495-db64-4d74-b06b-a3de16231fe1,9cc0f495-db64-4d74-b06b-a3de16231fe1,Dashboard for Viva Connections
53
53
  ```
54
+
55
+ === "Markdown"
56
+
57
+ ```md
58
+ # spo web clientsidewebpart list --webUrl "https://contoso.sharepoint.com"
59
+
60
+ Date: 4/10/2023
61
+
62
+ ## Dashboard for Viva Connections (9cc0f495-db64-4d74-b06b-a3de16231fe1)
63
+
64
+ Property | Value
65
+ ---------|-------
66
+ Id | 9cc0f495-db64-4d74-b06b-a3de16231fe1
67
+ Name | 9cc0f495-db64-4d74-b06b-a3de16231fe1
68
+ Title | Dashboard for Viva Connections
69
+ ```
@@ -168,6 +168,68 @@ m365 spo web get --url https://contoso.sharepoint.com/subsite --withPermissions
168
168
  1,,00000000-0000-0000-0000-000000000000,,0,2022-09-12T18:18:07.253,"{""StringValue"":""1;2;d8b65bb3-6ca1-4df2-a4be-0efe08af2580;638032554734300000;715586625""}",/_catalogs/masterpage/seattle.master,,00000000-0000-0000-0000-000000000000,,,0,1,0,0,0,,,d8b65bb3-6ca1-4df2-a4be-0efe08af2580,,,,,1,,1033,2022-11-05T14:06:21Z,2022-10-31T07:29:33Z,0,/_catalogs/masterpage/seattle.master,1,,,,,"{""DecodedUrl"":""https://contoso.sharepoint.com""}",1,1,0,/,,1,0,Communication site,,15,,https://contoso.sharepoint.com,SITEPAGEPUBLISHING,SitePages/Home.aspx
169
169
  ```
170
170
 
171
+ === "Markdown"
172
+
173
+ ```md
174
+ # spo web get --url "https://contoso.sharepoint.com/subsite"
175
+
176
+ Date: 4/10/2023
177
+
178
+ ## Subsite (c59dae7c-48bd-4241-96b7-b81d4bbc25cb)
179
+
180
+ Property | Value
181
+ ---------|-------
182
+ AllowRssFeeds | true
183
+ AlternateCssUrl |
184
+ AppInstanceId | 00000000-0000-0000-0000-000000000000
185
+ ClassicWelcomePage | null
186
+ Configuration | 0
187
+ Created | 2021-09-22T01:54:52.18
188
+ CustomMasterUrl | /subsite/\_catalogs/masterpage/seattle.master
189
+ Description |
190
+ DesignPackageId | 00000000-0000-0000-0000-000000000000
191
+ DocumentLibraryCalloutOfficeWebAppPreviewersDisabled | false
192
+ EnableMinimalDownload | false
193
+ FooterEmphasis | 0
194
+ FooterEnabled | false
195
+ FooterLayout | 0
196
+ HeaderEmphasis | 0
197
+ HeaderLayout | 2
198
+ HideTitleInHeader | false
199
+ HorizontalQuickLaunch | false
200
+ Id | c59dae7c-48bd-4241-96b7-b81d4bbc25cb
201
+ IsEduClass | false
202
+ IsEduClassProvisionChecked | false
203
+ IsEduClassProvisionPending | false
204
+ IsHomepageModernized | false
205
+ IsMultilingual | true
206
+ IsRevertHomepageLinkHidden | false
207
+ Language | 1033
208
+ LastItemModifiedDate | 2023-04-10T06:07:56Z
209
+ LastItemUserModifiedDate | 2023-03-05T08:33:24Z
210
+ LogoAlignment | 0
211
+ MasterUrl | /subsite/\_catalogs/masterpage/seattle.master
212
+ MegaMenuEnabled | false
213
+ NavAudienceTargetingEnabled | false
214
+ NoCrawl | false
215
+ ObjectCacheEnabled | false
216
+ OverwriteTranslationsOnChange | false
217
+ QuickLaunchEnabled | true
218
+ RecycleBinEnabled | true
219
+ SearchScope | 0
220
+ ServerRelativeUrl | /subsite
221
+ SiteLogoUrl | /subsite/\_api/GroupService/GetGroupImage?id='58c0c654-ce7d-444b-9f5f-bc246400f176'&hash=637696347741828775
222
+ SyndicationEnabled | true
223
+ TenantAdminMembersCanShare | 0
224
+ Title | Subsite
225
+ TreeViewEnabled | false
226
+ UIVersion | 15
227
+ UIVersionConfigurationEnabled | false
228
+ Url | https://contoso.sharepoint.com/subsite
229
+ WebTemplate | GROUP
230
+ WelcomePage | SitePages/Home.aspx
231
+ ```
232
+
171
233
  ### `withGroups`, `withPermissions` response
172
234
 
173
235
  When we make use of the option `withGroups` or `withPermissions` the response will differ.
@@ -414,3 +476,65 @@ When we make use of the option `withGroups` or `withPermissions` the response wi
414
476
  AssociatedMemberGroup,AssociatedOwnerGroup,AssociatedVisitorGroup,AllowRssFeeds,AlternateCssUrl,AppInstanceId,ClassicWelcomePage,Configuration,Created,CurrentChangeToken,CustomMasterUrl,Description,DesignPackageId,DocumentLibraryCalloutOfficeWebAppPreviewersDisabled,EnableMinimalDownload,FooterEmphasis,FooterEnabled,FooterLayout,HeaderEmphasis,HeaderLayout,HideTitleInHeader,HorizontalQuickLaunch,Id,IsEduClass,IsEduClassProvisionChecked,IsEduClassProvisionPending,IsHomepageModernized,IsMultilingual,IsRevertHomepageLinkHidden,Language,LastItemModifiedDate,LastItemUserModifiedDate,LogoAlignment,MasterUrl,MegaMenuEnabled,NavAudienceTargetingEnabled,NoCrawl,ObjectCacheEnabled,OverwriteTranslationsOnChange,ResourcePath,QuickLaunchEnabled,RecycleBinEnabled,SearchScope,ServerRelativeUrl,SiteLogoUrl,SyndicationEnabled,TenantAdminMembersCanShare,Title,TreeViewEnabled,UIVersion,UIVersionConfigurationEnabled,Url,WebTemplate,WelcomePage,RoleAssignments
415
477
  "{""Id"":5,""IsHiddenInUI"":false,""LoginName"":""Communication site Members"",""Title"":""Communication site Members"",""PrincipalType"":8,""AllowMembersEditMembership"":true,""AllowRequestToJoinLeave"":false,""AutoAcceptRequestToJoinLeave"":false,""Description"":null,""OnlyAllowMembersViewMembership"":false,""OwnerTitle"":""Communication site Owners"",""RequestToJoinLeaveEmailSetting"":""""}","{""Id"":3,""IsHiddenInUI"":false,""LoginName"":""Communication site Owners"",""Title"":""Communication site Owners"",""PrincipalType"":8,""AllowMembersEditMembership"":false,""AllowRequestToJoinLeave"":false,""AutoAcceptRequestToJoinLeave"":false,""Description"":null,""OnlyAllowMembersViewMembership"":false,""OwnerTitle"":""Communication site Owners"",""RequestToJoinLeaveEmailSetting"":""""}","{""Id"":4,""IsHiddenInUI"":false,""LoginName"":""Communication site Visitors"",""Title"":""Communication site Visitors"",""PrincipalType"":8,""AllowMembersEditMembership"":false,""AllowRequestToJoinLeave"":false,""AutoAcceptRequestToJoinLeave"":false,""Description"":null,""OnlyAllowMembersViewMembership"":false,""OwnerTitle"":""Communication site Owners"",""RequestToJoinLeaveEmailSetting"":""""}",1,,00000000-0000-0000-0000-000000000000,,0,2022-09-12T18:18:07.253,"{""StringValue"":""1;2;d8b65bb3-6ca1-4df2-a4be-0efe08af2580;638032554734300000;715586625""}",/_catalogs/masterpage/seattle.master,,00000000-0000-0000-0000-000000000000,,,0,1,0,0,0,,,d8b65bb3-6ca1-4df2-a4be-0efe08af2580,,,,,1,,1033,2022-11-05T14:06:21Z,2022-10-31T07:29:33Z,0,/_catalogs/masterpage/seattle.master,1,,,,,"{""DecodedUrl"":""https://contoso.sharepoint.com""}",1,1,0,/,,1,0,Communication site,,15,,https://contoso.sharepoint.com,SITEPAGEPUBLISHING,SitePages/Home.aspx,"[{""Member"":{""Id"":3,""IsHiddenInUI"":false,""LoginName"":""Communication site Owners"",""Title"":""Communication site Owners"",""PrincipalType"":8,""AllowMembersEditMembership"":false,""AllowRequestToJoinLeave"":false,""AutoAcceptRequestToJoinLeave"":false,""Description"":null,""OnlyAllowMembersViewMembership"":false,""OwnerTitle"":""Communication site Owners"",""RequestToJoinLeaveEmailSetting"":""""},""RoleDefinitionBindings"":[{""BasePermissions"":{""High"":""2147483647"",""Low"":""4294967295""},""Description"":""Has full control."",""Hidden"":false,""Id"":1073741829,""Name"":""Full Control"",""Order"":1,""RoleTypeKind"":5,""BasePermissionsValue"":[""ViewListItems"",""AddListItems"",""EditListItems"",""DeleteListItems"",""ApproveItems"",""OpenItems"",""ViewVersions"",""DeleteVersions"",""CancelCheckout"",""ManagePersonalViews"",""ManageLists"",""ViewFormPages"",""AnonymousSearchAccessList"",""Open"",""ViewPages"",""AddAndCustomizePages"",""ApplyThemeAndBorder"",""ApplyStyleSheets"",""ViewUsageData"",""CreateSSCSite"",""ManageSubwebs"",""CreateGroups"",""ManagePermissions"",""BrowseDirectories"",""BrowseUserInfo"",""AddDelPrivateWebParts"",""UpdatePersonalWebParts"",""ManageWeb"",""AnonymousSearchAccessWebLists"",""UseClientIntegration"",""UseRemoteAPIs"",""ManageAlerts"",""CreateAlerts"",""EditMyUserInfo"",""EnumeratePermissions""],""RoleTypeKindValue"":""Administrator""}],""PrincipalId"":3}]"
416
478
  ```
479
+
480
+ === "Markdown"
481
+
482
+ ```md
483
+ # spo web get --url "https://contoso.sharepoint.com/subsite" --withGroups "true"
484
+
485
+ Date: 4/10/2023
486
+
487
+ ## Subsite (c59dae7c-48bd-4241-96b7-b81d4bbc25cb)
488
+
489
+ Property | Value
490
+ ---------|-------
491
+ AllowRssFeeds | true
492
+ AlternateCssUrl |
493
+ AppInstanceId | 00000000-0000-0000-0000-000000000000
494
+ ClassicWelcomePage | null
495
+ Configuration | 0
496
+ Created | 2021-09-22T01:54:52.18
497
+ CustomMasterUrl | /subsite/\_catalogs/masterpage/seattle.master
498
+ Description |
499
+ DesignPackageId | 00000000-0000-0000-0000-000000000000
500
+ DocumentLibraryCalloutOfficeWebAppPreviewersDisabled | false
501
+ EnableMinimalDownload | false
502
+ FooterEmphasis | 0
503
+ FooterEnabled | false
504
+ FooterLayout | 0
505
+ HeaderEmphasis | 0
506
+ HeaderLayout | 2
507
+ HideTitleInHeader | false
508
+ HorizontalQuickLaunch | false
509
+ Id | c59dae7c-48bd-4241-96b7-b81d4bbc25cb
510
+ IsEduClass | false
511
+ IsEduClassProvisionChecked | false
512
+ IsEduClassProvisionPending | false
513
+ IsHomepageModernized | false
514
+ IsMultilingual | true
515
+ IsRevertHomepageLinkHidden | false
516
+ Language | 1033
517
+ LastItemModifiedDate | 2023-04-10T06:07:56Z
518
+ LastItemUserModifiedDate | 2023-03-05T08:33:24Z
519
+ LogoAlignment | 0
520
+ MasterUrl | /subsite/\_catalogs/masterpage/seattle.master
521
+ MegaMenuEnabled | false
522
+ NavAudienceTargetingEnabled | false
523
+ NoCrawl | false
524
+ ObjectCacheEnabled | false
525
+ OverwriteTranslationsOnChange | false
526
+ QuickLaunchEnabled | true
527
+ RecycleBinEnabled | true
528
+ SearchScope | 0
529
+ ServerRelativeUrl | /subsite
530
+ SiteLogoUrl | /subsite/\_api/GroupService/GetGroupImage?id='58c0c654-ce7d-444b-9f5f-bc246400f176'&hash=637696347741828775
531
+ SyndicationEnabled | true
532
+ TenantAdminMembersCanShare | 0
533
+ Title | Subsite
534
+ TreeViewEnabled | false
535
+ UIVersion | 15
536
+ UIVersionConfigurationEnabled | false
537
+ Url | https://contoso.sharepoint.com/subsite
538
+ WebTemplate | GROUP
539
+ WelcomePage | SitePages/Home.aspx
540
+ ```
@@ -51,3 +51,19 @@ m365 spo web installedlanguage list --webUrl https://contoso.sharepoint.com
51
51
  DisplayName,LanguageTag,Lcid
52
52
  English,en-US,1033
53
53
  ```
54
+
55
+ === "Markdown"
56
+
57
+ ```md
58
+ # spo web installedlanguage list --webUrl "https://contoso.sharepoint.com"
59
+
60
+ Date: 4/10/2023
61
+
62
+ ## English
63
+
64
+ Property | Value
65
+ ---------|-------
66
+ DisplayName | English
67
+ LanguageTag | en-US
68
+ Lcid | 1033
69
+ ```
@@ -103,3 +103,19 @@ m365 spo web list --url https://contoso.sharepoint.com
103
103
  Title,Url,Id
104
104
  Subsite,https://contoso.sharepoint.com/subsite,b60137df-c3dc-4984-9def-8edcf7c98ab9
105
105
  ```
106
+
107
+ === "Markdown"
108
+
109
+ ```md
110
+ # spo web list --url "https://contoso.sharepoint.com"
111
+
112
+ Date: 4/10/2023
113
+
114
+ ## Subsite (b60137df-c3dc-4984-9def-8edcf7c98ab9)
115
+
116
+ Property | Value
117
+ ---------|-------
118
+ Id | b60137df-c3dc-4984-9def-8edcf7c98ab9
119
+ Title | Subsite
120
+ Url | https://contoso.sharepoint.com/subsite
121
+ ```
@@ -69,6 +69,33 @@ m365 spo web retentionlabel list --webUrl 'https://contoso.sharepoint.com/sites/
69
69
  === "CSV"
70
70
 
71
71
  ```csv
72
- TagId,TagName
73
- def61080-111c-4aea-b72f-5b60e516e36c,Some label,true
72
+ AcceptMessagesOnlyFromSendersOrMembers,AutoDelete,BlockDelete,BlockEdit,ComplianceFlags,ContainsSiteLabel,DisplayName,HasRetentionAction,IsEventTag,RequireSenderAuthenticationEnabled,SuperLock,TagDuration,TagId,TagName,TagRetentionBasedOn,UnlockedAsDefault
73
+ ,1,1,,1,,,1,,,,2555,def61080-111c-4aea-b72f-5b60e516e36c,Some label,CreationAgeInDays,
74
+ ```
75
+
76
+ === "Markdown"
77
+
78
+ ```md
79
+ # spo web retentionlabel list --webUrl "https://contoso.sharepoint.com/sites/sales"
80
+
81
+ Date: 4/11/2023
82
+
83
+ Property | Value
84
+ ---------|-------
85
+ AcceptMessagesOnlyFromSendersOrMembers | false
86
+ AutoDelete | true
87
+ BlockDelete | true
88
+ BlockEdit | false
89
+ ComplianceFlags | 1
90
+ ContainsSiteLabel | false
91
+ DisplayName |
92
+ HasRetentionAction | true
93
+ IsEventTag | false
94
+ RequireSenderAuthenticationEnabled | false
95
+ SuperLock | false
96
+ TagDuration | 2555
97
+ TagId | def61080-111c-4aea-b72f-5b60e516e36c
98
+ TagName | Some Label
99
+ TagRetentionBasedOn | CreationAgeInDays
100
+ UnlockedAsDefault | false
74
101
  ```
@@ -52,3 +52,9 @@ m365 tenant id get
52
52
  ```csv
53
53
  e65b162c-6f87-4eb1-a24e-1b37d3504663
54
54
  ```
55
+
56
+ === "Markdown"
57
+
58
+ ```md
59
+ e65b162c-6f87-4eb1-a24e-1b37d3504663
60
+ ```
@@ -72,3 +72,10 @@ m365 tenant report activeusercounts --period D7 --output json > "activeusercount
72
72
  Report Refresh Date,Office 365,Exchange,OneDrive,SharePoint,Skype For Business,Yammer,Teams,Report Date,Report Period
73
73
  2022-10-25,1,5,4,3,2,3,1,2022-10-19,7
74
74
  ```
75
+
76
+ === "Markdown"
77
+
78
+ ```md
79
+ Report Refresh Date,Office 365,Exchange,OneDrive,SharePoint,Skype For Business,Yammer,Teams,Report Date,Report Period
80
+ 2022-10-25,1,5,4,3,2,3,1,2022-10-19,7
81
+ ```
@@ -99,3 +99,10 @@ m365 tenant report activeuserdetail --period D7 --output json > "activeuserdetai
99
99
  Report Refresh Date,User Principal Name,Display Name,Is Deleted,Deleted Date,Has Exchange License,Has OneDrive License,Has SharePoint License,Has Skype For Business License,Has Yammer License,Has Teams License,Exchange Last Activity Date,OneDrive Last Activity Date,SharePoint Last Activity Date,Skype For Business Last Activity Date,Yammer Last Activity Date,Teams Last Activity Date,Exchange License Assign Date,OneDrive License Assign Date,SharePoint License Assign Date,Skype For Business License Assign Date,Yammer License Assign Date,Teams License Assign Date,Assigned Products
100
100
  2022-10-23,77E5979DD60BA6EAA53E814DBEEEFA5F,4291DA7C39EE3263E97336B42734A667,False,,True,True,True,True,True,True,,2022-09-12,2020-09-12,2022-09-12,2021-10-30,2020-10-30,2019-04-21,2017-09-20,2021-01-10,2021-01-10,2021-01-10,2021-01-10,2021-01-10,2021-01-10,MICROSOFT 365 E5 DEVELOPER (WITHOUT WINDOWS AND AUDIO CONFERENCING)
101
101
  ```
102
+
103
+ === "Markdown"
104
+
105
+ ```md
106
+ Report Refresh Date,User Principal Name,Display Name,Is Deleted,Deleted Date,Has Exchange License,Has OneDrive License,Has SharePoint License,Has Skype For Business License,Has Yammer License,Has Teams License,Exchange Last Activity Date,OneDrive Last Activity Date,SharePoint Last Activity Date,Skype For Business Last Activity Date,Yammer Last Activity Date,Teams Last Activity Date,Exchange License Assign Date,OneDrive License Assign Date,SharePoint License Assign Date,Skype For Business License Assign Date,Yammer License Assign Date,Teams License Assign Date,Assigned Products
107
+ 2022-10-23,77E5979DD60BA6EAA53E814DBEEEFA5F,4291DA7C39EE3263E97336B42734A667,False,,True,True,True,True,True,True,,2022-09-12,2020-09-12,2022-09-12,2021-10-30,2020-10-30,2019-04-21,2017-09-20,2021-01-10,2021-01-10,2021-01-10,2021-01-10,2021-01-10,2021-01-10,MICROSOFT 365 E5 DEVELOPER (WITHOUT WINDOWS AND AUDIO CONFERENCING)
108
+ ```
@@ -51,3 +51,10 @@ m365 tenant report office365activationcounts
51
51
  Report Refresh Date,Product Type,Windows,Mac,Android,iOS,Windows 10 Mobile
52
52
  2022-10-25,MICROSOFT 365 APPS FOR ENTERPRISE,5,0,0,0,0
53
53
  ```
54
+
55
+ === "Markdown"
56
+
57
+ ```md
58
+ Report Refresh Date,Product Type,Windows,Mac,Android,iOS,Windows 10 Mobile
59
+ 2022-10-25,MICROSOFT 365 APPS FOR ENTERPRISE,5,0,0,0,0
60
+ ```
@@ -49,3 +49,10 @@ m365 tenant report office365activationsusercounts
49
49
  Report Refresh Date,Product Type,Assigned,Activated,Shared Computer Activation
50
50
  2022-10-25,MICROSOFT 365 APPS FOR ENTERPRISE,24,5,0
51
51
  ```
52
+
53
+ === "Markdown"
54
+
55
+ ```md
56
+ Report Refresh Date,Product Type,Assigned,Activated,Shared Computer Activation
57
+ 2022-10-25,MICROSOFT 365 APPS FOR ENTERPRISE,24,5,0
58
+ ```