Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@echo off ECHO ========================== ECHO Creating cert ... set /p Company="Please provide the company name you want to sign as: " ECHO =========================== .\makecert.exe -len 2048 %Company%.cer -n "CN="%Company% -r -sv %Company%.pvk ECHO ========================== ECHO Creating pfx from cert ... ECHO =========================== .\pvk2pfx.exe -pvk %Company%.pvk -spc %Company%.cer -pfx %Company%.pfx ECHO ========================== ECHO Signing time.... ECHO =========================== set /p BinToSign="Please provide the path to the binary to sign: " .\signtool.exe sign /f .\%Company%.pfx /t http://timestamp.comodoca.com/authenticode %BinToSign% ECHO ========================== ECHO Cleaning up... ECHO =========================== del %Company%.pvk del %Company%.cer del %Company%.pfx PAUSE #2

Closed
jenna871 opened this issue Aug 17, 2021 · 0 comments

Comments

@jenna871
Copy link

No description provided.

@jfmaes jfmaes closed this as completed Aug 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants