Category Archives: PC

Windows : Shared folder access error with security policy block unauthenticared guest access

Getting the following error while accessing a SMB/CIFS shared folder from a Windows client machine? You can’t access this shared folder because your organization’s security policy block unauthenticated guest access. These policies help to protect your PC from unsafe or malicious devices on the network. After investigating and making sure you want to enable unauthenticated… 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

PC : Secure Boot missing from BIOS option on Gigabyte Z390 Designare

If you have a Gigabyte Z390 Designare motherboard, you might be wondering how to enable Secure Boot in order to meet the TPM2 Windows 11 requirement. Browsed every section of the BIOS and didn’t found it? Most likely you have “CSM Support” option enabled. (Compatibility Support Module (CSM) is a feature of the UEFI firmware… Read More »

Category: PC

Linux : sar command return “Cannot open /var/log/sysstat/sa27: No such file or directory”

Attempting to use the SAR (sadc) command to lookup the historical system resources consumption metrics and got the following message? Cannot open /var/log/sysstat/sa27: No such file or directory Please check if data collecting is enabled Most likely data collecting is disabled (it is the default on several systems). You need to enable data collecting and… Read More »