Hey all,
Very rarely do I code with AI. Trying to get the value of this registry key using AutoIt and it keeps failing. My guess is it's due to the "," and/or "." in the key name, but I haven't been able to find any good info on this type of issue in the AutoIt docs or other Google searches. I've tried escaping each one individually and together using the usual escape character "\", also with no luck.
I've confirmed the key names are correct, and also have tried a completely different reg key without the odd characters in my script just to see if it worked normally, which succeeded.
p.s. Currently using Win8 x64, and I've also already tried using HKLM64 which also failed.
TIA
Very rarely do I code with AI. Trying to get the value of this registry key using AutoIt and it keeps failing. My guess is it's due to the "," and/or "." in the key name, but I haven't been able to find any good info on this type of issue in the AutoIt docs or other Google searches. I've tried escaping each one individually and together using the usual escape character "\", also with no luck.
I've confirmed the key names are correct, and also have tried a completely different reg key without the odd characters in my script just to see if it worked normally, which succeeded.
Dim $VMWare_Path = RegRead("HKLM\SOFTWARE\VMware, Inc.\VMware Workstation", "InstallPath")
p.s. Currently using Win8 x64, and I've also already tried using HKLM64 which also failed.
TIA