Results 188 comments of Roy Tam

trying to update youtube's SSUAO and hope this will fix this problem. (tested here and it's working)

> i have tested the August 2nd 2025 version and still doesn`t work, you may try on a clean profile as I don't know what pref you changed may affect...

Heard that Unicode 15 support is available in Microsoft Teams, what about here?

I decided to test this myself. by importing ReactOS' functions, I can remove the link to imagehlp.dll: https://github.com/roytam1/ntldd/commit/68f11bb9ff94e11cef9b17c9b2dcfeb735f0347b

hmm I think I solved this myself? https://github.com/roytam1/ntldd/commit/31b62eae7a152c3fbbbdc4d76073d7f940293cf4

there are different meanings by "works" here: - works by launching as secondary shell and/or batch script runner - works by "SHELL=" in config.sys for first one, it is more-or-less...

PC DOS 7.1 with "SHELL=COMMAND.COM /P" dies here: ![image](https://github.com/SvarDOS/edrdos/assets/1192577/0d318702-1bdc-4759-b9c2-45b2f11f3160) and which seems to be here: https://github.com/SvarDOS/edrdos/blob/e85d9275a60c26c2658785f1cc0d21d6c2773946/command/cstart.asm#L3707-L3717 which is called from https://github.com/SvarDOS/edrdos/blob/main/command/com.c#L474 patching out this `call` it will run, but in...

a patch seems fix deadloop problem when running from MS-DOS/PC DOS config.sys "shell=" statement: ````diff diff --git a/command/cstart.asm b/command/cstart.asm index 6a3375f..9194f94 100644 --- a/command/cstart.asm +++ b/command/cstart.asm @@ -3711,13 +3711,17 @@...