Ticket #2179: untitled-part.html

File untitled-part.html, 1.4 KB (added by mzoppet@…, 10 years ago)

Added by email2trac

Line 
1Dear team,<br><br>I downloaded for my first time a Parrot setup for Windows, and tested it on my Windows 7 environment.<br>After the installation I had a lot of problems because I lost the capacity to run quite every command.<br><br>I discovered that the installer changed the type of the PATH environment variable stored in the registry. Since NT 3.1 this key value must be of type "REG_EXPAND_SZ".<br><br>I retrieved the source and the broken file should be "<b><font face="courier new">\tools\dev\mk_inno.pl</font></b>" at line 89, where it is used:<br><br>&nbsp;&nbsp; <b><font face="courier new">ValueType: string</font></b>;<br><br>instead of <br><br>&nbsp;&nbsp; <b><font face="courier new">ValueType: expandsz</font></b>;<br><br>This setting is OS version dependent. If your target is to support only Windows versions officially supported by Microsoft (currently XP SP3 or newer) simply change the ValueType to "expandsz". Otherwise you must do some deep checks on the OS version in use at installation time.<br><br>Best regards,<br>Mario Zoppetti<br><br>http://support.microsoft.com/kb/102985<br><br>http://www.jrsoftware.org/ishelp/index.php?topic=registrysection<br><br>How do I modify the PATH environment variable when running an Inno Setup Installer?<br>http://stackoverflow.com/questions/3304463/how-do-i-modify-the-path-environment-variable-when-running-an-inno-setup-installe<br><br>