Hidden Registry Keys

Questions about Wine on Linux
Locked
Jokern41
Newbie
Newbie
Posts: 1
Joined: Sat Jul 13, 2019 4:25 am

Hidden Registry Keys

Post by Jokern41 »

Hi

I am trying to edit the value of MaxShaderModelVS in the registry key HKEY_CURRENT_USER\Software\Wine\Direct3D.

However, the folder "Direct 3D" seems to exist but to be hidden.

I can't see it when accessing regedit, and when I try to create a folder with the same name, it says "File exists".



Please help!!!
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Hidden Registry Keys

Post by Bob Wya »

Jokern41 wrote:Hi

I am trying to edit the value of MaxShaderModelVS in the registry key HKEY_CURRENT_USER\Software\Wine\Direct3D.

However, the folder "Direct 3D" seems to exist but to be hidden.

I can't see it when accessing regedit, and when I try to create a folder with the same name, it says "File exists".
...
@Jokern41

You could try:

Code: Select all

wine reg add 'HKEY_CURRENT_USER\Software\Wine\Direct3D' /v 'MaxShaderModelVS' /t 'REG_DWORD' /d '0' /f
Obviously change the '0' to the value you actually want to set!

Bob
Locked