nsis script flaged as trojan by avira - nsis

My nsis script is flagged as a trojan "tr/kdv.hg.1" when I reconfigure my nsis script to do some parts of the script there is no problem.
But the script all together gives the false positive. Does anybody now which functions of nsis are likely causing this?

NSISdl, INetC and Dialer are the most common triggers AFAIK. Submit a sample here to get it fixed...
There is an old thread about Avira on the forum.

Related

Suitescript2 alert on ini

Is it possible that suitescript 2 is not enable ?
I have the most simple script, that show an alert but it doesn't popup
Possible ?
Thanks
P.s. i'm willing to pay for thid
I assume you enabled SuiteScript options in Check Setup > Company > Setup Tasks > Enable Features > SuiteCloud.
Make sure you deployed your script accordingly . Make sure there are no error in script execution log.
To make sure suitescript is working fine in Netsuite , you can write a simple suitelet and test it in script debugger. ( Customization > Scripting > Script Debugger).
The only thing I can see would be if you do not have SuiteScript enabled on your instance. Check Setup > Company > Setup Tasks > Enable Features > SuiteCloud, and ensure that the SuiteScript options are enabled.
Aside from that, post some of your code, and/or any errors that you are seeing in the script execution log or the page that you are running the code on.
Finally I found the problem but I don't have a solution yet. I called netsuite and they said it's a known defect but I don't think so. I'm sure we are not the first one in the history.
We need to add a script to the customer record.
We found out that SalesForce added an Users Event Script.
I'm writing a Client Script, thus the conclusion from Netsuite is that you can't have a User Even Scrip and a Client Script, thus the reason it's not working.
Again I still CAN'T believe it
Any help is appreciated
I "think" I found the problem. The event script is written in SS1 and what I'm doing is SS2.
I have moved my code back to SS1 and it's working.
I know it makes no sense but it's working

AutoHotkey Run command issue in Windows 8.1

this is my first time on such a prestidigious site, so please welcome me by assisting me. I am doing independent development and am primarily a music designer. So that is why I may not sound like a real pro coder but nevertheless truly love creating my music through automative processes.
My present issue is this:
Windows 8.1 Pro
AutoHotkey 1.0.48.5 32bit (running as Admin)
Everytime I attempt to use the command 'RUN' with an .ahk target, I get the expected result except that the .ahk residing folder is opened by MS Explorer. I suspect that something like the fact that AutoHokey is an unsigned app, windows does not want it to run flawlessly. I am now trying a number of Administrative Tool Services disabling, but with no success yet.
RUN C\:XZN\Mecanisms\AnyAHK_script.ahk
;;or
RUN AnyAHK_script.ahk, C\:XZN\Mecanisms
;;or
RUN C\:XZN\Mecanisms\BactchfileLaunchingAboveScript.bat
;;or
RUN AnyAHK_script.ahk, C\:XZN\Mecanisms
Would there be a workaround this at the OS settings level or another way to run/start an .ahk file?
I tried the 'Comspec' approach as well as running an .ahk from within a batchfile, but the .ahk always get intercepted whenever it contains a 'RUN' command requesting an .ahk target.
Thanks.
You are using outdated version of AutoHotkey which is more than 5 years old. Always use AutoHotkey and its documenatation from http://ahkscript.org/ (current uptodate version, new official website)! AutoHotkey and its documentation from autohotkey.com is outdated and you may have some problems using them!
One thing to try if you only have this problem on win 8 is to Enable interaction with administrative programs http://www.autohotkey.com/board/topic/70449-enable-interaction-with-administrative-programs/
That script modifies the executable file's embedded manifest, then creates and installs a self-signed certificate and uses it to sign the file. The executable will not run on any other system, unless you install the certificate used to sign the file.
But lets see some script code that way we have something to test with and can better help you out...

How to include 'dialog' command into Linux kickstart?

I am trying to use Linux command 'dialog'(1) (/usr/bin/dialog) in my kickstart script (ks.cfg).
However the initial running system does not have it during installation.
It seems even many of the running systems don't have dialog command either.
But I have a DVD with ks.cfg which uses dialog and installs well.
Can someone please figure out how to make it available during installation?
I checked initrd of the DVD I mentioned above which has dialog included; it is not there.
And please, if someone is going to move this question to server fault, can you leave it here for a few days? I wish more people can see this question for I found kickstart related questions don't get answers soon.
Thanks!

Tracking Installs with Inno Installer

I'm using the Inno installer for my application.
I've been trying to figure out how to track how many app installations I get. I've been using browser popup after install, but would like to do it with the installer rather than a popup.
Can't find and addons. So I'm wondering if anyone has done this.
Should I just stick with the popup?
You could always have your installer use curl
to make a call out to your webpage...
You could just drop the curl program in the temp folder for the install... execute the call to your page and then delete curl from the temp directory. Of course they could block they could block the call with a personal firewall but that is not any different then them blocking your popup. This would be hidden for the most part which is what I think you are looking for.
You could always write a pascal script right in innosetup to do the call utilizing the winhttp library
Or you could just write a vbscript and execute that with the cscript engine to do the same http call.
That should point you to at least 3 different options to do what you need.
Just in case you have not solved the issue I came across this post that will help. it is a script that will post data via http post
HTTP POST request in Inno Setup Script
hope this helps. i am planning to use is my self and i will post a comment to let you know if it worked out

Inno Setup: is it a script based deployment program?

I am using Inno Setup for the first time. When I start the program I am presented with a blank script page. Is scripting the only way you can create a setup package? Is there anything else?
Yes, Inno Setup is script-based (thank God -- this really makes things a lot easier if you ask me). But there is a "wizard" that lets you create a new setup by a simple step-by-step approach in a simple GUI. Simply choose "Create a new script file using the Script Wizard" in the "Welcome" dialog box that appears when you start the Inno Setup Compiler.
If you have disabled the Welcome dialog box, use File/New instead to start the wizard.
Update
I was just informed about the new InnoIDE.
Inno Setup is script based. If you want a GUI Builder then you may check the site "Third-Party Files" on Inno Setups Homepage.
The easiest way to start is with one of the example scripts included with the install.
Just change the product name in the sample and you are set for 90% of basic installs

Resources