Skip to content

Instantly share code, notes, and snippets.

View paulczy's full-sized avatar

Paul Czywczynski paulczy

View GitHub Profile
@paulczy
paulczy / Microsoft.PowerShell_profile.ps1
Created March 21, 2026 17:07 — forked from DamianEdwards/Microsoft.PowerShell_profile.ps1
PowerShell Profile & oh-my-posh theme
function Get-ProgramFiles32() {
if ($null -ne ${env:ProgramFiles(x86)}) {
return ${env:ProgramFiles(x86)}
}
return $env:ProgramFiles
}
function Get-VsInstallLocation() {
$programFiles = Get-ProgramFiles32
$vswhere = "$programFiles\Microsoft Visual Studio\Installer\vswhere.exe"