Archive for the ‘Windows 10’ category

3 Ways to Disable Windows Key Shortcuts (Hotkeys) in Windows 10

July 28th, 2016 by Admin

Did you ever play a game in full-screen mode and accidentally press the Windows key? This might cause your game to minimize or exit full-screen mode. What to do if the Windows keyboard shortcuts conflict with some software shortcuts? In this tutorial we’ll show you 3 simple ways to disable Windows key shortcuts (hotkeys) in Windows 10.

After testing, the first two methods seem to disable only these keyboard shortcuts: Windows + D, Windows + R, Windows + S, Windows + A. It won’t disable the shortcuts like Windows + X, Windows + L, Windows + PrntScr or Windows + Tab in Windows 10. If you want to disable the single Windows key on your keyboard, the 3th method is your choice.

Method 1: Disable WIN+ Keyboard Shortcuts in Using Group Policy

  1. Type edit group policy in the Search or Run box and press Enter. It will open Local Group Policy Editor.
  2. Navigate to User Configuration -> Administrative Templates -> Windows Components -> File Explorer. In the right-side pane, double-click on the Turn off Windows Key hotkeys policy to edit it.

  3. Select the Enabled option and click Apply and then OK.

  4. Reboot the computer to apply the changes.

Method 2: Disable WIN+ Keyboard Shortcuts in Using Registry Editor

If you’re unable to access the Local Group Policy Editor, you can take help of Registry Editor for the same task. Just follow these steps:

  1. Type regedit in the Search or Run box and press Enter. It will open Registry Editor.
  2. Navigate to the following key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer. In right-side pane, right-click on the empty space and select New -> DWORD (32-bit) Value.
  3. Rename the newly created entry as NoWinKeys and set its value to 1.

    NoWinkeys

  4. Close Registry Editor and restart your system. After reboot the WIN+ hotkeys will be turned off in your system. If you want to re-enable the WIN+ keyboard shortcuts, just delete NoWinKeys entry.

Method 3: Disable Windows Key Completely

This method allows you to completely disable the Windows logo key for all users in Windows 10, 8, 8.1 and Windows 7. Follow these steps to disable Windows key virtually:

  1. Type regedit in the Search or Run box and press Enter. It will open Registry Editor.
  2. Navigate to HKEY_LOCAL_ MACHINE\System\CurrentControlSet\Control\Keyboard Layout. In the right-side pane, right-click on the empty space and select New -> Binary Value.

    new-binary-value

  3. Rename the newly created entry as Scancode Map. Right-click on Scancode Map and click Modify. Type in the following value as the value data manually (copying and pasting will not work), then click OK.

    00 00 00 00 00 00 00 00
    03 00 00 00 00 00 5B E0
    00 00 5C E0 00 00 00 00

    disable-windows-key

  4. Close Registry Editor and restart the computer. When you boot back into Windows 10, press the Windows key and nothing will happen. If you want to re-enable the Windows logo key, open the Registry Editor again and delete the Scancode Map entry.

How to Fix “Task Manager is Disabled or Greyed out” in Windows 10

July 27th, 2016 by Admin

Unable to access Task Manager by pressing Ctrl+Shift+Esc? When you right-click on the taskbar, you might find that “Task Manager” option has been grayed out:

task-manager-greyed-out

Also when you press the Windows key + R and type taskmgr, you’ll receive the following error message:

“Task Manager has been disabled by your administrator.”

task-manager-disabled

Task Manager is probably disabled by an administrator or a virus or spyware. In this tutorial we’ll show you how to fix “Task Manager is disabled or greyed out” in Windows 10, by using Group Policy, Registry Editor or Command Prompt. Either way, you need to log in as administrator before following the steps.

Method 1: Fix ‘Unable To Access Task Manager’ Using Group Policy

  1. Press Win+R to open Run box, and type gpedit.msc command to start the Local Group Policy Editor.
  2. Navigate down to the following:
    User Configuration -> Administrative Templates -> System -> Ctrl+Alt+Delete Options
  3. Since you’re facing the issue that Task Manager has been disabled by administrator, you’ll see that the “Remove Task Manager” policy in the right pane is enabled. Double-click on it to modify.

    remove-task-manager

  4. To enable Task Manager, you should set this policy to Not Configured or Disabled.

    fix-disabled-task-manager

    Click Apply followed by OK. Reboot and your problem should be fixed now!

Method 2: Fix ‘Unable To Access Task Manager’ Using Registry Editor

  1. Press Win+R to open Run box, and type regedit command to start the Registry Editor.
  2. Navigate to the following keys:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System

    DisableTaskMgr

  3. In the right side panel, you’ll see a 32-bit DWORD value named DisableTaskMgr. In order to re-enable Task Manager, double-click and change the value to 0. (If you want to disable Task Manager, just change its value data back to 1.)
  4. Go ahead and reboot your computer for the changes to take effect.

Method 3: Fix ‘Unable To Access Task Manager’ Using Command Prompt

  1. Press Win+X shortcut keys on the keyboard and select “Command Prompt (Admin)” from the Power User Menu.
  2. At the Command Prompt, type the following command and press Enter. This will enable the Task Manager.
    REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f

    enable-task-manager-via-cmd

    If you want to disable Task Manager again, just run this command instead:
    REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f

Note: If you receive the “access denied” error, it’s likely that you’re running Command Prompt in non-Administrator mode.

3 Ways to Boot Windows Server 2012 into Safe Mode

July 24th, 2016 by Admin

How can I get into Safe Mode on the new Windows operating systems such as Windows 8, Windows 10 and Server 2012? Starting from Windows 8, the system boots very quickly and the time to press F8 key to access Safe Mode is smaller than 200 milliseconds, so it’s almost impossible to enter into the Safe Mode by pressing F8 during boot time.

In this tutorial we’ll show you 3 workable ways to boot Windows Server 2012 into Safe Mode. The methods should also work with Windows 10 and Windows 8/8.1.

Method 1: Boot Windows Server 2012 into Safe Mode Using Command Prompt

  1. Press the Windows key + X to open the WinX menu, select “Command Prompt (Admin)” from the list.

    winx

  2. In order to make Windows display the Windows Boot Manager, type the following command at the Command Prompt and press Enter. You will get a confirmation stating that The operation completed successfully.

    bcdedit /set {bootmgr} displaybootmenu yes

    enable-display-boot-menu

    If you want to stop displaying the Windows Boot Manager later, run this command instead:
    bcdedit /set {bootmgr} displaybootmenu no

  3. Now restart your computer and you’ll see the Windows Boot Manager screen. Just press F8 to bring up the Advanced Boot Options.

    windows-boot-manager

  4. Select Safe Mode and press Enter. This will open Windows Server 2012 in Safe Mode.

    advanced-boot-options

Method 2: Boot Windows Server 2012 into Safe Mode Using System Configuration

  1. Press the Windows key + R to open the Run box. Type msconfig and press Enter.

    msconfig

  2. Now the System Configuration dialog box will be opened. Under the Boot tab, check the Safe boot option and click OK.

    safe-boot

  3. Reboot your computer and it will boot directly into Safe Mode automatically. If you wan to stop Windows from booting into Safe Mode next time, you need to open the System Configuration utility (msconfig) again and uncheck the Safe boot option.

Method 3: Boot Windows Server 2012 into Safe Mode Using Settings App

  1. To get started, you need to open the Settings panel. This can be done by hovering your mouse to the top right-hand corner of the screen, or press the Windows key + I on your keyboard.
  2. Hold down the SHIFT key on your keyboard, and then click on Power icon and select Restart.

    shift-restart

  3. You will need to click on the Troubleshoot option.

    choose-an-option

  4. Click Startup Settings.

    advanced-options

  5. Click Restart.

    startup-settings

  6. The computer will boot automatically to the Advanced Boot Options screen. From there you can select Safe Mode to start Windows Server 2012 in Safe Mode.

    advanced-boot-options

How to Turn Off or Disable Touch Keyboard in Windows 10

July 4th, 2016 by Admin

If your computer has a physical keyboard, then you might not need to use the Touch keyboard at all. In this tutorial we’ll show you a simple way to turn off, remove or disable Touch keyboard in Windows 10.

touch-keyboard

How to Turn Off or Disable Touch Keyboard in Windows 10?

  1. Press the Windows key + R on your keyboard to open the Run box. Type services.msc and press Enter.

    run-services

  2. When the Services applet opens, click on the Name column to sort the services by name, and then scroll until you locate the “Touch Keyboard and Handwriting Panel Service“. Double-click on that service.

    services

  3. In the resulting Properties window, change the Startup type to Disabled, and click the Stop button if this service is running now. Click OK to save your change.

    touch-keyboard-service

  4. If the Touch keyboard shortcut icon is displayed in the system tray, you can remove it by right-clicking on the taskbar and deselecting the “Show touch keyboard button” option.

    remove-touch-keyboard-button

  5. Reboot your computer. No more annoying keyboard icon in the system tray and the Touch keyboard will not pop up automatically and bother you anymore.

This will of course, disable both the Touch keyboard and handwriting service, so you won’t be able to use the handwriting. If you need to enable Touch keyboard again, just change the Startup type of the “Touch Keyboard and Handwriting Panel Service” service back to Automatic.

How to Open and Use Windows 10 Touch Keyboard

July 4th, 2016 by Admin

Touch keyboard is Windows’s built-in tool that lets you type on touch devices, or even type with a mouse when you don’t have access to a physical keyboard. In this tutorial we’ll show you the simplest ways to open Touch keyboard and use it in Windows 10.

Part 1: Open Touch Keyboard in Windows 10

Just press the Windows key + R to open the Run box. Type tabtip and press Enter. It should be the fastest way to launch Touch keyboard in Windows 10.

tabtip

If you want to access Touch keyboard frequently, you can add the Touch keyboard shortcut to the taskbar. Simply right-click on the taskbar and select/check the “Show touch keyboard button” option in the context menu.

show-touch-keyboard-button

You’ll see a keyboard icon appear in the lower-right corner of the taskbar. Click that icon and you can open Touch keyboard immediately.

touch-keyboard-button

Part 2: Make Windows 10 Show Touch keyboard Automatically

By default, Windows 10 will not make the Touch keyboard appear when you type on the address bar or text fields. The good news is that you can change that behavior in just a few steps:

  1. Press the Windows key + I to open the Settings app. Click on Devices.
  2. Select Typing in the left side, scroll down and toggle on: Automatically show the touch keyboard in windowed apps when there’s no keyboard attached to your device.
  3. The Touch keyboard will automatically pop up when tapping on text forms, address bars, or anywhere else that you need to type on.

Part 3: How to Use Touch Keyboard

Once the Touch keyboard is open, you can drag it around the screen or re-size it. Here are 4 main features for Touch keyboard:

touch-keyboard

  • To add languages to the keyboard, tap the button in the right corner and select Language Preferences. Or, add them from the Settings area in Settings > Time & language > Region & language.
  • Tap the button in the bottom right corner to change the keyboard layout to a standard keyboard, a minimal keyboard, or a handwriting panel for writing. After switched to standard keyboard layout, you’ll have access to the Alt, function, tab, and other keys missing from the default Touch keyboard.
  • Autocorrect and suggestions. As you type or write with your finger, word suggestions appear at the top of the keyboard. See the one you want? Just tap to select it, then keep typing.
  • Both the basic and split keyboards include a wide range of emoticons and emojis, including different skin tones. To view the many categories, click the smiley face icon, then tap the left arrow button to move through them.

2 Ways to Turn On / Off Network Discovery in Windows 10

July 3rd, 2016 by Admin

Network discovery is a Windows setting that can control whether your PC can find other computers and if other computers on the same network can see your PC. In this tutorial we’ll show you how to turn on or off network discovery from Control Panel or Command Prompt in Windows 10.

network-discovery-off

Method 1: Turn On / Off Network Discovery from Control Panel

Open the Control Panel in Large icons view. Click Network and Sharing Center.

network-sharing-center

In the left pane of Network and Sharing Center, click the Change advanced sharing settings link.

change-sharing-settings

Now you can find 2 different profile: Private, Guest or public. Expand the options of the network profile that you want to change, select the Turn on network discovery option to enable network discovery, or select the “Turn off network discovery” option to disable network discovery. Click Save changes.

turn-on-off-network-discovery

If prompted by UAC, then click on Yes. If network discovery is turned off, your computer won’t be able to view the other connected devices, and conversely, won’t be visible to the other devices as well.

Method 2: Turn On / Off Network Discovery from Command Prompt

To get started, Open the Command Prompt in administrator mode.

Copy and paste the following command into the Command Prompt and press Enter. This will turn on network discovery for private and public network profiles:
netsh advfirewall firewall set rule group="Network Discovery" new enable=Yes

enable-network-discovery-cmd

If you want to turn off network discovery again, copy and paste this command into the Command Prompt, and press Enter.
netsh advfirewall firewall set rule group="Network Discovery" new enable=No

When finished, you can close the elevated Command Prompt.

Automatically Sync Windows Time More Often Than Default

July 1st, 2016 by Admin

How often does Windows sync time? Is there a way to set a frequent period for Windows to sync time automatically? By default, domain controller will sync clock once per one hour, and standalone computer will sync clock once every week. In this tutorial we’ll show you how to change the time synchronization interval/frequency and make Windows automatically sync time more often than default.

windows-time

How to Make Windows sync time more often than default?

  1. To change the time synchronization interval, we have to access the Registry Editor. Press the Windows key + R to open the Run box. Type regedit and press Enter.

    regedit

  2. Once the Registry Editor opens, navigate to the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet\Services\W32Time\TimeProviders\NtpClient
  3. Look for the SpecialPollInterval entry in the right pane. This entry specifies the interval in seconds for the Windows Time service to sync the time. The default value on standalone computer is 604800 seconds, that is equal to 7 days.

    SpecialPollInterval

  4. Double-click on the SpecialPollInterval entry. From the pop-up dialog, click Decimal and enter the time interval (in seconds). For example, if you want to let Windows sync time each hour, just type 36000. Click OK and close Registry Editor.

    change-time-syn-interval

  5. Now we need to check if the Windows Time service is configured to start during boot. Press the Windows key + R to open the Run box. Type services.msc and press Enter.

    run-services

  6. From the service list, find the service named Windows Time and then double-click on it.

    windows-time-service

  7. Change the Startup type to Automatic and click OK.

    W32Time

    Reboot your computer and Windows will automatically sync the time at the interval you specified. Every time Windows loads up or you start or restart the Windows Time service, it will also sync time immediately.
    That’s all there is to it.