{
AimAssistFollowAdjustment_v1 = 0,
AimAssistFrictionAdjustment_v1 = 0,
AimAssistType_v1 = 0,
AimInterruptsReload_v1 = true,
AimResponseCurveType_v1 = 0,
AllowRightClickToCancel_v1 = false,
AnalogDeadZoneLeft_v1 = 10,
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
| # 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 |
OlderNewer