Skip to content

Commit a381f16

Browse files
committed
Fix spelling
1 parent c83926d commit a381f16

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Get-CalendarPublishInfo.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
This script exports mailbox calendar publishing settings
1919
2020
.DESCRIPTION
21-
Iterates through mailboxes and outputs all with (anonymous) calender publishing enabled, including sharing level.
21+
Iterates through mailboxes and outputs all with (anonymous) calendar publishing enabled, including sharing level.
2222
2323
.PARAMETER OutCsv
2424
Will export the results to a CSV File in the script root called Get-CalendarPublishInfo.csv

Get-InactiveUsers.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
1818
.DESCRIPTION
1919
This script will retrieve a list of users who have not signed in for at least a specified number of days.
20-
Requires Micrsoft Entra P1 or P2 license in the tenant.
20+
Requires Microsoft Entra P1 or P2 license in the tenant.
2121
Requires Microsoft.Graph.Authentication module.
2222
Requires the signed in user to have User.Read.All (or higher) delegated scope. Permissions: https://learn.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http#permissions
23-
Requires the signed in user to have AuditLog.Read.All delegated scope and a sufficient Entra role (Reports Reader is least priveleged role). Permissions: https://learn.microsoft.com/en-us/graph/api/signin-list?view=graph-rest-1.0&tabs=http#permissions
23+
Requires the signed in user to have AuditLog.Read.All delegated scope and a sufficient Entra role (Reports Reader is least privileged role). Permissions: https://learn.microsoft.com/en-us/graph/api/signin-list?view=graph-rest-1.0&tabs=http#permissions
2424
2525
.PARAMETER SignInType
2626
Filter users on the type of sign-in: interactive (successful or unsuccessful), non-interactive (successful or unsuccessful),

MFA Report/Get-MFAReport.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ if (-not $ExcludeRoleBreakdown) {
220220
# Get Entra ID object to determine its type
221221
$dirObject = Invoke-MgGraphRequest -Method GET -Uri "/v1.0/directoryObjects/$($member.principalId)?`$select=id" -OutputType PSObject
222222
if ($dirObject."@odata.type" -eq "#microsoft.graph.group") {
223-
# v1.0 endpoint does not return service princiapls, but they are not relevant for this script
223+
# v1.0 endpoint does not return service principals, but they are not relevant for this script
224224
$mgm = Invoke-MgGraphRequest -Method GET -Uri "/v1.0/groups/$($member.principalId)/transitiveMembers?`$top=999&`$select=id,accountEnabled,userType" -OutputType PSObject
225225
# The parent group of nested members is also returned, so filter out the group
226226
foreach ($mMember in ($mgm.value | Where-Object {$_."@odata.type" -ne "#microsoft.graph.group"})) {

0 commit comments

Comments
 (0)