Posts: 1,058
Threads: 367
Joined: Oct 2007
I need to "read" in one of my macros the status (whether it is ticked or not) of one of the values set in XP Windows Explorer, Tools-Folder Options-View-Advanced Settings), namely "Display the full path in the title bar". I wonder whether there exists a registry value or any other way to get the status. Any advice or experience will be mostly appreciated.
Posts: 12,140
Threads: 142
Joined: Dec 2002
I believe all these settings are in registry. Google in stackoverflow etc.
Posts: 1,058
Threads: 367
Joined: Oct 2007
Dear Gintaras,
Many thanks indeed. I will communicate to the forum any relevant findings. Best regards.
Posts: 1,058
Threads: 367
Joined: Oct 2007
Here is the solution :
Macro
temp17
str skey="Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState"
str snam="FullPath"
str sval
int i=rget(sval snam skey)
out F"{i} - {sval}"