Category Archives: Operating Systems

Linux : CloudLinux Yum could not load PEM client certificate

The following error may occur when runnong “yum update” on a new installation of CloudLinux from official ISO : CloudLinux-8 – Gradual Rollout Slot 1 0.0 B/s | 0 B 00:00 Errors during downloading metadata for repository ‘cloudlinux-rollout-1’: – Curl error (58): Problem with the local SSL certificate for https://rollout.cloudlinux.com/slot-1/8/x86_64/repodata/repomd.xml [could not load PEM client… Read More »

Windows : How to list and export installed software with PowerShell CLI

Use the following PowerShell command (run as admin) to list and export all installed software on Windows and export to a text file : Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\InstalledSoftware.txt This will save the output to C:\InstalledSoftware.txt