Skip to content

Instantly share code, notes, and snippets.

@eddiezato
Created July 20, 2026 05:47
Show Gist options
  • Select an option

  • Save eddiezato/8f6eb19014dfc1a5f99e90b0a30558fb to your computer and use it in GitHub Desktop.

Select an option

Save eddiezato/8f6eb19014dfc1a5f99e90b0a30558fb to your computer and use it in GitHub Desktop.
poe2 disable one core script
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