This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Set the Default Property Display in PowerShell on Custom Objects | |
.DESCRIPTION | |
Set the Default Property Display in PowerShell on Custom Objects | |
Sample code for a blog post | |
.EXAMPLE | |
PS C:\> .\PowerShell_PSTypeNames_and_custom_FormatData.ps1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Mitigate CVE-2021-1675 related issues | |
.DESCRIPTION | |
Disable the printer spool on all servers within a Domain. | |
You need admin permission and PowerShell needs to be configured and | |
enabled for the user that executes the script. | |
.EXAMPLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Configure the logging to find CVE-2021-1675 related incidents | |
.DESCRIPTION | |
Configure the logging to find CVE-2021-1675 related incidents | |
.EXAMPLE | |
PS C:\> .\Invoke-EnableLoggingToFindPrinterHell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 3.0 -Modules ExchangeOnlineManagement | |
<# | |
.SYNOPSIS | |
Get a basic report of Mobile Devices | |
.DESCRIPTION | |
Get a basic report of Mobile Devices connected to the Microsoft 365 Tenant | |
.EXAMPLE | |
PS C:\> .\Get-MobileDeviceReporting.ps1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 3.0 -Modules Microsoft.Online.SharePoint.PowerShell | |
<# | |
.SYNOPSIS | |
Generates a basic usage report for OneDrive for Business sites | |
.DESCRIPTION | |
Generates a basic usage report for OneDrive for Business sites | |
The report will contain the following information: | |
- Owner (UPN) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@odata.type": "#microsoft.graph.windows10CustomConfiguration", | |
"id": "f2d6ce45-3bc7-4584-b391-120aa53eabea", | |
"lastModifiedDateTime": "2018-09-09T13:47:31.4040135Z", | |
"createdDateTime": "2018-07-07T14:21:22.3292533Z", | |
"description": "", | |
"displayName": "ADMX - OneDrive - KFM.admx", | |
"version": 7, | |
"omaSettings": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 3.0 -Modules ExchangeOnlineManagement, MSOnline | |
<# | |
.SYNOPSIS | |
Deploying Exchange Online security and spoofing warnings rules | |
.DESCRIPTION | |
Deploying Exchange Online security and spoofing warnings rules | |
.EXAMPLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-FritzBoxEvents | |
{ | |
<# | |
.SYNOPSIS | |
Get the Events from a FritzBox router | |
.DESCRIPTION | |
Get the Events from a FritzBox router | |
.PARAMETER FritzBoxUser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Helper script to investigate a Hafnium attack | |
.DESCRIPTION | |
Helper script to investigate a Hafnium attack | |
.PARAMETER ReportPath | |
Where to save the reports |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Get the AzureAD Audit Sign-In Logs | |
.DESCRIPTION | |
Get the AzureAD Audit Sign-In Logs and create several CSV files | |
.PARAMETER Days | |
Days to search |