Skip to content

Instantly share code, notes, and snippets.

@Dexveloper
Forked from howmanysmall/DisableBetaApp.ps1
Created November 11, 2022 01:20
Show Gist options
  • Save Dexveloper/7d8705c637b09702ae96e10fced4add8 to your computer and use it in GitHub Desktop.
Save Dexveloper/7d8705c637b09702ae96e10fced4add8 to your computer and use it in GitHub Desktop.
$Key = "HKCU:\Software\ROBLOX Corporation\Environments\roblox-player"
while ($true)
{
$CurrentValue = (Get-ItemProperty -Path $Key -Name "LaunchExp").LaunchExp
if ($CurrentValue -eq "InApp")
{
#Write-Output "Value is InApp."
Set-ItemProperty -Path $Key -Name "LaunchExp" -Value "InBrowser"
}
Start-Sleep -Milliseconds 50
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment