Posted On March 31, 2019

Maximum Ram for Windows 32 bit

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Maximum Ram for Windows 32 bit
Enable 4GB RAM Usage for Windows XP
Right-click “My Computer” >> Properties >> Advanced >> click “Settings” under Performance >> Data Execution Prevention >> select “Turn on DEP…” >> OK >> click “Settings” under Startup and Recovery >> Edit >> add “/PAE” to the end of the file >> click File >> Save >> File >> Exit >> OK >> OK  >> Reboot
 
Enable 32 GB Maximum for Windows 7
Download this file: win7-7600-4gb-patch.exe
Run the patch as an Administrator
Click on Patch x86 Ramlock
Reboot

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Setting WSUS Registry Setting On/Off for Client Windows

# setWsusOnOff.ps1function setWsus{ param( [switch]$on, [switch]$off ) function wuRegistryIsOn{ # Check if this machine has…

PowerShell: How To Make A System App Do Nothing

# How-To-Make-Existing-System-App-Do-Nothing.ps1# Provide variables$hive="REGISTRY::HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WORDPAD.EXE"$key="(default)"$value="C:\Windows\dummy.exe"$defaultValue="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE"# Dummy-File-Creator.ps1$dummyFile="C:\Windows\dummy.exe"$output = new-object byte[] 1; (new-object Random).NextBytes($output);[IO.File]::WriteAllBytes($dummyFile, $output);if…

PowerShell: Elevating Credential

$jumpbox="127.0.0.1" <# # Static Credentials (unsecured) $username = (Get-ADDomain).name+"\ADMINISTRATOR" $password = "PASSWORD" #> # Dynamic…