<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://nsis.sourceforge.io/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cubique</id>
	<title>NSIS Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://nsis.sourceforge.io/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cubique"/>
	<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/Special:Contributions/Cubique"/>
	<updated>2026-04-07T06:42:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17938</id>
		<title>Blowfish++ plug-in</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17938"/>
		<updated>2009-12-07T08:22:04Z</updated>

		<summary type="html">&lt;p&gt;Cubique: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{p-author|Cubique}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
[[File:blowfish++.zip]] - source code&lt;br /&gt;
&lt;br /&gt;
[[File:BlowfishDLL.7z]] - DLL plug-in library&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
A NSIS plug-in that allow you to encrypt/decrypt a message using the [[Wikipedia:Blowfish (cipher)|Blowfish]] algorithm. It&#039;s just a simple DLL file (copy it to your NSIS Plugin folder) that exports two NSIS-aware functions:&lt;br /&gt;
&lt;br /&gt;
*encrypt&lt;br /&gt;
*decrypt&lt;br /&gt;
&lt;br /&gt;
 C++ &#039;&#039;&#039;source code included&#039;&#039;&#039; (&#039;&#039;it is also my 1st C++ program and 1st NSIS plug-in I ever wrote, too&#039;&#039;).&lt;br /&gt;
 It was tested with NSIS v2.45 but should work with some older versions too.&lt;br /&gt;
&lt;br /&gt;
Parts of these sample programs are derivative works based on the work of the following  individuals:&lt;br /&gt;
*Base64 encoding/decoding - AMMimeUtils by Anders Molin. Original source is available on the Code Project at  http://www.codeproject.com/string/ammimeutils.asp&lt;br /&gt;
*Blowfish encryption/decryption - Blowfish by Bruce Schneier. Original source is available at Bruce Schneier&#039;s website: http://www.schneier.com&lt;br /&gt;
&lt;br /&gt;
== DLL Functions ==&lt;br /&gt;
&lt;br /&gt;
=== blowfish::encrypt ===&lt;br /&gt;
&lt;br /&gt;
Encrypts an text using a password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::encrypt &amp;lt;text-to-encrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-encrypt&amp;gt; : a string of chars to be encrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to encrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the encrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::encrypt &amp;quot;the text I want to encrypt&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== blowfish::decrypt ===&lt;br /&gt;
&lt;br /&gt;
Decrypts an Blowfish encrypted text using the corresponding password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::decrypt &amp;lt;text-to-decrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-decrypt&amp;gt; : a string of chars to be decrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to decrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the decrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::decrypt &amp;quot;9I0JMuUoBQjErC3t5hVRLToinZwFTUd7EXwc2u8osV8=&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version History ==&lt;br /&gt;
&#039;&#039;&#039;Version:&#039;&#039;&#039; 0.1.&#039;&#039;&#039;beta&#039;&#039;&#039; 06.Dec.2009&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
Plug-in created by [[User:Cubique|Cubique]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17937</id>
		<title>Blowfish++ plug-in</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17937"/>
		<updated>2009-12-07T08:18:50Z</updated>

		<summary type="html">&lt;p&gt;Cubique: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{p-author|Cubique}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
[[File:blowfish++.zip]]&lt;br /&gt;
&lt;br /&gt;
[[File:BlowfishDLL.7z]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
A NSIS plug-in that allow you to encrypt/decrypt a message using the [[Wikipedia:Blowfish (cipher)|Blowfish]] algorithm. It&#039;s just a simple DLL file (copy it to your NSIS Plugin folder) that exports two NSIS-aware functions:&lt;br /&gt;
&lt;br /&gt;
*encrypt&lt;br /&gt;
*decrypt&lt;br /&gt;
&lt;br /&gt;
 C++ &#039;&#039;&#039;source code included&#039;&#039;&#039; (&#039;&#039;it is also my 1st C++ program and 1st NSIS plug-in I ever wrote, too&#039;&#039;).&lt;br /&gt;
 It was tested with NSIS v2.45 but should work with some older versions too.&lt;br /&gt;
&lt;br /&gt;
Parts of these sample programs are derivative works based on the work of the following  individuals:&lt;br /&gt;
*Base64 encoding/decoding - AMMimeUtils by Anders Molin. Original source is available on the Code Project at  http://www.codeproject.com/string/ammimeutils.asp&lt;br /&gt;
*Blowfish encryption/decryption - Blowfish by Bruce Schneier. Original source is available at Bruce Schneier&#039;s website: http://www.schneier.com&lt;br /&gt;
&lt;br /&gt;
== DLL Functions ==&lt;br /&gt;
&lt;br /&gt;
=== blowfish::encrypt ===&lt;br /&gt;
&lt;br /&gt;
Encrypts an text using a password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::encrypt &amp;lt;text-to-encrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-encrypt&amp;gt; : a string of chars to be encrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to encrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the encrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::encrypt &amp;quot;the text I want to encrypt&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== blowfish::decrypt ===&lt;br /&gt;
&lt;br /&gt;
Decrypts an Blowfish encrypted text using the corresponding password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::decrypt &amp;lt;text-to-decrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-decrypt&amp;gt; : a string of chars to be decrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to decrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the decrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::decrypt &amp;quot;9I0JMuUoBQjErC3t5hVRLToinZwFTUd7EXwc2u8osV8=&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version History ==&lt;br /&gt;
&#039;&#039;&#039;Version:&#039;&#039;&#039; 0.1.&#039;&#039;&#039;beta&#039;&#039;&#039; 06.Dec.2009&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
Plug-in created by [[User:Cubique|Cubique]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=File:BlowfishDLL.7z&amp;diff=17936</id>
		<title>File:BlowfishDLL.7z</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=File:BlowfishDLL.7z&amp;diff=17936"/>
		<updated>2009-12-07T08:16:27Z</updated>

		<summary type="html">&lt;p&gt;Cubique: 7-ZIP file which contains the compiled DLL library. To install this plug-in just save this DLL to your NSIS\Plugins directory.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;7-ZIP file which contains the compiled DLL library. To install this plug-in just save this DLL to your NSIS\Plugins directory.&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17935</id>
		<title>Blowfish++ plug-in</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=Blowfish%2B%2B_plug-in&amp;diff=17935"/>
		<updated>2009-12-06T17:21:32Z</updated>

		<summary type="html">&lt;p&gt;Cubique: Created page with &amp;#039;{{p-author|Cubique}}  == Links == File:blowfish++.zip  == Description ==  A NSIS plug-in that allow you to encrypt/decrypt a message using the [[Wikipedia:Blowfish (cipher)|B…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{p-author|Cubique}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
[[File:blowfish++.zip]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
A NSIS plug-in that allow you to encrypt/decrypt a message using the [[Wikipedia:Blowfish (cipher)|Blowfish]] algorithm. It&#039;s just a simple DLL file (copy it to your NSIS Plugin folder) that exports two NSIS-aware functions:&lt;br /&gt;
&lt;br /&gt;
*encrypt&lt;br /&gt;
*decrypt&lt;br /&gt;
&lt;br /&gt;
 C++ &#039;&#039;&#039;source code included&#039;&#039;&#039; (&#039;&#039;it is also my 1st C++ program and 1st NSIS plug-in I ever wrote, too&#039;&#039;).&lt;br /&gt;
 It was tested with NSIS v2.45 but should work with some older versions too.&lt;br /&gt;
&lt;br /&gt;
Parts of these sample programs are derivative works based on the work of the following  individuals:&lt;br /&gt;
*Base64 encoding/decoding - AMMimeUtils by Anders Molin. Original source is available on the Code Project at  http://www.codeproject.com/string/ammimeutils.asp&lt;br /&gt;
*Blowfish encryption/decryption - Blowfish by Bruce Schneier. Original source is available at Bruce Schneier&#039;s website: http://www.schneier.com&lt;br /&gt;
&lt;br /&gt;
== DLL Functions ==&lt;br /&gt;
&lt;br /&gt;
=== blowfish::encrypt ===&lt;br /&gt;
&lt;br /&gt;
Encrypts an text using a password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::encrypt &amp;lt;text-to-encrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-encrypt&amp;gt; : a string of chars to be encrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to encrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the encrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::encrypt &amp;quot;the text I want to encrypt&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== blowfish::decrypt ===&lt;br /&gt;
&lt;br /&gt;
Decrypts an Blowfish encrypted text using the corresponding password key.&lt;br /&gt;
&lt;br /&gt;
==== Syntax ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
blowfish::decrypt &amp;lt;text-to-decrypt&amp;gt; &amp;lt;password-key&amp;gt;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
*&amp;lt;text-to-decrypt&amp;gt; : a string of chars to be decrypted&lt;br /&gt;
*&amp;lt;password-key&amp;gt; : the password used to decrypt the string; password-key must be 8-56 bytes long&lt;br /&gt;
&lt;br /&gt;
==== Return Value ====&lt;br /&gt;
* On success: first item on stack will be &amp;quot;0&amp;quot;, next item on the stack will be the decrypted text.&lt;br /&gt;
* On failure: first item on stack will be &amp;quot;1&amp;quot;, next item on the stack will be the error message.&lt;br /&gt;
&lt;br /&gt;
==== Example ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
  blowfish::decrypt &amp;quot;9I0JMuUoBQjErC3t5hVRLToinZwFTUd7EXwc2u8osV8=&amp;quot; &amp;quot;a strong password&amp;quot;&lt;br /&gt;
  Pop $0                     ; 0 on success, 1 on failure&lt;br /&gt;
  Pop $1                     ; encrypted message on success, error message on failure&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version History ==&lt;br /&gt;
&#039;&#039;&#039;Version:&#039;&#039;&#039; 0.1.&#039;&#039;&#039;beta&#039;&#039;&#039; 06.Dec.2009&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
Plug-in created by [[User:Cubique|Cubique]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=File:Blowfish%2B%2B.zip&amp;diff=17934</id>
		<title>File:Blowfish++.zip</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=File:Blowfish%2B%2B.zip&amp;diff=17934"/>
		<updated>2009-12-06T17:19:54Z</updated>

		<summary type="html">&lt;p&gt;Cubique: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=Talk:Why_do_I_get_NSIS_Error%3F&amp;diff=17912</id>
		<title>Talk:Why do I get NSIS Error?</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=Talk:Why_do_I_get_NSIS_Error%3F&amp;diff=17912"/>
		<updated>2009-11-29T10:52:18Z</updated>

		<summary type="html">&lt;p&gt;Cubique: /* Error launching installer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bold text&#039;&#039;&#039;What does it mean when it says &amp;quot;It may be possible to skip this check using the NCRC&lt;br /&gt;
-- it means that if you run the installer as install.exe /NCRC that it will bypass the check for corruption.&lt;br /&gt;
&lt;br /&gt;
== NSIS error and NO real solution!! ==&lt;br /&gt;
&lt;br /&gt;
What a pity that nobody wants to realy get rid of that big issiue!&lt;br /&gt;
It&#039;s a nuisance and lots of people to whom I recommended OO2 called me and said they are also not able to install OO2. So they switched back to MS-Office.&lt;br /&gt;
Is it that difficult to give a clear work around?&lt;br /&gt;
&lt;br /&gt;
The instruction read like the MS knowledge base. NOT real knowledge!&lt;br /&gt;
Just try. If you&#039;re lucky it&#039;l work. grrrrrrrr&lt;br /&gt;
:How about asking for help, like [http://forums.winamp.com/showthread.php?postid=1895971 this guy]? I don&#039;t recall seeing you on the forums with details that say &amp;quot;I want a solution&amp;quot; instead of &amp;quot;I want to complain&amp;quot;. --[[User:Kichik|kichik]] 04:37, 30 July 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== NSIS Error Fix ==&lt;br /&gt;
&lt;br /&gt;
I had the NSIS error ever since I downloaded IE7.  I had the Google toolbar with IE6 but it didn&#039;t come through on IE7.  I reinstalled Google toolbar from this link  http://www.java.com/en/download/manual.jsp  as well as installed the latest version of JAVA for Windows/online.  The error is gone!!!&lt;br /&gt;
&lt;br /&gt;
== Another problem ==&lt;br /&gt;
&lt;br /&gt;
This error appears to me when I open a web link. It happens in different sites (eg. ebay).&lt;br /&gt;
What can i do?&lt;br /&gt;
:Follow the instructions on the page. You probably have malware. For further assistance, use the forum. The comment pages are not a good place for questions. --[[User:Kichik|kichik]] 13:40, 9 March 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== problems installing English software on non English ==&lt;br /&gt;
&lt;br /&gt;
I notice several English programs (second life, EFF TOR package) won&#039;t install on my Japanese Windows, a dialog comes up that simply says NSIS error.&lt;br /&gt;
&lt;br /&gt;
And no, I will not go to the forum, I will use other software. Please stop giving people who want to use your software the annoying run around - get it together.&lt;br /&gt;
:Well, that&#039;s too bad. they simply can&#039;t help help you without any details. --[[User:Kichik|kichik]] 03:13, 27 September 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Problem when installer is in folder with cyrillic characters ==&lt;br /&gt;
&lt;br /&gt;
I got the NSIS error when trying to run the installer for some software (notepad++, 7zip). The files had been downloaded by a localized version of Firefox 3.5 to the default download directory. The directory name contained cyrillic characters. Example:&lt;br /&gt;
&lt;br /&gt;
C:\Documents and Settings\User\My Documents\ÐŸÑ€ÐµÐ·ÐµÐ¼Ð°ÑšÐ°&lt;br /&gt;
&lt;br /&gt;
Moving the installer files to a directory containing only ASCII characters helped and I was able to perform the install. This issue looks to be connected to the above (Japanese OS) and seems like a problem with the handling of unicode characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This one worked for me. I&#039;ve copyed files i want to instal from C:\Documents and Settings\xXx\My Documents\DescÄƒrcÄƒri - DescÃ£rcÃ£ri=Downloads - to my desktop and run the installer. it worked for me !&lt;br /&gt;
&lt;br /&gt;
== NSIS error: for executable files ==&lt;br /&gt;
&lt;br /&gt;
I was trying to install programs like bitorrent, emule etc. but all failed bcos of nsis error.I have installed norton internet security in my computer. I disable it then again i tried all failed.but i can install the same files to install from network in my computer. ie executable file in another computer and then try to install from there. Its working fine. when i copy to my computer i cannot install it.&lt;br /&gt;
I tried all the way as u told. still i couldnot solve the problm.I even installed new nsis version 2.3. but failed.&lt;br /&gt;
Please give me an answer for me.&lt;br /&gt;
:Seems like a failing hard drive. Use the forum for further help. The comments section isn&#039;t the best place to ask questions. --[[User:Kichik|kichik]] 10:19, 27 November 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Drag the installer into the black console window  ==&lt;br /&gt;
&lt;br /&gt;
In Windows Vista impossible drag the installer into the black console window.&lt;br /&gt;
&lt;br /&gt;
== It may be the router problem. ==&lt;br /&gt;
&lt;br /&gt;
I had this problem for over two months. Any downloaded file, either &amp;quot;file is corrupt&amp;quot; or &amp;quot;NSIS_Error&amp;quot;. I cannot update my any virus database or my windows OS. But after I changed the router, all problems were gone.&lt;br /&gt;
&lt;br /&gt;
== Error launching installer ==&lt;br /&gt;
&lt;br /&gt;
NSIS Installer/Uninstaller will raise this error &amp;quot;Error launching installer&amp;quot; whenever you will launch the installer/uninstaller from an forbidden location (such as C:\, C:\Windows, C:\Program Files, etc).&lt;br /&gt;
&lt;br /&gt;
This is an constraint set on initialization phase of installer/uninstaller and it will always check for this rule. It make sense while you might have a RMDir/Delete instruction in your install/uninstall sections that will harm your system irreversibly.&lt;br /&gt;
&lt;br /&gt;
Just make sure you run this software from a valid location and the installer/uninstaller will load into memory (and run just fine.&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=Talk:Why_do_I_get_NSIS_Error%3F&amp;diff=17911</id>
		<title>Talk:Why do I get NSIS Error?</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=Talk:Why_do_I_get_NSIS_Error%3F&amp;diff=17911"/>
		<updated>2009-11-29T10:42:32Z</updated>

		<summary type="html">&lt;p&gt;Cubique: /* Error launching installer */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bold text&#039;&#039;&#039;What does it mean when it says &amp;quot;It may be possible to skip this check using the NCRC&lt;br /&gt;
-- it means that if you run the installer as install.exe /NCRC that it will bypass the check for corruption.&lt;br /&gt;
&lt;br /&gt;
== NSIS error and NO real solution!! ==&lt;br /&gt;
&lt;br /&gt;
What a pity that nobody wants to realy get rid of that big issiue!&lt;br /&gt;
It&#039;s a nuisance and lots of people to whom I recommended OO2 called me and said they are also not able to install OO2. So they switched back to MS-Office.&lt;br /&gt;
Is it that difficult to give a clear work around?&lt;br /&gt;
&lt;br /&gt;
The instruction read like the MS knowledge base. NOT real knowledge!&lt;br /&gt;
Just try. If you&#039;re lucky it&#039;l work. grrrrrrrr&lt;br /&gt;
:How about asking for help, like [http://forums.winamp.com/showthread.php?postid=1895971 this guy]? I don&#039;t recall seeing you on the forums with details that say &amp;quot;I want a solution&amp;quot; instead of &amp;quot;I want to complain&amp;quot;. --[[User:Kichik|kichik]] 04:37, 30 July 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== NSIS Error Fix ==&lt;br /&gt;
&lt;br /&gt;
I had the NSIS error ever since I downloaded IE7.  I had the Google toolbar with IE6 but it didn&#039;t come through on IE7.  I reinstalled Google toolbar from this link  http://www.java.com/en/download/manual.jsp  as well as installed the latest version of JAVA for Windows/online.  The error is gone!!!&lt;br /&gt;
&lt;br /&gt;
== Another problem ==&lt;br /&gt;
&lt;br /&gt;
This error appears to me when I open a web link. It happens in different sites (eg. ebay).&lt;br /&gt;
What can i do?&lt;br /&gt;
:Follow the instructions on the page. You probably have malware. For further assistance, use the forum. The comment pages are not a good place for questions. --[[User:Kichik|kichik]] 13:40, 9 March 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== problems installing English software on non English ==&lt;br /&gt;
&lt;br /&gt;
I notice several English programs (second life, EFF TOR package) won&#039;t install on my Japanese Windows, a dialog comes up that simply says NSIS error.&lt;br /&gt;
&lt;br /&gt;
And no, I will not go to the forum, I will use other software. Please stop giving people who want to use your software the annoying run around - get it together.&lt;br /&gt;
:Well, that&#039;s too bad. they simply can&#039;t help help you without any details. --[[User:Kichik|kichik]] 03:13, 27 September 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Problem when installer is in folder with cyrillic characters ==&lt;br /&gt;
&lt;br /&gt;
I got the NSIS error when trying to run the installer for some software (notepad++, 7zip). The files had been downloaded by a localized version of Firefox 3.5 to the default download directory. The directory name contained cyrillic characters. Example:&lt;br /&gt;
&lt;br /&gt;
C:\Documents and Settings\User\My Documents\ÐŸÑ€ÐµÐ·ÐµÐ¼Ð°ÑšÐ°&lt;br /&gt;
&lt;br /&gt;
Moving the installer files to a directory containing only ASCII characters helped and I was able to perform the install. This issue looks to be connected to the above (Japanese OS) and seems like a problem with the handling of unicode characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This one worked for me. I&#039;ve copyed files i want to instal from C:\Documents and Settings\xXx\My Documents\DescÄƒrcÄƒri - DescÃ£rcÃ£ri=Downloads - to my desktop and run the installer. it worked for me !&lt;br /&gt;
&lt;br /&gt;
== NSIS error: for executable files ==&lt;br /&gt;
&lt;br /&gt;
I was trying to install programs like bitorrent, emule etc. but all failed bcos of nsis error.I have installed norton internet security in my computer. I disable it then again i tried all failed.but i can install the same files to install from network in my computer. ie executable file in another computer and then try to install from there. Its working fine. when i copy to my computer i cannot install it.&lt;br /&gt;
I tried all the way as u told. still i couldnot solve the problm.I even installed new nsis version 2.3. but failed.&lt;br /&gt;
Please give me an answer for me.&lt;br /&gt;
:Seems like a failing hard drive. Use the forum for further help. The comments section isn&#039;t the best place to ask questions. --[[User:Kichik|kichik]] 10:19, 27 November 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Drag the installer into the black console window  ==&lt;br /&gt;
&lt;br /&gt;
In Windows Vista impossible drag the installer into the black console window.&lt;br /&gt;
&lt;br /&gt;
== It may be the router problem. ==&lt;br /&gt;
&lt;br /&gt;
I had this problem for over two months. Any downloaded file, either &amp;quot;file is corrupt&amp;quot; or &amp;quot;NSIS_Error&amp;quot;. I cannot update my any virus database or my windows OS. But after I changed the router, all problems were gone.&lt;br /&gt;
&lt;br /&gt;
== Error launching installer ==&lt;br /&gt;
&lt;br /&gt;
NSIS Installer/Uninstaller will raise this error whenever you will launch the installer/uninstaller from an forbidden location (such as C:\, C:\Windows, C:\Program Files, etc).&lt;br /&gt;
&lt;br /&gt;
This is an constraint set on initialization phase of installer/uninstaller and it will always check for this rule. It make sense while you might have a RMDir/Delete instruction in your install/uninstall sections that will harm your system irreversibly.&lt;br /&gt;
&lt;br /&gt;
Just make sure you run this software from a valid location and the installer/uninstaller will load into memory (and run just fine.&lt;/div&gt;</summary>
		<author><name>Cubique</name></author>
	</entry>
</feed>