Skip to content

Instantly share code, notes, and snippets.

View mwallner's full-sized avatar
🧙

Manfred Wallner mwallner

🧙
View GitHub Profile
<#
.SYNOPSIS
BoxStarter script to configure Windows 10 development PC.
.DESCRIPTION
You might need to set:
Set-ExecutionPolicy RemoteSigned
Set-ExecutionPolicy Unrestricted
Set-ExecutionPolicy Bypass
@mwallner
mwallner / ARM.ps1
Created June 10, 2026 18:33 — forked from JPRuskin/ARM.ps1
Relatively untested extension to jankily add ARM support to the packaging functions.
function Get-OSArchitectureType {
param(
[ValidateSet('CISC', 'RISC')]
$Compare
)
$ArchType = if ($env:PROCESSOR_ARCHITECTURE.StartsWith('ARM')) {
'RISC'
} else {
'CISC'