Sure thing. But you can't possibly ask users use 3nd party tools to extract zip files, it's like asking users don't use native explorer all together..
So I was wondering if there is a way for FC to change the way it's launches help file so the security warning would be shown, or detect the security flag (which is an alternate stream file
FastCopy.chm:Zone.Identifier) and provide notification for the user regarding this?
Just in case after a quick search I found this:
Using command prompt I was able remove the security flag from .chm file by clearing it up with this line:
echo on > FastCopy.chm:Zone.Identifier
So FC could simply remove that alternate stream file when help opened from FC itself.
I've tested and it worked great by adding last line in tmisc.cpp:
HWND ShowHelpW(HWND hOwner, WCHAR *help_dir, WCHAR *help_file, WCHAR *section)
{
#if defined(ENABLE_HTML_HELP)
DeleteFile("FastCopy.chm:Zone.Identifier"); //added line
(don't know C++ so couldn't figure how to use help_file pointer for this)