Pager
December 25, 2025, 6:04pm
1
Brave shutting itself every 5 minutes, reinstalled 2 times, cache cleared, below logs of crashes. Version 1.85.118. What can i do to deal with this?
b7b329c4-0f2a-4360-a526-8f974c83ebe5
b57dd490-1c5b-4d43-8c05-064d23d07984
45313057-a1ba-4085-905f-35cdb727abfb
fd7e26c5-2fc0-4311-a81c-c01bc158df69
9e9911e3-233a-4c1c-9bc5-5acb5e676d01
921470ad-5d10-4297-9ca9-a8fdfe31c270
39c41211-99ac-48ac-ad29-e8bcc9c2fa6c
5c87cb7f-e223-435e-a750-7523b184befa
26450409-fcea-4af5-a208-738eeae504c3
7acf26cf-44ab-4a83-8660-8803f7a45485
b8c3228e-f808-47f5-b00b-5d8b5cb6a676
19c5eb92-a3b0-4fc4-b089-de1fd67bd07f
f76d207d-1223-48c9-b894-b4e0977f3f2d
69899f53-f6ea-4649-80f9-44fe2e95c18b
2908633a-a896-472a-8a5c-9c556a25c65f
289wk
December 25, 2025, 6:16pm
2
@Pager
How do I manually submit crash reports?
https://support.brave.com/hc/en-us/articles/22281484910221-How-do-I-manually-submit-crash-reports
After you click the “Send Now” button, return to brave://crashes and gather up the Crash Report ID numbers that end with a string of zeros. Post the numbers, here, in a new reply. Example of a Crash Report ID number:
Pager
December 25, 2025, 6:44pm
3
cannot send it. When i click “send” afeter couple of minutes it comes back to “Send now”
289wk
December 26, 2025, 8:46am
4
@Pager
TRY: Start up Brave Browser (Windows OS) - unburdened - using the Brave Browser shortcut on your computer’s Desktop.
For the following Changed Path , the switches are intended to:
Start up Brave Browser, using the “Default” named user Profile folder [--profile-directory="Default"]
Showing a New Private Window [--incognito]
Disable all experiments at brave://flags [--no-experiments]
Disable extensions [--disable-extensions]
Disable hardware (GPU) ie Graphic Acceleration [--disable-gpu]
Changed Path :
64 architecture, system level installation:
"C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" --profile-directory="Default" --incognito --no-experiments --disable-extensions --disable-gpu
x86 architecture, system level installation:
"C:\Program Files(x86)\BraveSoftware\Brave-Browser\Application\brave.exe" --profile-directory="Default" --incognito --no-experiments --disable-extensions --disable-gpu
64 / x86 architecture, user level installation (NOTE: you must substitute your Windows OS user account name for [UserName]):
"C:\Users\[UserName]\AppData\Local\BraveSoftware\BraveSoftware\Brave-Browser\Application\brave.exe" --profile-directory="Default" --incognito --no-experiments --disable-extensions --disable-gpu
Notice that the existing path, BEFORE the additions, is enclosed by double-quote marks. And, everything added, is located AFTER the existing path.
Pager
December 28, 2025, 9:20pm
5
It doesn’t help. This method made Brave work worse than before, now it’s closing right after run
289wk
January 7, 2026, 3:17pm
6
@Pager
Apologies for not getting back to you. Try adding some more commands to the strings mentioned above; string:
--enable-leak-detection --crash-on-failure 2> %USERPROFILE%\Desktop\brave_console_out.txt
Possibly the brave_console_out.txt file will have useful info. Example of complete command:
64 architecture, system level installation:
"C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" --profile-directory="Default" --incognito --no-experiments --disable-extensions --disable-gpu --enable-leak-detection --crash-on-failure 2> %USERPROFILE%\Desktop\brave_console_out.txt
@Mattches
OP cannot get Brave Browser (Windows OS) to run long enough, and well enough, in order to produce Crash ID numbers (ending in string of “0”'s) that you require.
Modified Brave Browser desktop Shortcut approach , results in a quick close, after run attempt .
For future reference, %homepath% is better and more universal. No matter the username, that tells Windows you mean the logged in users home directory and from there can build on it. Like this:
Far better than telling users to replace things with their user directory name (not everyone knows theirs).
Likewise:
%appdata% (The roaming application data)
%localappdata% (The local application data)
(There’s far more of these shortcuts in Windows actually.)