This doesn’t work anymore so I’m just leaving this here as an archive. Maybe someone can use the info here to make a new solution
Ok so personally I don’t like the new Roblox desktop app and I couldn’t find any guides on how to disable it so I decided to write my own. Enjoy!
Save the following as a .ps1 file (Credits to @pobammer for making this)
$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
}
Just save it on your desktop or put it in your startup folder (so it runs when you login).
Opening startup folder: Press WIN + R type “shell:startup” and press enter.
As Roblox now force enables desktop mode, this was edited to include the file above. I have left the original tutorial below for anyone interested
Disabling the desktop app requires you to use regedit. If you don’t know what your doing only touch the registry I have shown
Step 1: Opening regedit.exe
If you don’t know how to open regedit then follow microsoft’s official guide (there is also a warning about regedit from microsoft there, which I urge you to read).
Step 2: Navigating to the Roblox registry
Either paste in the following path at the top or manually find your way there.
Computer\HKEY_CURRENT_USER\SOFTWARE\ROBLOX Corporation\Environments\roblox-player
Step 3: Disabling the Desktop App
Right click the registry named “LaunchExp”, press Modify and change the value from “InApp” to “InBrowser”. Once you press Ok it will automatically save. If you ever want to enable the desktop app again then change the value back to “InApp”.
Thank you for reading. If this was helpful please leave a like