Created
July 20, 2026 05:47
-
-
Save eddiezato/8f6eb19014dfc1a5f99e90b0a30558fb to your computer and use it in GitHub Desktop.
poe2 disable one core script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set-Location -Path "${env:USERPROFILE}/Steam/steamapps/common/Path of Exile 2/" | |
| Start-Process -FilePath "PathOfExileSteam.exe" | |
| Start-Sleep -Seconds 10 | |
| $GameProcess = Get-Process -Name "PathOfExileSteam" -ErrorAction SilentlyContinue | |
| if ($GameProcess) { | |
| $GameProcess.ProcessorAffinity = [IntPtr]65532 | |
| [System.Media.SystemSounds]::Asterisk.Play() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment