Skip to content

Instantly share code, notes, and snippets.

@deadlydog
deadlydog / PowerShellSingleFileScriptTemplate.ps1
Last active December 12, 2025 19:05
PowerShell template for a single-file script
<#
.SYNOPSIS
PUT SHORT SCRIPT DESCRIPTION HERE AND ADD ANY ADDITIONAL KEYWORD SECTIONS AS NEEDED (.PARAMETER, .EXAMPLE, ETC.).
#>
[CmdletBinding()]
param (
# PUT PARAMETER DEFINITIONS HERE AND DELETE THIS COMMENT.
)
process {