Skip to content

Instantly share code, notes, and snippets.

View NicmeisteR's full-sized avatar
:octocat:
Automating something somewhere.

Nicolaas Nel NicmeisteR

:octocat:
Automating something somewhere.
View GitHub Profile

Settings

{
	AimAssistFollowAdjustment_v1 = 0,
	AimAssistFrictionAdjustment_v1 = 0,
	AimAssistType_v1 = 0,
	AimInterruptsReload_v1 = true,
	AimResponseCurveType_v1 = 0,
	AllowRightClickToCancel_v1 = false,
	AnalogDeadZoneLeft_v1 = 10,
@NicmeisteR
NicmeisteR / halo_infinite_login_fix.ps1
Last active June 29, 2025 14:53
Halo Infinite Login Fix
# Define the specific credential prefix to delete
$CredentialPrefix = 'Xbl|2043073184'
# Get raw output directly as string array
$rawOutput = & cmdkey.exe /list | Out-String -Stream
# Show what we're looking for
Write-Host "Looking for credentials starting with: '$CredentialPrefix'" -ForegroundColor Yellow
# Better parsing of cmdkey output with more flexible pattern matching