This file contains 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
If ($PSVersionTable.PSVersion.Major -lt 6) | |
{ | |
$null = [Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] | |
$null = [Windows.Data.Xml.Dom.XmlDocument, Windows.Data.Xml.Dom.XmlDocument, ContentType = WindowsRuntime] | |
} | |
else | |
{ | |
# Check for the NuGet package provider and install it if necessary | |
if ($null -eq (Get-PackageProvider -Name NuGet)) | |
{ |
This file contains 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
## Get time statistics for a Windows feature update (full OS swap) | |
# Requires that the "Windows.old" folder still exists on the machine | |
#Requires -RunAsAdministrator | |
# Specify the FU version | |
$FUVersion = "24H2" | |
$BuildNumber = "26100" | |
# Check we are on the correct build |
This file contains 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
################################################################################################################### | |
## Azure Automation Runbook Script to initiate a restart of all Cloud PCs and Microsoft Dev Boxes ## | |
################################################################################################################### | |
# Requires PS7+ | |
# Requires Az.Accounts module | |
# Requires Az.DevCenter module | |
# If using Runtime environments, ensure an up-to-date Az module is installed in the environment | |
# For Dev Boxes, requires "DevCenter Project Admin" role assignment on the Dev Center project for the Automation Account Managed Identity, or... | |
# a custom role with at least the following permissions: |
This file contains 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-MicrosoftGraphAccessToken { | |
[CmdletBinding()] | |
param ( | |
[Parameter()] | |
[string] | |
$ClientId = "14d82eec-204b-4c2f-b7e8-296a70dab67e", # Microsoft Graph PowerShell, or your own app Id | |
[Parameter()] | |
[string] | |
$TenantId = "<YourTenantId>", | |
[Parameter()] |
This file contains 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
using namespace System.Security.Cryptography.X509Certificates | |
function Get-IntuneTenantId { | |
# Check if "using namespace System.Security.Cryptography.X509Certificates" has been run | |
try | |
{ | |
$x509Store = [X509Store]::new([StoreName]::My,[StoreLocation]::LocalMachine) | |
} | |
# If not, add the required type accelerators | |
catch | |
{ |
This file contains 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 -Modules Microsoft.Graph.Authentication, Microsoft.Graph.Users.Actions | |
function New-MgMailMessage { | |
param ( | |
[Parameter(Mandatory=$true)] | |
[string]$Subject, | |
[Parameter(Mandatory=$true)] | |
[string]$Body, | |
[Parameter(Mandatory=$false)] | |
[ValidateSet("Text", "Html")] | |
[string]$BodyType = "Text", |
This file contains 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 Invoke-MgDeviceRemediationOnDemand { | |
[CmdletBinding()] | |
Param | |
( | |
[Parameter(Mandatory=$true)] | |
[ValidateNotNull()] | |
[ValidateNotNullOrEmpty()] | |
[string[]] | |
$Computername | |
) |
This file contains 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-MgDeviceRemediationsStatus { | |
[CmdletBinding()] | |
Param | |
( | |
[Parameter(Mandatory=$true)] | |
[ValidateNotNull()] | |
[ValidateNotNullOrEmpty()] | |
[string[]] | |
$Computername | |
) |
This file contains 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-IntuneDeviceRemediationsStatus { | |
[CmdletBinding()] | |
Param | |
( | |
[Parameter(Mandatory=$true)] | |
[ValidateNotNull()] | |
[ValidateNotNullOrEmpty()] | |
[string[]] | |
$Computername | |
) |
This file contains 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 Invoke-IntuneRemediationOnDemand { | |
[CmdletBinding()] | |
Param | |
( | |
[Parameter(Mandatory=$true)] | |
[ValidateNotNull()] | |
[ValidateNotNullOrEmpty()] | |
[string[]] | |
$Computername | |
) |