Is there a way to shut off the dialog that pops up when TC starts saying things like "Press G to..."?
I know that eventually a option to shut it off shows up in the box, but it isn't predictable nor immediate. Can this be accomplished in the INI file?
Chuck Billow
Shutting down "hints" dialog
Moderators: Hacker, petermad, Stefan2, white
- sqa_wizard
- Power Member
- Posts: 3896
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
It's a known bug of windows 10.
Only way to prevent this is to disable the tips inside windows game bar or rename the totalcmd64.exe to something else:
http://ghisler.ch/board/viewtopic.php?p=299232#299232
Regards
Holger
Only way to prevent this is to disable the tips inside windows game bar or rename the totalcmd64.exe to something else:
http://ghisler.ch/board/viewtopic.php?p=299232#299232
Regards
Holger
Run this in PowerShell to get rid of it:
Code: Select all
gci "HKCU:\System\GameConfigStore\Children" | %{if ($_.GetValue("GameDVR_GameGUID") -eq "f9afb654-ed57-42b1-976e-41aff834d1e6"){sp -path $_.PSPath -Name "Flags" -Value 0}}
That might be it.HolgerK wrote:It's a known bug of windows 10.
Only way to prevent this is to disable the tips inside windows game bar or rename the totalcmd64.exe to something else:
http://ghisler.ch/board/viewtopic.php?p=299232#299232
Regards
Holger
Thanks,
Chuck