Step 1: Install OpenSSL for Windows 3.4 Step 2: Run Windows cmd prompt Step 3: Run the command line to get the .per format: openssl x509 -in star_abccer.crt -out cert.pem or run this command to get .pfx format openssl pkcs12 -export -out certificate.pfx -inkey abccer.key -in star_abccer.crt -certfile abccerca.crt For example: Ref: https://www.youtube.com/watch?v=-SpFcBfwfZY&t=35s
Category: Windows 7/8/10/11
How to Send Email Notifications When PING Fails
PingInfoView is available to download from here: PingInfoView – Ping to multiple host names/IP addresses One of the common feature request for the PingInfoView tool is to send an email message when a ping fails. although the PingInfoView tool doesn’t have an option to send an email message, you can still do it by using the Read More
How to Fix “We Couldn’t Update the System Reserved Partition” Error on Windows 10/11
The error looks like this: We Couldn’t Update the System Reserved Partition. Cause The System Reserved Partition (SRP) may be full. The System Reserve Partition (SRP) is a small partition on your hard drive that stores boot information for Windows. Some third-party anti-virus and security apps write to the SRP, and can fill it up. Read More
How to Fix Robocopy: Directory Is Not Visible on the Destination Drive
When copying from the root directory of a drive to a folder (non-root directory on a different drive), this can happen.RoboCopy may set the new directory to hidden, as it copies the system attribute of the root folder of the drive over to the new folder. You can prevent the new directory from becoming hidden by adding Read More
How to Fix “A drive with the name ‘HKU’ does not exist” on PowerShell
How to fix “A drive with the name ‘HKU’ does not exist” on Powershell The error: Cannot find drive. A drive with the name ‘HKU’ does not exist.+ CategoryInfo : ObjectNotFound: (HKU:String) [Remove-Item], DriveNotFoundException+ FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.RemoveItemCommand+ PSComputerName : clt64792 By default, only the following PowerShell drives referencing registry locations are defined: PS> Get-PSDrive Read More
How to Perform a Silent Installation of Intel Software
The available options are:[-q|-quiet|-s|-silent] – Silent installation with no user interface[-l|-log <LogFileName>] – Log to a specific file[-repair] – Repair (Or install if not installed) For examples: Installation command line example: Install: WiFi_21.60.2_Driver64_Win10.exe -q -sInstall: SetupChipset.exe -q -s Uninstall command line example: Uninstall: WiFi_21.60.2_Driver64_Win10.exe -uninstallUninstall: SetupChipset.exe -q -uninstall