
Author: https://twitter.com/Not_Snuffy


Building a PC for more guides and Fortnite performance research!

Please support if you CAN
PayPal: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5LL8YN9GF4P22&source=url


Google Doc: https://docs.google.com/document/d/1YG4K21o0k7gvRbtgK98cl9j9NM0kcHbp8JT0_h4YHO8

Script:

# Copy from this 👇 (without current line 👈)
$fn=Start-Process -FilePath "E:/Epic Games/Fortnite/FortniteGame/Binaries/Win64\FortniteClient-Win64-Shipping.exe" -PassThru
$fn.ProcessorAffinity = 21840
$fn.PriorityClass = 'ABOVENORMAL'

while(1){
	$fn = Get-Process FortniteClient-Win64-Shipping
	
	if(($fn -eq $null) -or ($fn.HasExited)){
		break
}
	$fn.ProcessorAffinity = 21840
	$fn.PriorityClass = 'ABOVENORMAL'
	sleep 180
}
# To this 👆 (without current line 👈)

Location of the item for shortcut:
powershell.exe -ExecutionPolicy Bypass -WindowStyle Hidden "& ""E:/Epic Games/Fortnite/FortniteGame/Binaries/Win64\notsnuffy.ps1"""

IF YOUR GAME DOESN'T LAUNCH
Try this Location of the item for shortcut to figure out what the ERROR is:
powershell.exe -ExecutionPolicy Bypass "& ""E:/Epic Games/Fortnite/FortniteGame/Binaries/Win64\notsnuffy.ps1"""
