Archive for July, 2021

3 Ways to Check RAM Speed or Frequency on Windows 11 / 10

July 27th, 2021 by Admin

Before upgrading or adding memory, it’s necessary to find out your RAM speed and check if your PC has empty slots available. In this tutorial we’ll show you 3 simple ways to check RAM speed or frequency on Windows 11 / 10, without using any third-party software.

Method 1: Check RAM Speed or Frequency Using Task Manager

Press Ctrl + Shift + Esc keyboard shortcut at the same time to open Task Manager. Go to the Performance tab and then click Memory. In the right pane, you can see the RAM speed, slots used.

Method 2: Check RAM Speed or Frequency Using Command Prompt

Open up the Command Prompt window and run the following command:
wmic MemoryChip get DeviceLocator, Manufacturer, Speed

It will display your RAM speed and the number of memory slot in used.

Method 3: Check RAM Speed or Frequency Using PowerShell

Open Windows PowerShell and execute the command below:
Get-CimInstance -ClassName Win32_PhysicalMemory | Format-Table Devicelocator, Manufacturer, Speed

It will show the speed of RAM in each slot.

Conclusion

It’s easy to find out the RAM speed using Task Manage, Command Prompt and PowerShell. If you also need to check if the RAM type is DDR, DDR2, DDR3 or DDR4, I recommend using the third-party freeware CPU-Z.

Remove Sign out from Ctrl+Alt+Del Screen in Windows 10

July 20th, 2021 by Admin

Whenever you leave your computer unattended, you can lock Windows and bring up the Ctrl + Alt + Del screen. If you want to prevent others from logging off your account, here are simple ways to remove the “Sign out” option from the Ctrl + Alt + Del screen in Windows 10.

Method 1: Remove Sign out from Ctrl+Alt+Del Screen via Group Policy

  1. Open Local Group Policy Editor and browse to: User Configuration -> Administrative Templates -> System -> Ctrl+Alt+Del Options. In the right pane, double-click the “Remove Logoff” policy.

  2. Select the Enabled option. Click Apply and then OK.

  3. Close Local Group Policy Editor and restart your system. The next time you press the Windows + L key combination, you’ll see that the “Sign out” option is missing.

Method 2: Remove Sign Out from Ctrl+Alt+Del Screen via Registry Editor

  1. Open Registry Editor and navigate to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer. In the right pane, right-click the blank area and select New -> DWORD (32-bit) Value.

  2. Name the new DWORD NoLogoff, then double-click it and change its value to 1. Click OK.

  3. Close Registry Editor. After rebooting, you can check if the “Sign out” option is removed from the Ctrl + Alt + Del screen.

That’s it!

How to Enable Last Active Click for Taskbar in Windows 10 / 8 / 7

July 13th, 2021 by Admin

By default, all open windows of a certain app will be combined into a single taskbar button. Click that button and you’ll see the preview thumbnail of every window, but it’s a bit difficult to find which one is the last active window. In this tutorial we’ll show you how to enable the Last Active Click feature in Windows 10 / 8 / 7, so you can switch to the last active window with just a single click.

How to Enable Last Active Click for Taskbar in Windows 10 / 8 / 7

  1. Open Registry Editor and navigate to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced. In the left pane, right-click on the Advanced key and select New -> DWORD (32-bit) Value.

  2. Name the new value LastActiveClick.

  3. Double-click the LastActiveClick value and change the value data from 0 to 1. Click OK.

  4. Close Registry Editor and restart your PC. The next time you open multiple windows of Chrome, just click the taskbar icon and the last active window will open directly. Keep clicking on the taskbar button to cycle through the open windows of Chrome.

That’s it!