r/LogitechG

X2 Superstrike won't charge past 16%

Got the notification that my superstrike battery was low. So like usual, I plug it into my Streamdeck+ USB hub to charge. Few hours go by and then I unplug, instantly get a notification to say my battery is low.

Plug in again and doesn't seem to move past 16% after 20+ minutes. Tried different cables, plugging directly into the PC, plugging into a power outlet, nothing seems to change. The mouse detects that it's plugged in and charging (green flashing light) but no progress on the charge.

I've tried turning it on and off, reinstalling G HUB, but still nothing. Anyone else come across this issue with superstrike/light mice?

reddit.com
u/Krooksy — 8 hours ago

I just purchase logitech g29 steering and my steering not wokring properly

1 . Indicates only 2 rbm light

2 . Software detect steering but when i start giving races padels on logitech software not responding

Same issue on wheel i turn left and right but wheel not responding on logitech hub

3 . Wheel stuck and didnt rotate to 900 degree it , i try soo hard to rotate it but it doesnt even rotate to 90 degree

Whats the matter ?

And ignore my english , im very bad at it

Anyone know the solution soo please tell me

reddit.com
u/ganjamaroraatbhr — 14 hours ago

I spilled flavoured sparkling water on my g203

I unplugged it and flipped it over on a cloth to let it dry a couple of seconds afterwards. Are there any recommendations for cleaning it to ensure minimal damage to the mouse?

reddit.com
u/MediocreBuilder1037 — 11 hours ago

Applying a promo code raised my total by €45 (G920, EU store)

Look at the subtotal. It goes up from 349 to 394 after entering the promo code. Theoretically the total should be 72.86% off from 349.99, which is 94.98 euro.

u/gljivicad — 18 hours ago

The force feedback on the G29 steering wheel set is not working on a computer running Windows 11.

Hello. The force feedback feature on my G29 device isn't working on my Windows 11 computer, yet it works perfectly fine on another computer running Windows 10. I have reinstalled all drivers, deleted and reinstalled hidden drivers, installed LGS, and uninstalled/reinstalled G HUB, but force feedback still isn't working on my Windows 11 Casper Excalibur G770.

NOT: I used a translation tool, so there may be spelling errors.
reddit.com
u/ApprehensiveMonk669 — 23 hours ago
▲ 2 r/LogitechG+1 crossposts

Gen5 A50 Base Station No Longer Working

When I dock my A50s to charge, there arent any lights shown on the Base Station indicating any activity. I've plugged in the headset via usb to charge and there are no issues. I've also "reset" the headset hoping that would fix the dock, but still no dice. However, I noticed that it is hotter than usual whenever I dock the headset.

Is the dock defective, and was there a possibility that too much power was sent to the base station, sorta "frying" it?

Update: So when I connect it to power, the mode lights (XBOX, PC, PS, etc) are VERY FAINT. Left it connected without the headset docked for ~1 min. Now that its hotter than usual, and sad to report there is now a slight "electronics aroma" it might be safe to say the logic board inside the Base Station is officially fried

reddit.com
u/MPMel32 — 1 day ago
▲ 14 r/LogitechG+1 crossposts

[Script] Automatically switch Windows audio to speakers when docking your Astro A50 gen 5 (or any Logitech headset)

Hey everyone,

I’ve always been frustrated that Windows doesn’t automatically switch the audio output to my desktop speakers when I place my Astro A50s on their base station. Since Logitech G HUB doesn't offer an official API or option for this, I (me and Gemini) wrote a lightweight PowerShell script to act as a seamless "zero-click" auto-switcher.

How it works: The script quietly hooks into Windows OS events to monitor the settings.db-wal (Write-Ahead Log) file that G HUB uses locally. By intercepting real-time telemetry, it detects exactly when the headset enters or exits the "isCharging": true state.

  • Undocked (Lifted): Instantly sets Windows default audio to the Headset.
  • Docked (Charging): Instantly routes audio back to your Speakers/Soundbar.

Technical note: I specifically implemented a JSON block-isolation regex. This means if you plug in another Logitech device to charge (like a G502 Lightspeed mouse), the script won't get confused and trigger a false audio switch! I also built it as an event-driven script rather than a polling loop, meaning it sits at literally 0% CPU usage in the background until G HUB writes to the file.

Prerequisites:

  • You must be using Logitech G HUB (not the old Astro Command Center).
  • Windows PowerShell.
  • If this is your first time ever running a PowerShell module installation, a prompt might ask you to install the 'NuGet provider'. Simply press Y and hit Enter to allow it.

Troubleshooting: Script closes immediately or shows a red error?

Windows protects your PC by blocking scripts downloaded from the internet by default. To fix this, follow these steps:

  1. Unblock the downloaded file: Right-click the AutoSwitch.ps1 file, select Properties, check the Unblock box at the bottom of the General tab, and click OK. (Alternatively, run Unblock-File -Path .\AutoSwitch.ps1 in PowerShell).
  2. Enable local script execution: If the script still doesn't run, your system might have PowerShell scripts completely disabled. Open PowerShell as Administrator, paste this command: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser, press Y to confirm, and try running the script again.

How to set it up:

  1. Download the script from Github.
  2. Open it in a text editor (like Notepad).
  3. Look for the USER CONFIGURATION section at the top.
  4. Change $global:SpeakerName to a partial name of your speakers as they appear in Windows (e.g., "Realtek", "Creative", etc.).
  5. Save the file as AutoSwitch.ps1.
  6. Right-click the file and select Run with PowerShell. (On its first run, it will automatically install the 'AudioDeviceCmdlets' module required to change Windows audio).

Note: This will open a PowerShell window. You must leave this window open (you can minimize it) for the switcher to work. If you close it, the script stops. For a fully invisible experience, use the Task Scheduler method below.

How to run it invisibly on Startup (Task Scheduler)

If you want this to run silently in the background every time you turn on your PC without showing a console window:

  1. Open Task Scheduler and click Create Task.
  2. General tab: Give it a name (e.g., "Astro AutoSwitch") and select Run only when user is logged on.
  3. Triggers tab: Click New -> Begin the task: At log on.
  4. Actions tab: Click New -> Action: Start a program.
    • Program/script: powershell.exe
    • Add arguments: -WindowStyle Hidden -ExecutionPolicy Bypass -NoProfile -File "C:\Path\To\Your\AutoSwitch.ps1" (Make sure to update the path!)

Using this with other Logitech Headsets (G Pro X, G935, etc.)

The script is configured for the Astro A50 out of the box, but it should work with almost any wireless Logitech headset (testing needed). You just need to find your specific battery key following this guide or using BatteryKeyFinder.ps1:

  1. Press Win + R, paste %LocalAppData%\LGHUB and hit Enter.
  2. Open settings.db with Notepad++.
  3. Press Ctrl + F and search for "isCharging".
  4. Look a few lines above that to find your headset's battery identifier (it will look something like "battery/device_1234/percentage" or "battery/gprox/percentage").
  5. Open the script and change $global:BatteryKey = "battery/a50/percentage" to match your specific string.

V1.1 Update: Dual-Switch (Audio & Microphone)

The script now supports switching both Playback (Speakers) and Recording (Microphone) devices simultaneously!

If you use a dedicated external microphone (like a Blue Yeti or QuadCast) alongside your headset, you can enable this feature:

  1. Open the script and find the [RECORDING / MICROPHONE INPUT] section.
  2. Change $global:SwitchMicrophone = $false to $true.
  3. Update $global:ExternalMicName with the name of your standalone microphone.
  4. Update $global:HeadsetMicName with your headset's mic name (defaults to "A50 Mic").

The script will now seamlessly route both your audio output and your microphone input when you dock or undock your headset. If you only care about audio output, leave it set to $false and it will ignore your microphones completely.

Disclaimer & Limitations

Please note that I wrote this script primarily for my personal setup.

  • Use Case: My daily usage is strictly focused on PC gaming and general audio listening. While the script runs flawlessly for these scenarios, it has not been exhaustively tested across all possible edge cases, complex studio configurations, or multiple audio routing software.
  • Windows Only: This script is designed and tested exclusively on Windows. I do not use my headset with any consoles (PlayStation / Xbox). Therefore, I cannot guarantee how the script will behave if your base station is set up in a dual-environment or console mode.

Use it freely, but please understand that your mileage may vary depending on your specific hardware and software environment.

Let me know if you find it useful or if you have any questions.

EDIT:Add disclaimer and v1.1 infos

EDIT2:Add troubleshooting section

EDIT3:AddBatteryKeyFinder.ps1 link

u/xAle33x — 2 days ago

Microsoft shop blocking G Hub download

I just got the Astro 50x headset and was thinking of updating the firmware and I went online to download it on my pc but the Microsoft shop won’t allow it to open since it considers it to be unsafe and the only option is to go to settings but that doesn’t help me at all anybody have any tips on getting around this??!

reddit.com
u/Psalazar951 — 1 day ago

Q/A with LOGI/Logitech SEO about G600 MK II

OK! This needs to be taken seriously - it’s time to stop ignoring it.

We need a QA session with LOGI CEO

(I don’t think they’ve ever used the G600, so they don’t really understand what we’re asking for)

I’ve been a Logitech user for over 20 years and own more than 10 Logitech devices (5 G600). I’d like to see more initiatives and steps from Logitech for their customers

The QA should be a livestream with prepared questions about the G600 MK II, and those questions should be approved by the community, not CEO, not Marketing team, not any other 2 mouse buttons user.

We want a TRUE G QA, without excuses.

WE ARE G600 Squad

reddit.com
u/glassybrick — 1 day ago

Astro A50X is it worth it?

I honestly regret buying the Astro A50 X. For a headset this expensive, I expected way more.

First, the battery is terrible. For a high-end gaming headset, the battery life should be one of the things you don't have to worry about, but with the A50 X, it feels like I'm constantly thinking about charging it.

Then there's the charging station. I use it with my PS5 and I've had problems with the station not working properly. Sometimes it doesn't recognize the headset correctly, which is really annoying when you're just trying to sit down and play.

And there's the battery/charging bug that a lot of people seem to have: you can fully charge the headset, then suddenly the battery percentage drops to 0%. That's ridiculous for a headset at this price.

But the biggest problem for me is the lack of proper surround sound. For gaming, especially competitive games, surround/spatial audio is extremely important. You are paying a premium price for a "high-end gaming headset", so I expect good positional audio. Without proper surround sound, I honestly don't think this headset is worth it for gaming.

Maybe the A50 X works great for some people, but for me, the combination of bad battery life, unreliable charging station, battery percentage issues, and lack of proper surround sound makes it very hard to recommend.

For the price, I expected a premium gaming headset. Instead, it feels like I paid a premium price to deal with problems that shouldn't exist in the first place.

reddit.com
u/Constant_Still_7381 — 1 day ago

Space br removal help

So , I was trying to clean my Logitech mk275 model but space bar is not coming off even after removing two side keys , can anyone help as this is my first time.

u/StoreAdditional6783 — 1 day ago
▲ 1 r/LogitechG+1 crossposts

G920 Brake Pedal Problems

I’ve tried using compressed air and WD-40 Contact Cleaner on the potentiometer, making sure the wires are connected, and recalibrating the wheel. That’s everything I’ve seen in tutorials so atp I have no clue what to do. Unless I figure something out I’ll probably just get a Moza wheel.

u/Pantorama2 — 1 day ago

G502 X lightspeed Problem

can anyone help me the left click is higher then the right click and I think it should be lower though, is this normal? its a logitech g502 x lightspeed it's used

u/Successful-Spray-500 — 2 days ago

Dude wtf is up with this app?!?!

It constantly keeps disconnecting and I have to click on the mouse again to get my mouse profile back up. But that's not even the worst part!! It literally lags the crap out of my mouse making my games unplayable how do I go about fixing this?!?

reddit.com
u/PlzHelpMe0619 — 2 days ago
▲ 3 r/LogitechG+1 crossposts

So hello 4 days ago i had a problem with my mouse G309 Lightspeed my mouse is connected in device manager and in app said inactive so please help me with this mouse i have this mouse since april i didn t break it or something else basically i was playing counter strike then my cursor blocked!

u/Altruistic_Tune7048 — 3 days ago