PC Doctor Godalming

Dedicated to Fixing Computers of all Shapes and Sizes
01483 424378
07876 476990

Blacklist or Whitelist WiFi Network Names

Windows terminal commands to Blacklist WiFi names (SSID’s) from view or Whitelist your own name (SSID) and block all others from view

Blacklist method

Block WiFi name:

netsh wlan add filter permission=block ssid="name" networktype=infrastructure

Unblock WiFi name:

netsh wlan delete filter permission=block ssid="name" networktype=infrastructure

Show all the Filters:

netsh wlan show filters

Whitelist method

Allow your own WiFi:

netsh wlan add filter permission=allow ssid="name" networktype=infrastructure

Deny all other WiFi:

netsh wlan add filter permission=denyall networktype=infrastructure

Delete deny all other WiFi filter:

netsh wlan delete filter permission=denyall networktype=infrastructure

Continue Reading

Wine Dotnet install conflicts

If, for example, when installing  dotnet40 via winetricks you get the following error:

$ winetricks dotnet45
Executing w_do_call dotnet45
------------------------------------------------------
error: dotnet45 conflicts with dotnet40, which is already installed.

Run the following command to override and force through change

$ winetricks --force dotnet452

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

Mac Show Hidden Files

In Finder to display of Hidden files by type Cmd + Shift + . (dot)

To turn on globally type the following command in Terminal:

defaults write com.apple.finder AppleShowAllFiles -bool true

To revert back to hidden append false:

defaults write com.apple.finder AppleShowAllFiles -bool false

To make the Finder change effective type:

killall Finder

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

Thunderbird 60 gcontactsync Blocked after enabling OAuth2

These notes apply to Kubuntu 18.04 and Thunderbird 60.9.1.

After Google restricted access for LSA’s (Less Secure Apps) it was necessary to change the Gmail account authentication method from “Normal Password” to OAuth2. After this gcontactsync failed – after logging into Google and successfully allowing access to Contacts it was blocked. After extensively trawling the net for a solution one was found. This said the problem was due to Thunderbird being corrupted and the solution offered was a complete rebuild – drastic but it worked!

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