I am trying to create text license files for my clients.
I have created a new ISV.cer file through a secure drive.
I have followed this page :
https://learn.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/isv-licensing#appendix-create-self-signed-certificates-for-test-purposes
There is a command: C:\AOSService\PackagesLocalDirectory\Bin\axutil genlicense /file:c:\templicense.txt /certificatepath:c:\tempisvcert.pfx /licensecode:ISVLicenseCode /customer:TAEOfficial.ccsctp.net /serialnumber:4dbfcf74-c5a6-4727-b638-d56e51d1f381 /password:********
I cannot find any posts on how to obtain the pfx file.
I have tried creating my own like this:
$cert = New-SelfSignedCertificate `
-CertStoreLocation Cert:\LocalMachine\My `
-DnsName "PurplePfxCert" `
-Type CodeSigningCert `
-KeyExportPolicy Exportable `
-HashAlgorithm sha256 `
-KeyLength 2048 `
-KeySpec Signature `
-Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" `
-NotBefore (Get-Date "2024-12-18") `
-NotAfter (Get-Date "2030-12-17")
Using the file, I can create a license.txt file, but after installing the license file my menus aren't working and I cannot see my menus linked to the configuration.
Is there anyone that can give me help on how to do this? Or are there any post somewhere that I can look at that might help me?