nuitkaで作ったexeがウイルス扱いされないための方法

2023/4/13現在はこれで回避できたけど、将来はどうなるかわからない。

python -m nuitka --msvc=14.2 --lto=no --standalone --onefile --onefile-tempdir-spec=ssl_server_tempdir --plugin-enable=pylint-warnings --plugin-enable=tk-inter --windows-disable-console --windows-product-name="soft name" --windows-file-description="local server" --windows-product-version=1.0.0.0 --windows-company-name="company" --windows-icon-from-ico=hogehoge.ico hogehoge.py

signtool.exeで電子署名すればこんな苦労はいらない

"C:\Program Files (x86)\Windows Kits\8.1\bin\x64\signtool" sign /f "hogehoge.pfx" /p passwd /tr http://timestamp.digicert.com "hogehoge.exe"

ネタ元

booleaneffect.info