Skip to content

Instantly share code, notes, and snippets.

@QZLin
Created January 6, 2022 08:57
Show Gist options
  • Save QZLin/1448d9cc048e8ef961a5b38d00a6edfa to your computer and use it in GitHub Desktop.
Save QZLin/1448d9cc048e8ef961a5b38d00a6edfa to your computer and use it in GitHub Desktop.
GeForce Experience without login
Set-Location "C:\Program Files\NVIDIA Corporation\NVIDIA GeForce Experience\www"
Copy-Item app.js app.js.bak
$js = Get-Content app.js
$js = $js -replace "`"choose`"===\w\.nvActiveAuthView[\D]*\)\}", `
'"choose"===this.nvActiveAuthView)};this.handleLoggedIn({sessionToken:"",userToken:"",user: {core:{displayName:"Anonymous",primaryEmailVerified: true}}});'
$js = $js -replace "\w\.selectView\(\)\},\w\.selectView=function\(\)\{", "return;"
$js > app.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment