Tuesday, October 08, 2024

Generate PFX file using OPENSSL on Windows

Had a situation where a client needed a PFX with password for a particular setup. This is something I have not done before, so here are the steps

Generate the key and the CSR 

Enter the password when requested. Please ensure you remember this.

Replace domain with your domain name for simplicity.

openssl req -newkey rsa:2048 -nodes -keyout domain.key -out domain.csr

Once validated, you have should have access to these in the package.

  • The root cert files
  • intermediate cert files
  • the domain crt from the  TLS/SSL certificate provider.

Run the command to import the files, root, intermediate and domai. 

Note in some cases you will have 2 or more intermediate files, please combined into one file and call intermeidate.crt. Rename the "root" cert, rootca.crt. 

Generate the PFX

openssl pkcs12 -export -out domain.pfx -in rootca.crt -in intermediate.crt  -in domain.crt -inkey domain.key

You will now have the pfx file for use along with the password.

Friday, June 28, 2024

Possible Fix for BAD_SYSTEM_CONFIG_INFO 75736e6a726e6c2e 500

 Today I woke up to this error on a Dell Precision 3541 Laptop. For some reason it was asking for the Bitlocker Key.

After entering the key, received the following error on boot up

BAD_SYSTEM_CONFIG_INFO

After searching around I was advised to start here 

chkdsk C: /f /r /x

It did showed 1 bad file cluster that was fixed.

However, we  ran into another error. 

"unspecified error 75736e6a726e6c2e 500

Somewhere a user advised to simple run chkdsk C: /r  again.  (a user in reference #3)

That I did, and this time it ran without error and the issues was resolved.

The PC booted without any issue.


References

  1. windows-10-bad-system-config-info
  2. bad-system-config-info-windows-10-on-boot-up
  3. An unspecified error occurred (75736e6a726e6c2e 500)




Saturday, February 17, 2024

Audio Noise Removal


Many times in record clips we end up with unwanted background noise. Recently faced with the situation, I needed to clean up some audio and as usual I went to Google looking for tools.

These are what I found and my thoughts

Free

Paid with Free Trials

  • Adobe Enhance - https://podcast.adobe.com/enhance
    Good with Limitations
  • Media AI - Noise Reducer - https://noisereducer.media.io

  • MyEdit Audio Tools - https://myedit.online/en/audio-editor
    Has some interesting tools.

Results 

Overall, I found Audio Denoise to be the best overall and in the free category. In the paid category Adobe 

Generate PFX file using OPENSSL on Windows

Had a situation where a client needed a PFX with password for a particular setup. This is something I have not done before, so here are the ...