Last tested using Mac OS X 10.8 Mountain Lion
- Backup .ssh folder to avoid having to regenerate codes for services such as Heroku and Github.
cd 'HKCU:\Control Panel\Desktop' | |
$val = Get-ItemProperty -Path . -Name "LogPixels" | |
if($val.LogPixels -ne 96) | |
{ | |
Write-Host 'Change to 100% / 96 dpi' | |
Set-ItemProperty -Path . -Name LogPixels -Value 96 | |
} else { | |
Write-Host 'Change to 150% / 144 dpi' | |
Set-ItemProperty -Path . -Name LogPixels -Value 144 | |
} |