Archive for the ‘Windows 10’ category

Fix: “User must change password at next logon” option greyed out in Windows

December 29th, 2016 by Admin

When you try to change or reset the password of a user account, you might find the checkbox “User must change password at next logon” is greyed out, so you can’t choose this option.

user-must-change-password-next-logon

In this tutorial we’ll show you how to enable the “User must change password at next logon” option that is greyed out for Windows local or domain user account.

For Windows Local Accounts:

Open the Computer Management. Expand System Tools, then Local Users and Groups, then Users. Right-click on your local account and select Properties from the context menu.

local-account-properties

This will open the Properties dialog box. Uncheck the “Password never expires” box and you’ll then find the “User must change password at next logon” option is enabled. Click Apply and then OK.

windows-password-never-expires

For Active Directory User Accounts:

In Windows Server with Active Directory installed, open the Active Directory Users and Computers MMC snap-in (start->run->dsa.msc). Right-click on your domain user and select Properties.

domain-account-properties

Click the Account tab. Under the Account options section, uncheck the “Password never expires” checkbox and click OK.

domain-password-never-expires

Now you should be able to reset the password and force the domain user to change it at next login.

3 Ways to Change Network Location to Public or Private in Windows 10

December 27th, 2016 by Admin

The first time you connect to a network, you’ll be prompted to turn on sharing and connect to devices. Turn on this settings will set your network location to private. A private network makes your computer discoverable to other PCs. If you don’t want to share musics, pictures, videos or even printers with other PCs on the network, you should set the network type to public. In this tutorial we’ll show you 3 ways to change network location to public or private in Windows 10.

network-location-type

Method 1: Change Windows 10 Network Location Using Group Policy

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

    secpol

  2. When the Local Security Policy window opens, click Network List Manager Policies in the left pane. Double-click on the name of the current network connection in the right pane.

    network-list-policies

  3. Click the Network Location tab at the top. Under the Location type, you can choose either Private or Public.

    private-public-network-location

  4. Click Apply and then OK to save your change.

Method 2: Change Windows 10 Network Location Using Registry Editor

  1. Press the Windows key + R to open the Run box. Type regedit and press Enter.
  2. In the left pane of Registry Editor, navigate to the key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles
  3. Expand the Profiles key in the left pane. Click on each subkey and have a look if the ProfileName matches the name of your current network connection.

    network-profile-name

  4. If you have found the right subkey, double-click the Category in the right pane and edit the DWORD to the value you want. Public: 0, Private: 1, Domain: 2.

    network-profile-category

  5. Reboot your computer to apply the new network location.

Method 3: Change Windows 10 Network Location Using PowerShell

  1. Open PowerShell in Administrator mode.
  2. Type or paste the following command in the PowerShell and press Enter. It will list the name and properties of your active network connection. In my example, the network name is TLRouter.
    Get-NetConnectionProfile

    get-network-profile

  3. Type the following command and press Enter to change your network location to private. Replace TLRouter with your network name.
    Set-NetConnectionProfile -Name "TLRouter" -NetworkCategory Private

    change-network-location-via-powershell

    If you want to change the network location to public, type this command instead:
    Set-NetConnectionProfile -Name "TLRouter" -NetworkCategory Public

5 Ways to Boot Windows 10 into Advanced Startup Options

December 26th, 2016 by Admin

Advanced Startup Options lets you boot Windows in troubleshooting mode. If you want to reset, refresh, restore your computer or get into Safe Mode, you have to access the Advanced Startup Options. In this tutorial we’ll show you 5 ways to boot Windows 10 into Advanced Startup Options.

If you Windows 10 doesn’t start, use method 4. If you can’t log on to your PC when you forgot Windows 10 password, method 3 will be the easiest way to access Advanced Startup Options.

Method 1: Boot into Advanced Startup Options Using Settings App

  1. Open the Settings app by clicking the Settings icon on the Start Menu, or pressing the Windows key + I keyboard shortcut.

  2. Click Update & security.

    update-security

  3. Click the Recovery tab on the left, and then click Restart now under Advanced startup.

    advanced-startup

  4. The computer will log you off and bring up the Choose an option screen.

Method 2: Boot into Advanced Startup Options Using Command Prompt

  1. Press the Windows key + X keyboard shortcut to bring up the Power User menu, and select the Command Prompt from the list.

    command-prompt-admin

  2. Type or paste the following command in the Command Prompt, and press Enter.
    shutdown.exe /r /o

    boot-into-advanced-startup-via-cmd

  3. You are about to be signed off. Windows 10 will reboot automatically and you can see the Advanced Startup Options.

Method 3: Boot into Advanced Startup Options from Windows Login Screen

  1. At Windows 10 sign-in screen, click on the Power button in the lower right hand corner to bring up the Power menu.

  2. Hold down the Shift key on the keyboard, and then click Restart from the Power menu. This will bring up the Choose an option screen.

Method 4: Boot into Advanced Startup Options Using Windows Install Disk

  1. Start your computer with Windows 10 installation media (or Windows RE). You can read this previous Windows 10 guide to create bootable USB drive for Windows 10 Setup.
  2. When you see the Windows Setup screen, click Next.

  3. Click Repair your computer. You can then see the Choose an option screen.

Method 5: Create Advanced Startup Options Shortcut

  1. Right-click an empty area on your desktop, and select New -> Shortcut.
  2. In the Create Shortcut wizard, copy and paste the following command into the location box and click Next.
    %windir%\system32\shutdown.exe /r /o /f /t 00

  3. Type Advanced Startup for the shortcut name, and click Finish.

  4. Right-click on the newly-created shortcut on your desktop and select Properties. In the Properties dialog, go to the Shortcut tab and click the Change Icon button.

  5. In the Change Icon window, copy and paste the following in the “Look for icons in this file” field, and press Enter. Highlight the icon and click OK.
    %windir%\System32\bootux.dll

  6. You’re almost done! Just double-click the desktop shortcut and you can boot Windows into Advanced Startup Options immediately.

3 Ways to Turn On / Off UAC in Windows 10

December 15th, 2016 by Admin

When you try to install programs in administrator mode or make any system change, a UAC prompt will pop up that alerts you to confirm your changes or operations. As a personal computer user, you may not want to disable these UAC prompts. In this tutorial we’ll show you 3 ways to turn on or off UAC (User Account Control) in Windows 10.

uac-prompt

Method 1: Turn On / Off UAC in WIndows 10 via Control Panel

  1. Open the Control Panel in Windows 10. Set the View by option to Large icons, and then click User Accounts.

    user-accounts

  2. Click on the Change User Account Control settings link.

    change-uac-settings

  3. In order to turn off UAC, move the slider to the bottom (Never Notify) and click OK. If you want to turn on UAC, move the silder to the top (Always notify).

    uac-settings

  4. If prompted by UAC, click on Yes to continue. Reboot your computer for the change to take effect.

Method 2: Turn On / Off UAC in WIndows 10 via Registry Editor

  1. Open Registry Editor by pressing Windows + R key combination, type in regedit and press Enter.

    regedit-via-run

    If prompted by UAC, click on Yes to continue.

  2. In the left-side pane of Registry Editor, navigate to the following key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

    EnableLUA

    In right-side pane, double-click EnableLUA to modify.

  3. In the Value data box, type 0 if you want to turn off UAC, or type 1 to turn on UAC. Click OK.

    disable-uac-registry

  4. Exit Registry Editor and reboot your computer.

Method 3: Turn On / Off UAC in WIndows 10 via Command Line

  1. Press the Windows + X key combination, and then select “Command Prompt (Admin)” from the popup menu. When prompted by UAC, click Yes.
  2. To turn off UAC, copy and paste the following command in the Command Prompt, and press Enter.
    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

    disable-uac-via-cmd

    To turn on UAC, paste the following command into Command Prompt and press Enter.
    reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

  3. After you enable or disable UAC, you will have to reboot your computer for the changes to take effect.

Windows 10 Fix: This app has been blocked for your protection

December 14th, 2016 by Admin

When you try to install a driver or application in Windows 10, you might get the following UAC error message:

This app has been blocked for your protection. An administrator has blocked you from running this app. For more information, contact the administrator.

app-blocked-for-protection

Even if you run the application with administrative rights, you’ll get the exact same error. This problem happens when your application was digitally signed with a revoked or untrusted certificate. In this tutorial we’ll show you 2 ways to fix the issue “This app has been blocked for your protection” in Windows 10.

Method 1: Install the Application from Elevated Command Prompt

To get around the error “This app has been blocked for your protection”, you can run the application from an elevated Command Prompt. Follow these steps:

  1. Open File Explorer and locate the application (.exe) in question. Right-click on it and select Properties.
  2. When the Properties dialog box opens, note down the full path that you need later. In my example, the path is C:\Users\pcunlocker\Downloads\uTorrent_3.2_build_27568.

    application-full-path

  3. Now open an elevated Command Prompt. This can be done by pressing the Windows key + X and then selecting “Command Prompt (Admin)“.

    winx

  4. At the Command Prompt, type the full path of the application that you want to install and press Enter.

    install-app-from-command-prompt

Method 2: Tweak Local Security Policy

To fix the error “This app has been blocked for your protection” permanently in Windows 10, you have to tweak the local security policy:

  1. Press the Windows key + R to open the Run box. Type gpedit.msc and press Enter to open the Local Group Policy Editor.

    gpedit

  2. In the left pane, navigate to:
    Computer Configuration -> Windows Settings -> Security Settings -> Local Policies -> Security Options

    local-security-options

    Look at the right pane and double-click the policy “User Account Control: Run all administrators in Admin Approval Mode“.

  3. Change the security setting to Disabled and click OK.

    run-administrators-in-approval-mode

  4. Close Local Group Policy Editor and restart your computer. After logging in, you can install the application without encountering the error “This app has been blocked for your protection”.

Note: tweaking the policy above will also cause UAC to be turned off automatically. But just turning off UAC won’t fix the error “This app has been blocked for your protection”.

SysKey: Lock & Unlock Windows PC with USB Drive

December 6th, 2016 by Admin

Is it possible to set up a USB Drive to log into Windows without installing any software on the PC? SysKey is a built-in Windows utility that allows you to set up a Startup Key/Password to protect the SAM (Security Accounts Management) database. You can store the Startup Key to USB drive. Whenever the computer boots up, you will have to insert the USB drive to login.

In this tutorial we’ll walk you through how to enable SysKey in Windows 10/8/7/Vista/XP, and use a USB drive as a key to lock & unlock your computer.

How to Lock & Unlock Windows PC Using SysKey?

Syskey (also known as SAM Lock Tool) was introduced since Windows NT. It’s so old that it only stores the Startup Key on the A: drive. So you need to assign the drive letter A: to your USB flash drive before following the steps below.

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

    syskey

  2. Click the Update button.

    secure-windows-account-database

  3. Choose the System Generated Password option, and then select Store Startup Key on Floppy Disk and click OK.

    startup-key

  4. You will be asked to insert a disk into drive A: to save the Startup Key. Make sure you change the drive letter of your USB drive to A: and click OK.

    save-startup-key-to-disk

  5. After Windows writes the Startup Key into your USB drive, you’ll receive the message that the disk is now required to start up the system. Open your USB drive and you can see a single file named StartKey.Key, which is 16 bytes big.

    syskey-file

  6. Every time you computer boots up, you’ll be presented with the Startup Key Disk dialog which requires you to insert your USB drive. Without the USB drive, you’re unable to get past to access Windows login screen.

    startup-key-disk

2 Ways to Change Drive Letter in Windows 10

December 5th, 2016 by Admin

The drive letter you want is already used by another partition? Your drive doesn’t appear in File Explorer and no drive letter is assigned? In this tutorial we’ll show you 2 ways to manually change drive letter of any volume on your hard disk or USB storage device. Quickly get the missing or desired drive letter back in Windows 10.

Method 1: Change Drive Letter in Windows 10 Using Disk Management

  1. To get started, you need to open Disk Management. In Windows 10, you can access it by pressing Windows key + X and then selecting Disk Management.
  2. In the right pane you can see the details of all volumes and partitions on your hard drive and removable media. Right-click on the volume or partition you want to change, and select Change Drive Letter and Paths.

    change-drive-letter-and-paths

  3. In the next dialog box, click Change.

    change-or-remove-drive-letter

  4. Choose the the Assign the following drive letter option, then click the drop-down list to select your desired drive letter and click OK.

    assign-drive-letter

  5. A warning message box will pop up. Click Yes and your drive should now have the new letter assigned.

Method 2: Change Drive Letter in Windows 10 Using Command Prompt

  1. Open the Command Prompt in Administrator mode. This can be done by press the Windows key + X and then selecting “Command Prompt (Admin)“.

  2. At the command prompt, type diskpart and press Enter. Next type list volume to list out all volumes on your computer. Note down the volume number next to the drive that you want to change the letter of. In our case, that number is 4.

    list-volumes

  3. Type the following command to select the volume whose drive letter you want to change. Replace 4 with the volume number you noted down in above step.
    select volume 4
  4. Run the following command to assign a new drive letter. Substitute A for the new drive letter you’d like to use.
    assign letter=A

    change-drive-letter-from-cmd

    Tips: if you want to remove the drive letter only, type “remove letter=F“. Replace F with the current drive letter.

  5. Now you’ve successfully changed the drive letter in Windows 10. Your drive should show up with a new drive letter.

Display Full Path in Title Bar of Windows 10 File Explorer

November 26th, 2016 by Admin

By default, Windows 10 will display the folder name alone in the title bar of File Explorer. Sometimes you might need to know the absolute path of the location you are currently in. In this tutorial we’ll show you 2 ways to make Windows 10 display full path (file location) in the title bar of File Explorer.

Method 1: Make Windows 10 Display Full Path in Explorer Title Bar Using Folder Options

  1. Open File Explorer. Click the View tab on the ribbon. You’ll see the the Options button on the right-hand side. Click it to open the Folder Options dialog.

    open-folder-options

  2. Click the View tab. Locate and tick the checkbox named “Display the full path in the title bar“.

    display-full-path-in-the-title-bar

  3. Click Apply followed by OK. Log off your user or restart the computer. As you see, the File Explorer should now show the full file path instead of the folder name in the title bar.

    file-explorer-display-full-path

Method 2: Make Windows 10 Display Full Path in Explorer Title Bar Using Registry Editor

  1. Press the Windows key + R to open the Run dialog box, type regedit and hit Enter.

    regedit-via-run

  2. In the left pane of Registry Editor, navigate to the following key:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState
  3. In the right pane, double-click the value entry FullPath and modify the value to 1.

    display-full-path-in-explorer-titlebar

    If FullPath doesn’t exist, you need to create it first. To do so, right-click on the empty space and select New -> DWORD (32-bit) Vaule, and name it FullPath.

  4. Close Registry Editor and reboot your computer. If you want to make Windows 10 not show full path in the title bar of File Explorer, just open Registry Editor and delete the FullPath value entry.

How to Create Shortcut to Shutdown / Restart Windows 10

November 25th, 2016 by Admin

In previous post we’ve covered 7 ways to shutdown / restart your Windows 10 computer. However, if those are not simple or quick enough for you, you can create a shutdown / restart shortcut on your desktop. The following tutorial will walk you through the steps of creating a shortcut to shutdown / restart Windows 10 more quickly.

Tips: If you want to schedule your computer to shutdown or restart at specified time, please check out this article: Auto Shutdown Windows 10 / 8 As You Expect

How to Create Shortcut to Shutdown / Restart Windows 10?

  1. Right-click any empty space on the desktop, select New and then Shortcut from the context menu.

    new-desktop-shortcut

  2. When the Create Shortcut wizard appears, copy and paste one of following commands in the location box and click Next.

    • Shutdown Computer:
      %windir%\System32\shutdown.exe /s /t 0
    • Restart Computer:
      %windir%\System32\shutdown.exe /r /t 0
    • Lock Computer:
      Rundll32.exe User32.dll,LockWorkStation

    create-shutdown-shortcut

  3. You’ll be asked to name the shortcut. I suggest you name the shortcut to correspond to the action it will perform.

    name-a-shortcut

  4. When you’ve clicked Finish on the above dialog, you’ll see a shortcut on the desktop. You can double-click it to immediately shut down or restart your computer.

    shutdown-shortcut-icon