an error message will appear: "Continuation section too long"
Code: Select all
fs=
(` %
...... too long > 16,383
)

Code: Select all
fs=
(` %
...... not too long < 16,383
)
fs=%fs%
(` %
...... not too long < 16,383
)
Moderators: tmplinshi, arcticir
Code: Select all
fs=
(` %
...... too long > 16,383
)
Code: Select all
fs=
(` %
...... not too long < 16,383
)
fs=%fs%
(` %
...... not too long < 16,383
)
Thanks, its works!feiyue wrote: ↑21 Oct 2020, 21:15If you use a continuation section larger than 16,383 characters,
an error message will appear: "Continuation section too long"It can be modified as follows:Code: Select all
fs= (` % ...... too long > 16,383 )
![]()
Code: Select all
fs= (` % ...... not too long < 16,383 ) fs=%fs% (` % ...... not too long < 16,383 )
This can be a false positive. In the case of Microsoft, one can get a decision about this in 24 hours. You would upload your executable to them, they give you a tracking number, and then they tell you what they think. You can also comment that you believe it's a false positive.djuga wrote: ↑24 Oct 2020, 11:08Google drive detect virus in compiled script in version 3.1, in ver 2.7 all ok, how to fix it?
My program auto update from google drive![]()
I check it in virustotal
Version 3.1 ->
1.SecureAge APEX - Malicious (Its ok)
2.ESET-NOD32 - Win32/AHK.CU
3.Microsoft - Trojan:Win32/Wacatac.C!ml
Version 2.7 ->
1.SecureAge APEX - Malicious (Its ok)
Code: Select all
add=
(` %
;-----------------------
ListLines, Off
Code: Select all
EnvGet, My_ScriptName , My_ScriptFullPath
Use Reload() instead of ReloadDensdix wrote: ↑02 Dec 2020, 19:30Hello, I'm a beginner trying to use this to encode some stuff, and while it works, I have some questions:
1) When encoded, the name of my script in the taskbar changes to a seemingly random string, like in the picture below.
image.png
and when I'm using Reload command I have an error
image.png
Can I make it retain the original name of my script?
Thanks in advance for any help!