Skip to content

Instantly share code, notes, and snippets.

View tweakch's full-sized avatar
🤔
loading...

Alexander Klee tweakch

🤔
loading...
View GitHub Profile
System.Console.WriteLine(!false);
@tweakch
tweakch / setup_orchard.ps1
Last active February 12, 2020 15:29
setup new orchard core application
# https://docs.orchardcore.net/en/dev/docs/getting-started/templates/
dotnet new -i OrchardCore.ProjectTemplates::1.0.0-rc1-*
dotnet new occms --logger nlog --orchard-version 1.0.0-rc1
dotnet restore
dotnet build
dotnet run
@tweakch
tweakch / windows-terminal.md
Last active April 8, 2022 05:46 — forked from dahlsailrunner/WindowsTerminal.md
Customization and Setup notes for Windows Terminal

Create Authority

New-SelfSignedCertificate -DnsName "KnowYourToolset Cert Authority" -CertStoreLocation "Cert:\LocalMachine\My" -KeyUsage CertSign,CRLSign

Creates root authority with permission to sign stuff

Export-Certificate -Cert Cert:\LocalMachine\My\<CERTHUMB> -FilePath kytroot.cer

Trust Authority

Import-Certificate -FilePath .\kytroot.cer -CertStoreLocation Cert:\LocalMachine\Root