Skip to content

Instantly share code, notes, and snippets.

View SMSAgentSoftware's full-sized avatar

Trevor Jones SMSAgentSoftware

View GitHub Profile
@SMSAgentSoftware
SMSAgentSoftware / Pop-ToastNotification.ps1
Created October 29, 2024 21:25
Example code to pop a toast notification in either PowerShell desktop or core editions
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))
{
@SMSAgentSoftware
SMSAgentSoftware / Get-FeatureUpdatesTimeStatistics.ps1
Last active November 13, 2024 13:07
PowerShell script to extract time statistics from a recently installed feature update (full OS swap)
## 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
@SMSAgentSoftware
SMSAgentSoftware / Start-CloudPCScheduledReboot.ps1
Created September 5, 2024 18:17
Azure automation runbook to bulk restart all Windows 365 Cloud PCs and Microsoft Dev Boxes.
###################################################################################################################
## 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:
@SMSAgentSoftware
SMSAgentSoftware / Get-MicrosoftGraphAccessToken.ps1
Last active July 11, 2024 14:18
PowerShell code wrapper to interactively get an access token for Microsoft Graph using MSAL.Net via the Az.Accounts module
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()]
@SMSAgentSoftware
SMSAgentSoftware / Get-IntuneTenantId.ps1
Created December 18, 2023 18:35
Retrieve your Intune tenant/account Id from a locally installed Intune certificate
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
{
@SMSAgentSoftware
SMSAgentSoftware / New-MgMailMessage.ps1
Last active November 22, 2023 20:27
Wrapper function to simplify generating a mail message for Send-MgUserMail with Microsoft Graph
#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",
@SMSAgentSoftware
SMSAgentSoftware / Invoke-MgDeviceRemediationOnDemand.ps1
Last active July 13, 2023 21:06
Invokes an Intune remediation script on demand against one or more devices (Microsoft.Graph.PowerShell version)
function Invoke-MgDeviceRemediationOnDemand {
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true)]
[ValidateNotNull()]
[ValidateNotNullOrEmpty()]
[string[]]
$Computername
)
@SMSAgentSoftware
SMSAgentSoftware / Get-MgDeviceRemediationsStatus.ps1
Last active July 13, 2023 21:04
Retrieves the Intune Remediation script statuses for one or more managed devices (Microsoft.Graph.PowerShell version)
Function Get-MgDeviceRemediationsStatus {
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true)]
[ValidateNotNull()]
[ValidateNotNullOrEmpty()]
[string[]]
$Computername
)
@SMSAgentSoftware
SMSAgentSoftware / Get-IntuneDeviceRemediationsStatus.ps1
Last active July 13, 2023 20:58
Retrieves the Intune remediation scripts statuses for one or more managed devices
Function Get-IntuneDeviceRemediationsStatus {
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true)]
[ValidateNotNull()]
[ValidateNotNullOrEmpty()]
[string[]]
$Computername
)
@SMSAgentSoftware
SMSAgentSoftware / Invoke-IntuneRemediationOnDemand.ps1
Last active July 13, 2023 20:56
Invokes an Intune remediations script on demand against one or more devices
function Invoke-IntuneRemediationOnDemand {
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true)]
[ValidateNotNull()]
[ValidateNotNullOrEmpty()]
[string[]]
$Computername
)