I am attempting, for internal use at the moment, setup a self installing exe which is signed and comes up with our company as the publisher and not "Unknown". I have executed the following steps:
makecert.exe -sv Our.pfk -n "CN=Our Company" Our.cer
I entered the desired password, first for the certificate and then for the pfk file. Then I combined the pfk and cer files into a pfx:
pvk2pfx.exe -pvk Our.pfk -po -spc Our.cer -pfx Our.pfx -po "password"
finally I run signtool:
signtool sign /f Our.pfx /n "Our Company" /d "Our Install" /p "password" "exename"
However, when attempting to run the install the publisher comes up "Unknown". Am I missing a step?
Thanks