Add missing function

This commit is contained in:
2025-02-28 15:54:07 -06:00
parent 950f9b63f8
commit eb3ff67eed

View File

@@ -280,6 +280,11 @@ Function Set-RegistryKey {
} }
} }
Function Save-Parameters {
Param ([hashtable]$NamedParameters)
Return ($NamedParameters.GetEnumerator() | ForEach-Object { "-$($_.Key) `"$($_.Value)`"" }) -join " "
}
Function Test-AsAdmin () { Function Test-AsAdmin () {
<# <#
.SYNOPSIS .SYNOPSIS