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
{ | |
"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)" | |
} |
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
// 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 |
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
<# | |
.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 |
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 Write-AnsiHyperlink { | |
<# | |
.SYNOPSIS | |
Creates an ANSI Hyperlink in a supported terminal such as Windows Terminal 1.4 | |
#> | |
[CmdletBinding()] | |
param( | |
#The Uri that you wish to have as part of the hyperlink | |
[Parameter(Mandatory,ValueFromPipeline)][UriBuilder]$Uri, | |
#The label text that will actually be shown in Windows Terminal |
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 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++) { |
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 r { | |
if (-not (Get-Module -Name PoSHue)) { | |
Import-Module -Name PoSHue | |
} | |
$BridgeAPIKey = $env:HueAPIKey | |
$BridgeIPAddress = '10.0.1.236' |
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
<# | |
.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, |
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
#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" |
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 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 |