Skip to content

Instantly share code, notes, and snippets.

@WizX20
WizX20 / get_updates.ps1
Created August 5, 2022 11:55
Get Windows Updates and export to htm file in working dir
# Convert Wua History ResultCode to a Name
# 0, and 5 are not used for history
# See https://msdn.microsoft.com/en-us/library/windows/desktop/aa387095(v=vs.85).aspx
function Convert-WuaResultCodeToName
{
param(
[Parameter(Mandatory=$true)]
[int] $ResultCode
)
@WizX20
WizX20 / create-blazorwasmblog-solution.ps1
Created January 31, 2020 22:53
Create the Blazor Wasm Blog Demo solution command
dotnet new blazorwasm -o BlazorWasmBlog.Blazor
@WizX20
WizX20 / install-blazor-templates.ps1
Created January 31, 2020 22:51
Install the Blazor preview templates command
dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.2.0-preview1.20073.1