Skip to content

Instantly share code, notes, and snippets.

View Froosh's full-sized avatar

Robin Frousheger Froosh

View GitHub Profile
@Froosh
Froosh / Set-NonDefaultKDSConfig.ps1
Last active October 26, 2021 12:36
Set-KDSConfiguration for non-default KDS Root Key generation in Windows Server 2022. Do this **before** running Add-KdsRootKey as there is (probably) no _supported_ way to remove existing KDS Root Keys from an AD.
#Requires -Version 5.1
#Requires -RunAsAdministrator
Param (
# Woo, Password Based Key Derivation Function number 2
[ValidateSet('PBKDF2', 'SP800_108_CTR_HMAC')]
[string]
$KdfAlgorithm = 'PBKDF2',
# Honestly, SHA512 is the default on Server 2022, but this might also work on older Server versions
@Froosh
Froosh / combinedEndpoints.bicep
Created December 10, 2022 12:48
Combine the primary and secondary endpoints from a storage account into one object of arrays, rather than two separate objects
var storage = {
properties: {
primaryEndpoints: {
dfs: 'https://frooshtinkering.dfs.core/'
web: 'https://frooshtinkering.z26.web.core/'
blob: 'https://frooshtinkering.blob.core/'
queue: 'https://frooshtinkering.queue.core/'
table: 'https://frooshtinkering.table.core/'
file: 'https://frooshtinkering.file.core/'
}
@Froosh
Froosh / Remove-OldModules.ps1
Last active December 6, 2023 00:46
Remove old modules, useful for after a few Az or Microsoft.Graph metamodule upgrades
Get-InstalledPSResource -Scope CurrentUser |
Group-Object -Property Name |
ForEach-Object -Process {
$VersionsToRemove = $PSItem.Group | Sort-Object -Property Version -Descending | Select-Object -Skip 1
foreach ($Version in $VersionsToRemove) {
Uninstall-PSResource -Verbose -Name $Version.Name -Version $Version.Version -SkipDependencyCheck
}
}
@Froosh
Froosh / imx23-holiday.dts
Last active March 18, 2024 12:38
MooresCloud Holiday Lights devicetree source file (with hardware SPI and i2c 24c64 EEPROM support)
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright 2012 Freescale Semiconductor, Inc.
*
* Author: Fabio Estevam <fabio.estevam@freescale.com>
* Adjusted for MooresCloud Holiday lights, based on the OLinuXino open hardware
* Edits by Robin Frousheger
*/
/dts-v1/;