Hello again,
I have noticed that whenever I try to use a Registry Key (which is readable just fine by all other software), the Log reports Error 1605 on trying to access the key.
[02/04/2015 05:51:45] Error Script: On Startup, Line 46 (1605)
if not g_InstalledVersion then
local MainKey = HKEY_CURRENT_USER;
local SubKey = SessionVar.Expand("Software\\TestAppBuild");
local ValueName = "InstallLocation";
local FolderPath = Registry.GetValue(MainKey, SubKey, ValueName);
g_InstalledVersion = VisualPatch.CheckFolderVersion("%AppFolder%", FolderPath);
if g_InstalledVersion then
SessionVar.Set("%AppFolder%", FolderPath);
end
end
The key exists, and all other software accesses it fine like I said...it doesn't matter what I change it to, it's always the same error.
I am running Win 7 64-bit Ultimate.
I have noticed that whenever I try to use a Registry Key (which is readable just fine by all other software), the Log reports Error 1605 on trying to access the key.
[02/04/2015 05:51:45] Error Script: On Startup, Line 46 (1605)
if not g_InstalledVersion then
local MainKey = HKEY_CURRENT_USER;
local SubKey = SessionVar.Expand("Software\\TestAppBuild");
local ValueName = "InstallLocation";
local FolderPath = Registry.GetValue(MainKey, SubKey, ValueName);
g_InstalledVersion = VisualPatch.CheckFolderVersion("%AppFolder%", FolderPath);
if g_InstalledVersion then
SessionVar.Set("%AppFolder%", FolderPath);
end
end
The key exists, and all other software accesses it fine like I said...it doesn't matter what I change it to, it's always the same error.
I am running Win 7 64-bit Ultimate.
Comment