Skip to content

Instantly share code, notes, and snippets.

View mikefrobbins's full-sized avatar

Mike F. Robbins mikefrobbins

View GitHub Profile
@jdhitsolutions
jdhitsolutions / demo.ps1
Last active December 10, 2024 15:41
Material from my RTPSUG presentation on writing better PowerShell code
return "This is a demo script file."
# Find Me: https://jdhitsolutions.github.io
# Any one can learn syntax and mechanics.
# Let's focus on the squishy bits - what you should write
# and what not to write
#region Essential rules
@JustinGrote
JustinGrote / Update-HelpFast.ps1
Last active October 26, 2024 01:40
Update Help More Quickly using ThreadJob
#Requires -module ThreadJob
param(
#Filter modules to update by name, otherwise will update all modules
[string[]]$Name = @(),
[ValidateSet('AllUsers', 'CurrentUser')]
$Scope = 'CurrentUser',
$ThrottleLimit = 30
)
try {
@michaeltlombardi
michaeltlombardi / CustomTypeExample.psd1
Created November 2, 2023 14:26
PowerShell module with accelerated and usable custom types.
@{
RootModule = 'CustomTypeExample.psm1'
ModuleVersion = '0.1.0'
GUID = '2779fa60-0b3b-4236-b592-9060c0661ac2'
Author = 'mikey'
CompanyName = 'Unknown'
Copyright = '(c) mikey. All rights reserved.'
FunctionsToExport = @(
'New-AcceleratedClass'
'New-UsableClass'
@mdgrs-mei
mdgrs-mei / ShellIntegration.ps1
Last active January 30, 2025 03:41
Adds escape codes to the prompt for the shell integration
# Reference:
# https://devblogs.microsoft.com/commandline/shell-integration-in-the-windows-terminal/
param
(
[ValidateSet('WindowsTerminal', 'ITerm2')]
[String]$TerminalProgram = 'WindowsTerminal'
)
# Restore hooked functions in case this script is executed accidentally twice
@JustinGrote
JustinGrote / Register-AzKeyVault.ps1
Last active June 7, 2022 00:55
Helper command to easily register an Azure Key Vault as a local SecretManagement Vault
#requires -module Az.Keyvault,Microsoft.PowerShell.SecretManagement
filter Register-AzKeyVault {
<#
.SYNOPSIS
Registers an Azure Key vault as a local SecretManagement vault.
.EXAMPLE
Register-AzKeyVault 'MyVault'
.EXAMPLE
Register-AzKeyvault M<tab>
.EXAMPLE
@JustinGrote
JustinGrote / Get-AzTenantId.ps1
Created July 8, 2021 15:53
Get Azure Tenant ID from Name
function Get-AzTenantId {
<#
.SYNOPSIS
Resolves the tenant ID for a specified name.
.OUTPUTS
System.Guid. The Tenant ID of the specified name
#>
[CmdletBinding()]
param(
#The tenant string you wish to resolve. Examples include: mydomain.com, myorg.onmicrosoft.com
@timothywarner
timothywarner / az900sg.md
Created October 15, 2020 12:31
AZ-900 Microsoft Azure Fundamentals Study Blueprint
@JustinGrote
JustinGrote / AutoMock.ps1
Last active November 2, 2021 21:16
AutoMock: Record Powershell Command Output to Replay in Pester Tests Offline
#requires -module Indented.StubCommand
function Enable-AutoMockRecord ([Switch]$Append) {
$env:AUTOMOCK_RECORD = $true
if ($Append) {$env:AUTOMOCK_APPEND = $true}
}
function Disable-AutoMockRecord {
Remove-Item env:AUTOMOCK_RECORD -ErrorAction SilentlyContinue
Remove-Item env:AUTOMOCK_APPEND -ErrorAction SilentlyContinue
}
@awakecoding
awakecoding / PascalSnakeCase.ps1
Created January 22, 2020 01:02
PowerShell ConvertTo-PascalCase, ConvertTo-SnakeCase
function ConvertTo-PascalCase
{
[OutputType('System.String')]
param(
[Parameter(Position=0)]
[string] $Value
)
# https://devblogs.microsoft.com/oldnewthing/20190909-00/?p=102844
return [regex]::replace($Value.ToLower(), '(^|_)(.)', { $args[0].Groups[2].Value.ToUpper()})
@Francisco-Gamino
Francisco-Gamino / Az.Functions.md
Last active September 23, 2024 13:21
Az.Functions - Managing Azure Functions via PowerShell.
# Managing Azure Functions via PowerShell Cmdlets
# Prerequisites:
# - PowerShell Core 6 or greater --> https://github.com/PowerShell/PowerShell/releases
# - Core Tools --> https://github.com/Azure/azure-functions-core-tools#installing
# - Az.Functions preview module --> https://www.powershellgallery.com/packages/Az.Functions/0.0.2-preview

# Install Azure Functions PowerShell core module
Install-Module -Name Az.Functions -AllowPrerelease