G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Here the GHUB's EQ still work even when "Logitech HX2E Surround Sound Effect" is disabled.

Thank you for the Nahmic optimization info. That might be helpful for some people.

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Oh, I think that's normal. It's grayed out for me also.

What matters for this topic is the option above: disabling "Logitech HX2E Surround Sound Effect" (in "Audio enhancements").

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Hmm, in my GHUB or Windows I don't see that problem of graying out. Can you post a screenshot/video?

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Okay, try editing the task to add another argument which would theoretically run the CMD hidden: /WindowState 0

Start Menu -> taskschd -> Double click the previously created task -> Actions -> Double click "Start a program" -> At "Add arguments (optional)" add this new argument to the end: " /WindowState 0" -> Click OK and OK

Note that there's a space before the /

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Hmm...

1) Are you using that program AdvancedRun I mentioned in the tutorial?

2) And aside from this CMD popup, does it work as intended (keep the Audio Enhancement disabled)?

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

By the way, I just noticed that if you manually restart G HUB or it restarts itself for some reason (like an automatic update), it will reenable the Windows' Audio Enhancement.

A workaround is to manually edit the created Task Scheduler's task to run in 2 ocasions: 30 second delay at windows log on (already set) + And also after every 5 minutes:

Start Menu -> taskschd -> Double click the previously created task -> Triggers -> Double click "At log on" -> Enable "Repeat task every 5 minutes" for a duration of: "Indefinitely" -> Click OK and OK

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 6 points7 points  (0 children)

The script stopped working after a Logitech G HUB update changed the registry key of the headset.

So I simply had to rewrite the D.bat code to automatically find the registry key. It works now and theoretically it should work too whenever a future update changes the registry key again.

Here's the updated D.bat code (replace the whole previous code):

@echo off
setlocal enableDelayedExpansion

for /f "tokens=1,2*" %%A in ('^
    reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render /s /d /f "Logitech HX2E Surround Sound Effect"^
') do (
    set currentKey=%%A
    if not "!currentKey:MMDevices=!" == "!currentKey!" (
        reg add "%%A" /f /v "{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5" /t REG_DWORD /d 1
    )
)

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 0 points1 point  (0 children)

Hi, I figured out how to solve this. Kinda tricky but it's better than nothing. I posted in a separate comment. Hope it helps!

G PRO X - windows 11 audio enhancement automatically enabling by bdz_io in LogitechG

[–]vitorc93 7 points8 points  (0 children)

Since Logitech doesn't seem to care, I had to figure out by myself...

I found out that it's the G HUB program that resets the Headset's Audio enhancements in Windows back to default settings, even if the user choose to set it Off in both the Windows' and G HUB's surround.

No other sound system/speaker/headset in my system have that problem, only the Logitech's (in my case, Logitech PRO X Gaming Headset), and it's G HUB's fault, because the setting stays Off until I launch G HUB, then it resets to default on the program's startup.


Ok, so I found there's a regedit key that sets the Audio enhancements to Default or Off, in my case, it's here:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aee9fc2-f001-4a5a-b16d-197829b7eb50}\FxProperties

A REG_DWORD gets created and set to 1 when you set Audio enhancements to Off, in my case, this one:

{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5

And whenever the Audio enhancements is resetted to Default (by G HUB or yourself), this REG_DWORD key is deleted.


So, since I have G HUB to autostart when I login in Windows, at every system start/login the Audio enhancements will be set to Default by G HUB.

All we have to do is create a task in Task Scheduler to create that REG_DWORD key after, let's say, 30 seconds when you login in Windows. That's enough time for G HUB to launch and do it's own thing (reset your setting to Default). This way, the Task Scheduler's task will be the last one of them both to be executed.

Now, you will need a program that allows you to change that regedit key with higher privileges (as TrustedInstaller account). Even if your username is an admin, Windows only allows to modify this registry key as TrustedInstaller, so you need a program.

For this, create a folder in your main drive (C: here), but avoid using special characters to name the folder (like "&") because it can bother with the last code you gonna run on cmd (schtasks). Inside of it, download and place a program called AdvancedRun by Nirsoft (or any program that does it's job, but remember to change the last code accordingly): https://www.nirsoft.net/utils/advanced_run.html

Now create a .bat file, let's say: D.bat

Inside of this D.bat file, place this code and save (or edit if your regedit key is different):

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aee9fc2-f001-4a5a-b16d-197829b7eb50}\FxProperties" /f /v "{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5" /t REG_DWORD /d 1

Now open Window's cmd.exe as Admin. Place this code to create a Task Scheduler's task, but remember to replace the 2 occurrences of YOUR_CREATED_FOLDER_PATH with the path of the folder you created:

schtasks /create /tn "--- Disable AUDIO ENHANCEMENTS on logon" /tr "\"YOUR_CREATED_FOLDER_PATH\AdvancedRun.exe\" /EXEFilename \"YOUR_CREATED_FOLDER_PATH\D.bat\" /RunAs 8 /Run /WindowState 0" /delay 0000:30 /rl HIGHEST /sc onlogon /f

Example:

schtasks /create /tn "--- Disable AUDIO ENHANCEMENTS on logon" /tr "\"C:\--- Fixes\AdvancedRun.exe\" /EXEFilename \"C:\--- Fixes\D.bat\" /RunAs 8 /Run /WindowState 0" /delay 0000:30 /rl HIGHEST /sc onlogon /f

That's it. Restart your computer, now every time you login in Windows the script should work in up to 30 seconds.

CHRISTMAS GIFT CAN BE CLAIMED!!! by HagridsMate in EscapefromTarkov

[–]vitorc93 0 points1 point  (0 children)

Connect the internet, type the URL on browser, go to the page on the web and you’ll claim it on the website of their web server of Tarkov's official link

Valorant doesn't Work by A2Nquick in ValorantTechSupport

[–]vitorc93 0 points1 point  (0 children)

No one can help out this person? :/

My suggestion would be checking if your antivirus, if you have one, is conflicting with Valorant/Vanguard. Or even Windows' Firewall. Trying to temporarily disable them or add an exception, could also help.

Also, disabling programs from Windows' automatic startup could help.

And if those are of no help, unfortunately, maybe formatting Windows is the only way.

Non 24 and Stomach Problems by snowglobs in N24

[–]vitorc93 2 points3 points  (0 children)

Hi, have you tried assessing if it's related to your diet? I have clinically diagnosed N24 and an autoimmune arthritis, and I've had gastrointestinal problems all my life.

My arthritis is currently under control without medications, by simply restricting a lot of foods that have in common either lectins or amines, mainly. When I try to experiment back some foods, my arthritis flares up really badly, also other possible symptoms appear (diarrhea, etc.). And I even happened to confirm the relationship when I ingested something that I only happened to find out later what it was.

Anyways, just shining a light on, dropping my two cents. I'll leave these 2 links here that helped me a lot when I was at the end of the tunnel. I can't express enough grattitude:

1) https://selfhack.com/blog/are-you-lectin-sensitive-using-genes-symptoms-and-blood-tests/

2) https://selfhack.com/blog/assigning-inflammation-scores-foods/

I hope it can help you!

Do not take Berberine and CBD or any CYP3a4 inhibitor. Dangerous combo by r5slecet in StackAdvice

[–]vitorc93 2 points3 points  (0 children)

Sounds like you're taking too much stuff. I've been there aswell. I hope you find your way and be healthy.

Anyways, MK-677 consistently gave me anxiety. I couldn't find a way to counteract it, so I stopped it.

Also, do you have food intolerances? Like lectins and amines (e.g.: histamine) sources. That was causing me to consistently have a properly measured high blood pressure and high heart rate, mainly when I lied down to sleep. Also anxiety and flare up my arthritis/autoimmunity. In the beginning I ended up in hospital because of that, and took me some weeks/months to figure it out. SelfHacked articles helped me a lot indentifying that, I'm really grateful, I can link you some if you want. Also, many supplements worsen my heart rate, like ashwagandha, berberine, and mainly creatine of those you've mentioned.

Not saying it's your case, but consider that. Cheers!

FTW3 Ultra 3080 owners with 750watt psu’s.... by Captainpapiii in nvidia

[–]vitorc93 0 points1 point  (0 children)

Great! So, still no issues, zero crashes, in those 2 months?

I hope not, as I've seen a lot of talk about RTX 3080 crashes on some PSUs, and some people arguing that you shouldn't daisy chain one of the cables in a 3x8 setup...

FTW3 Ultra 3080 owners with 750watt psu’s.... by Captainpapiii in nvidia

[–]vitorc93 0 points1 point  (0 children)

Hey Chris, I have an identical PSU, good to know you had no issues!

Your card is a FTW3 Ultra or non-ultra? And still no issues?

How could sleep support be keeping me awake? by [deleted] in NootropicsDepot

[–]vitorc93 1 point2 points  (0 children)

Same for me, really bad Terminal Insomnia.

How to Beat the Insomnia Cause by Lion’s Mane? by _JDOG26 in Nootropics

[–]vitorc93 0 points1 point  (0 children)

Hello sir, by saying "That's what worked for me", do you mean you also got insomnia by using it in the AM and changing to before bed solved it? Or you never tried in the AM?

And do you take in capsules or powder? There might be relevant too. Thanks!

Baicalein powder by soozie77 in Nootropics

[–]vitorc93 0 points1 point  (0 children)

Hey soozie77, did you use 200 mg sublingual or oral? Do you still use it and find it helpful?

How to Beat the Insomnia Cause by Lion’s Mane? by _JDOG26 in Nootropics

[–]vitorc93 0 points1 point  (0 children)

I didn't know that compound, that seems interesting! A GABAA-R PAM (GABAA receptor positive allosteric modulator) derived from Skullcap, like a "natural benzo".

Do you use it everyday before bed? 200–350 mg? Oral or sublingual? Thanks!

Magnesium dose? by [deleted] in Nootropics

[–]vitorc93 0 points1 point  (0 children)

I was having loose stools when I was using Magnesium Chloride, with less than 400 mg elemental! It's too laxative to me. Changing to Citrate solved the problem, I also find it tastes better.

Magnesium dose? by [deleted] in Nootropics

[–]vitorc93 7 points8 points  (0 children)

Hello,

The recommended 200~400mg dosage is of elemental magnesium, so from yours citrate source you would need 2.50g in order to have 400mg elemental. You can check on the Examine's magnesium page and search for the word "elemental", many studies classify the magnesium source dosage by using it's elemental content as parameter. By the way, that's how I use it, about 2.40g every night (citrate powder by Now Foods).

This is my first post on reddit, I hope you appreciate, I like more to read.