Author Archive

How to Open Notepad as Administrator in Windows 10

October 17th, 2018 by Admin

When you open a system file with Notepad, make few changes and try saving it, you may get the following error message:

“You don’t have permission to save in this location. Contact the administrator to obtain permission”

To fix this permission issue, you have to run Notepad as an administrator. In this tutorial we’ll show you 3 ways to open Notepad as administrator in Windows 10.

Method 1: Open Notepad as Administrator via Cortana Search

  1. Type “notepad” in the Cortana search box on the taskbar. Right-click on the program that appears in the search results, and select “Run as administrator“.

  2. When the User Account Control dialog appears, click Yes. It will launch Notepad as administrator rights.

Method 2: Create a Desktop Shortcut to Always Open Notepad as Administrator

  1. Right-click on the empty space on the desktop, and select New -> Shortcut.
  2. In the Create Shortcut wizard, type in the full path of the Notepad executable file, and click Next.
    %windir%\system32\notepad.exe

  3. Give a descriptive name for the new shortcut and click Finish.

  4. Right-click the newly created shortcut on the desktop and select Properties.

  5. In the Shortcut tab, click Advanced.

  6. Check the “Run as administrator” box and click OK.

  7. Just double-click the Notepad desktop shortcut and it will open it always as administrator.

Method 3: Add “Open Notepad as Admin” to Right-click Context Menu

  1. Open Registry Editor and navigate to the following location:
    HKEY_CLASSES_ROOT\*\shell

    Right-click on the shell key in the left pane, and select New -> Key from the pop-up menu.

  2. Name the new key runas.

  3. Select the runas key, and then double-click on “(Default)” in the right pane and change its value to “Open with NotePad (Admin)“.

  4. Right-click on the runas key and create a new subkey named command. Next, double-click on “(Default)” in the right pane and set it to “notepad %1“.

  5. Close Registry Editor. When you right-click any file in Windows Explorer, you’ll see a new option to open Notepad as admin from the context menu.

That’s it!

How to Open Phone Dialer on Windows 10 / 8 / 7

October 15th, 2018 by Admin

The Phone Dialer is a built-in app in Windows that lets you use a modem to dial people on the Internet. By default Phone Dialer is not added to the Start Menu and you’re unable to access it easily. In this tutorial we’ll show you 3 quick ways to open Phone Dialer on Windows 10 / 8 / 7.

Method 1: Open Windows Phone Dialer from the Run Command

Press the Windows key + R together to open the Run command, type dialer and press Enter. This will launch Windows Phone Dialer immediately.

Of course, you can also open Phone Dialer by running the above command at Command Prompt or PowerShell.

Method 2: Open Windows Phone Dialer via Search

In Windows 10, type dialer into the Cortana Search box next to the Start button, and you can launch the Phone Dialer utility from the result.

If you’re running Windows 8 or Windows 7, just click the Start button and type dialer in the search box to access Phone Dialer.

Method 3: Create a Desktop Shortcut to Open Phone Dialer

Right-click any blank place on the Desktop, and choose New -> Shortcut.

Type the following in the box marked Type the location of the item, and click Next.
%windir%\System32\dialer.exe

Give the shortcut a name, and click Finish.

A new shortcut will appear on your desktop. You can double-click it to open Windows Phone Dialer every time you need to access it.

3 Ways to Backup BitLocker Recovery Key on Windows 10

October 11th, 2018 by Admin

After turning on BitLocker to encrypt your hard drive, it’s important to save a copy of the BitLocker recovery key in case you need it. If you’ve lost the recovery key created when you initially set up BitLocker, you can make a new copy of the key as long as you can sign into Windows 10. This tutorial explains 3 simple ways to backup the BitLocker recovery key on Windows 10.

Method 1: Backup BitLocker Recovery Key Using Control Panel

  1. To start, type BitLocker in the Cortana search box on the taskbar, and then click Manage BitLocker from the result to open the BitLocker Drive Encryption control panel.

  2. Click on the link stating “Back up your recovery key” next to the encrypted drive.

  3. It will prompt you to choose how to store the recovery key. You can save the key on a USB drive, a file on unencrypted drive or print it out.

    But I would recommend you save the key to your online Microsoft account, so you can retrieve it from any computer by signing into this page: onedrive.com/recoverykey.

Method 2: Backup BitLocker Recovery Key Using Command Prompt

  1. Open the Command Prompt as administrator, and run the following command and press Enter. Replacing C: with the letter of your BitLocker-encrypted drive.
    manage-bde -protectors C: -get

  2. You can find a 48 digit recovery key at the end. Note it down on a piece of paper or save it to somewhere secure and accessible.

Method 3: Backup BitLocker Recovery Keys for All Drives Using PowerShell

This method works by creating a PowerShell script, so you can backup BitLocker recovery keys for all drives at once. Follow these steps:

  1. Open Notepad and paste the following script in it. Save the file with the .ps1 extension.

    # Export the BitLocker recovery keys for all drives and display them at the Command Prompt.
    $BitlockerVolumers = Get-BitLockerVolume
    $BitlockerVolumers |
    ForEach-Object {
    $MountPoint = $_.MountPoint
    $RecoveryKey = [string]($_.KeyProtector).RecoveryPassword
    if ($RecoveryKey.Length -gt 5) {
    Write-Output ("The drive $MountPoint has a BitLocker recovery key $RecoveryKey.")
    }
    }

  2. Right-click on the Start button and then select “Windows PowerShell (Admin)” from the WinX Menu.

  3. From the PowerShell console, you can execute the .ps1 script you’ve created previously.

    The screen will display the recovery keys for every BitLocker drive found on your computer. If you’re restricted from running PowerShell script, you may have to adjust the PowerShell execution policy.

That’s it! Whenever your computer won’t start or you can’t sign into your Windows account, you can still access your files by decrypting the encrypted drive with your BitLocker recovery key.

Make a Desktop Shortcut to Switch User Accounts in Windows 10

October 9th, 2018 by Admin

Looking for a straightforward way to switch user accounts? Normally we can switch between users by clicking the user name icon on the top left of Start Menu and then selecting another account from the list. But this method is not quite effective.

In this tutorial we’ll show you how to make a desktop shortcut for quickly switching user account in Windows 10, saving you a click or two along the way.

Make a Desktop Shortcut to Switch User Accounts in Windows 10

  1. Right-click on any empty spot of your desktop, and then select New -> Shortcut.
  2. When the Create Shortcut wizard opens, enter the full path of the Session Disconnection Utility (C:\Windows\System32\tsdiscon.exe) into the location box, and click on Next.

  3. Name the shortcut “Switch User”, and click on Finish.

  4. Next, right-click on the new shortcut you created, and then select Properties.

  5. Go to the the Shortcut tab and click on Change Icon.

  6. By default, tsdiscon.exe contains no icons. So pick the icon of your choice and click OK.

  7. Now, double-clicking the “Switch User” desktop shortcut will take you directly to the User Selection screen, in case you have disabled the Lock screen.

That’s it!

How to Set up Windows Hello to Log into Windows 10

October 8th, 2018 by Admin

Windows Hello is a new sign-in option that lets you log into Windows 10 using facial recognition, without having to enter a password. If your Windows 10 laptop or tablet has a built-in camera, you can set up Windows Hello in just a few simple steps.

How to Set up Windows Hello to Log into Windows 10

  1. Press Windows + I keyboard shortcut to open the Settings app. Click on Accounts and then select Sign-in options in the left sidebar. Scroll down to the Windows Hello section and click on Set up.

  2. At the bottom of the Windows Hello setup page, click on Get started. The camera will scan your face and you need to keep looking directly at the camera for several seconds.

  3. Once it completes, you’ll be asked to set up a PIN as an alternative sign-in option in case Windows 10 has trouble recognizing your face. Click on Set up PIN.

  4. You’ll be asked to enter the current Windows 10 password to verify your identity.

  5. Once verified, you can create a PIN code to use in place of Windows Hello.

  6. You’re all done! Whenever you get to the Windows 10 sign-in screen, you will see a small eye and text saying it is looking for you. Just look at your camera and it will log you in automatically.

Setting up PIN is mandatory for using Windows Hello in Windows 10. If you remove the PIN login later, the system will turn off Windows Hello automatically.

Fix: “Open with” Missing from Windows 10 Right-Click Context Menu

October 2nd, 2018 by Admin

How can I restore “Open With” context menu in Windows 10? The “Open With” option lets you open files with any program of your choice, especially useful if the file extension is unknown or it’s associated to a program that doesn’t exist. In this tutorial we’ll show you how to add the missing “Open With” option back to Windows 10 right-click context menu.

Fix: “Open with” Missing from Windows 10 Right-Click Context Menu

  1. Open the Run by pressing Windows key + R. Type regedit and press Enter to open Registry Editor.

  2. Navigate to the following key:
    HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers

    Right-click on the ContextMenuHandlers and select New -> Key from the popup menu.

  3. Name the new key as Open With and then highlight it. Double-click on the (Default) value in the right-hand pane.

  4. Copy and paste the following text into the Value data edit box, and click OK.
    {09799AFB-AD67-11d1-ABCD-00C04FC30936}

  5. Close Registry Editor. Now you’ve successfully added “Open with Notepad” to right-click context menu for all file types.

How to Set .PS1 Script to Open with PowerShell By Default

September 30th, 2018 by Admin

When you double-click a .ps1 file from File Explorer, Windows 10 will open it in Notepad rather than executing the script with PowerShell. If you want to set .ps1 script to open with PowerShell by default, you have to change the file type association.

Method 1: Associate .PS1 to Open in PowerShell

  1. Right-click any .ps1 file in File Explorer, and then select Open with from the context menu.

  2. If the PowerShell program isn’t listed, click on More apps.

  3. Check the box labeled “Always use this app to open .ps1 files“, and click on “Look for another app on this PC“.

  4. When the Open with dialog box appears, drill down to the directory C:\Windows\System32\WindowsPowerShell\v1.0 and select the powershell.exe file. Click Open.

  5. Now you’ve successfully set PowerShell as the default program for opening .ps1 file type.

Method 2: Change Default Program for Opening PowerShell Script

Need to associate all types of PowerShell script (.ps1, .psm1, .psd1, etc.) to open with PowerShell by default? You can do it with a simple registry tweak.

  1. Open the Registry Editor. Copy the following line and paste it into the address bar, then press Enter.

    HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command

    Next, double-click the (Default) value in the right pane.

  2. In the Edit String window, copy and paste the following command into the Value data field. Click OK.

    "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" "%1"

  3. Close Registry Editor. From now on, any file type of PowerShell script will be opened in PowerShell instead of the Notepad program.

Add “Run with PowerShell (Admin)” Context Menu for .PS1 Files

September 29th, 2018 by Admin

How to add “Run as administrator” to PS1 file context menu in Windows 10? Before you can run PowerShell script with admin rights, you have to launch the elevated PowerShell console firstly. To simplify this process, you can add “Run with PowerShell (Admin)” to the right-click context menu for .PS1 files.

How to Add “Run with PowerShell (Admin)” Context Menu for .PS1 Files

  1. Open the Registry Editor. Paste the following registry location into the address bar, and then press Enter.

    HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell

    Right-click on the Shell key and select New->Key, name it “Run with PowerShell (Admin)“. Underneath that, create another subkey called “Command“.

  2. Select the Command subkey in the left pane, and then double-click the “(Default)” string in the right pane.

  3. Copy and paste the following command into the Value data field, and click OK.

    "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" "-Command" ""& {Start-Process PowerShell.exe -ArgumentList '-ExecutionPolicy RemoteSigned -File \"%1\"' -Verb RunAs}"

  4. Close Registry Editor. Now you should see a new context menu entry called “Run with PowerShell (Admin)” when you right-click any .PS1 script.

Fix: Windows 10 Photos App Not Working

September 27th, 2018 by Admin

Unable to open the Photos app and it keeps crashing? The Photos app is the default photo viewer in Windows 10. If it has stopped working and you’re unable to open image files, try the following methods to fix the Photos app issues.

Method 1: Reinstall Windows 10 Photos App

If your Photos app doesn’t work normally or it can’t even start, getting the latest version of the Photos app may fix your issue. Follow these steps to reinstall the Photos app in Windows 10:

  1. Press the Windows key + X to open the Quick Link menu, and then select Windows PowerShell (Admin).

  2. Copy and paste the following command and then press Enter to uninstall the built-in Photos app:

    Get-AppxPackage *Microsoft.Windows.Photos* | Remove-AppxPackage

  3. Once done, you need to reinstall the Photos app. To do it, go to the Microsoft Store app and search for the “Photos” app, click on Get to download and install it on your computer.

Method 2: Restore Windows 10 to Previous State

If the Photos app was working prior to the issue, you can restore Windows 10 to a previous date before the issues began. Here’s how:

  1. Press the Windows key + R on your keyboard to open the Run command. Type SystemPropertiesProtection and press Enter.

  2. Once System Properties dialog is opened, click on System Restore.

  3. When you see the System Restore wizard, click on Next.

  4. Now you can view all recent system restore points available on your Windows 10 system. Choose the restore point before your Photos app stops working, and click on Next.

  5. Click on Finish to confirm your restore point and your PC will automatically reboot to begin the restore process.

That’s it!