PC Doctor Godalming

Dedicated to Fixing Computers of all Shapes and Sizes
07876 476990

Category: Windows

Microsoft Windows Operating Systems

Chrome Remote Desktop Client Set Up

  1. On client PC open Chrome (or New Edge) and log into client Google account
  2. Browse to Chrome Remote Desktop Set-up page URL below:
    https://remotedesktop.google.com
  3. In section titled Set up remote access and click download icon
  4. In Chrome Web Store click Add to Chrome to add extension
  5. In Add “Chrome Remote Desktop” dialog click Add extension
  6. Close “Chrome Remote Desktop has been added”

Continue Reading

Change Google’s Glaring White Home Page Background

In Chrome and New Edge install Custom Style Script add-on to override Google’s home page background colour

In Custom Style Script select Open options Page and add the following URL and CSS

URL: https://www.google.com/ or country of choice, e.g. google.co.uk, google.de
CSS: body { background-color: lightgray !important; } or colour of choice

In Firefox Install the Stylus extension

Go to the Google home page, click the toolbar icon and choose Manage >

Continue Reading

Windows 10 Shortcuts

Keyboard shortcut Action
Ctrl + A Select all content.
Ctrl + C (or Ctrl + Insert) Copy selected items to clipboard.
Ctrl + X Cut selected items to clipboard.
Ctrl + V (or Shift + Insert) Paste content from clipboard.
Ctrl + Z Undo an action, including undelete files (limited).

Continue Reading

Fix Windows 10 Update Failures, e.g. Error 0x800f081f

Try running DISM and SFC commands to repair Windows system files. Once complete reboot and try running the update again.

DISM /Online /Cleanup-image /RestoreHealth

The above DISM command typically completes without issues, but if there are problems replacing the damaged files, you will need to provide another image using the Source option to complete the task. You can use an “install.wim” or “install.esd” file from another computer, bootable install media, or Windows 10 iso file. Make sure that the files match the version,

Continue Reading

Change Windows 10 Users Folder Name

  1. Run ‘command prompt’ as administrator” and enter following
  2. net user Administrator /active:yes
  3. Sign out
  4. Log in with “Administrator” account. If newly activated wait up until Windows sets up the account
  5. From Start Menu right-click on Start Menu icon and select ‘Computer Management’
  6. If “Local users and groups” not listed run steps below to install Local User and Group Management (lusrmgr.exe) Console for Windows 10 Home
  7. Click on “Local users and groups”
  8. Click ‘Users’.

Continue Reading

Add .wps and .xlr Works associations to Office 2010 Starter Edition

Do the following (with Admin account) to associate .wps (Works document) and .xlr (Works spreadsheet) file types to Word and Excel.

  1. Create Restore point to roll-back in case you make a mistake editing the Registry
  2. Run Regedit
  3. Locate HKEY_CLASSES_ROOT \ .doc
  4. Right-click .doc key and select Export and save to Desktop file as, e.g. docassoc.reg. The contents should look like the sample below.
  5. Repeat steps 3-4 for .xls
  6. Exit regedit
  7. In file File Explorer Copy &

Continue Reading

Enable Windows F8 Safe Mode Boot Key

Follow steps below to enable F8 safe mode boot (applies to Windows 10 and 8.1):

  1. Boot PC using Windows 10 or  8.1 ISO USB flash drive or DVD
  2. Click Next to skip the first screen
  3. Press Shift + F10 To open advanced Command prompt window

Type the following command to enable F8 Safe Mode boot key:

bcdedit /set {default} bootmenupolicy legacy

Type Exit and press Enter to quit the Command Prompt.

Continue Reading

Useful Windows Commands

Some less well known Windows 7, 8.1, 10 Terminal (Command prompt) commands

Command Description
powercfg /batteryreport Detailed battery diagnostics >  html
netsh wlan show wlanreport WLAN data last 3 days > html
Alt+Enter Full screen mode
F7 List previous commands
doskey /history >

Continue Reading

Gulp Sass suddenly rejecting double quotes

A slip-up of adding an extra ” to a string definition highlights an anomaly in Sass which causes it to flag every line of scss  code (including comments) with double quotes as an error including the real error lost in the jungle of errors. See example below with ” added to the end of $fontfamily (not easy to spot) and an excerpt of the Sass compiler error message pointing to valid line of code amongst many more misleading messages.

$fontfamily: "Comic Sans MS",Arial,Helvetica,sans-serif!important";

Continue Reading