the other thread is locked and this seems to be the next best thing to posting where it belongs since it would seem that poeple are still having problems with this.
FIRST: This was tested with 2.1.3NA. If you have anotehr version I dont know if it will work or not.
SECOND: This was done on Windows XP, if you have another OS I have no clue how it will function.
THIRD: When your system doesn't work anymore I am not at fault, you can post to ask for help but I am not promising any.
I see that alot of people had touble with the whole permissions thing. Others took issue with the fact that IG could not update options anymore. So I made a small batch script that will fix this problem (the nag screen) and will not require you to lock the permissions on your reg. Copy this entire block of code and put it in a file called runIG.bat in the iguidance directory.
Code:
reg export hkcu\software\inav\iGuidance inav.reg
more inav.reg > inav2.reg
echo "ShowWarning"=dword:00000000 >> inav2.reg
reg import inav2.reg
start iGuidance.exe
Explained: (if you dont care, already get it or just want to try it stop reading here)
Code:
reg export hkcu\software\inav\iGuidance inav.reg
This is a command to export a key from the registry, it will write your entire iguidance key set (and subtrees) to the file inav.reg. If that file exists it will be overwritten. If it does not it will be created.
Code:
more inav.reg > inav2.reg
echo "ShowWarning"=dword:00000000 >> inav2.reg
Not sure why but a normal echo would not work on the inav.reg file (probably something to do with CRLF, if you dont know what that is dont worry about it). So I used the MORE command to copy inav.reg to inav2.reg.
this is probably a good thing because you get to keep the copy of the reg as it was in case a problem occures.
then the echo which will work on inav2.reg (go figure) adds the line that will "SET" showwarning to 0. If your reg didn't have this key it will add it. Lucky us that windows will accept the same key more than once per reg file which means if it was there then the echo added it a second time. But since the one we added is last it will be the value used to set the key (aka the one that gets to stay).
Code:
reg import inav2.reg
Loads our corrected reg keys back into the registry.
Finally:
Code:
start iGuidance.exe
Start is used to prevent the command window from staying open until iGuidance.exe closes.
If anyone is worried about the 2 files taking up space they are 2k together so get over it.
I welcome any comments.
-Bad