Skip to content

Instantly share code, notes, and snippets.

{
"commandline": "docker run -it --rm mcr.microsoft.com/azure-powershell:latest",
"guid": "{9f050a18-cc35-4d39-83b1-104749e7e3f8}",
"icon": "ms-appx://ProfileIcons/{b453ae62-4e3d-5e58b989-0a998ec441b8}.png",
"name": "Azure PowerShell (Docker)",
"startingDirectory": "%USERPROFILE%",
"tabTitle": "Azure PowerShell (Docker)"
}
@alexverboon
alexverboon / DeviceNetworkEvents_Iana.kql
Created May 27, 2021 06:55
Enrich DeviceNetworkEvents with the port number Service name information
// Enrich DeviceNetworkEvents with the port number Servicename information
let iana_port_assignments = (externaldata(entry: string ) [@"https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.csv"]
with (format="txt",ignoreFirstRecord=true))
//iana_port_assignments
// Service Name,Port Number,Transport Protocol,Description,Assignee,Contact,Registration Date,Modification Date,Reference,Service Code,Unauthorized Use Reported,Assignment Notes
| extend data = parse_csv(entry)
| extend ServiceName = tostring(data[0])
| extend PortNumber = toint(data[1])
| project ServiceName, PortNumber
| summarize any(ServiceName) by PortNumber
@YoraiLevi
YoraiLevi / KnownFolderPathPS5.ps1
Last active March 18, 2025 21:04
Change windows user folders with powershell
<#
.SYNOPSIS
Requires powershell 5 or later
Provides Get and Set functions for KnownFolders
.EXAMPLE
PS> Set-KnownFolderPath Desktop $ENV:USERPROFILE/Desktop
.EXAMPLE
PS> $Path=""
PS> Get-KnownFolderPath Desktop ([ref]$Path)
.LINK
@JustinGrote
JustinGrote / Write-ANSIHyperlink.ps1
Last active November 22, 2024 17:33
Powershell Function to create ANSI HyperLinks (Usable in Windows Terminal Preview)
@dpo007
dpo007 / GetPickListChoice.ps1
Created September 14, 2020 21:46
PowerShell :: Console input with search list by typed letters, tab cycling, etc.
function GetPickListChoice {
param (
[Parameter(Mandatory=$true)]
[string[]]$PickList,
[string]$Prompt = 'Type to search, Tab to cycle matches, Backspace to reset, ''?'' for a list: ',
[switch]$PromptNoNewLine
)
function ClearCurrentChoice {
for ($i = $origCursorPos.X; $i -lt $endPos; $i++) {
@janegilring
janegilring / Set-HueLight.ps1
Created April 3, 2020 03:28
Configure color of Philips Hue Lightstrip - example usage: https://twitter.com/JanEgilRing/status/1245433266099965959
function r {
if (-not (Get-Module -Name PoSHue)) {
Import-Module -Name PoSHue
}
$BridgeAPIKey = $env:HueAPIKey
$BridgeIPAddress = '10.0.1.236'
@JustinGrote
JustinGrote / Install-AzureFunctionsPS7DevBuild.ps1
Last active February 23, 2021 00:06
Installs the latest Azure Functions PS7 Dev Build
<#
.SYNOPSIS
Installs the beta version of the Powershell 7 Worker
#>
[CmdletBinding()]
param (
#Azure Functions Core Tools "func" command path. This will be autodetected by default
[String]$funcpath,
#Azure Functions Workers path. This will attempt to be autodetected by default.
[String]$funcWorkersPath,
@bateskevin
bateskevin / Invoke-DSCResource_Splat.ps1
Last active February 24, 2020 11:22
Demo code for splatting problem
#Array for Hashtables that are going to be passed to Invoke-DSCResource
$SplatParam = @()
#Defining Hashtables
$Param1 = @{}
$Properties1 = @{}
$Properties1.ValueName = "EnumerateAdministrators"
$Properties1.Key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\CredUI\EnumerateAdministrators"
$Properties1.ValueType = "Dword"
@secretGeek
secretGeek / get-meetings.ps1
Last active September 13, 2022 22:19
Get today's schedule from Outlook, using COM, and format as text for my TODO.txt file
# Get a list of meetings occurring today.
function get-meetings() {
$olFolderCalendar = 9
$ol = New-Object -ComObject Outlook.Application
$ns = $ol.GetNamespace('MAPI')
$Start = (Get-Date).ToShortDateString()
$End = (Get-Date).ToShortDateString()
$Filter = "[MessageClass]='IPM.Appointment' AND [Start] > '$Start' AND [End] < '$End'"
$appointments = $ns.GetDefaultFolder($olFolderCalendar).Items
$appointments.IncludeRecurrences = $true