Wisdom (things I seldom remember)

Gmail (aka: Google Mail)

Address aliases (dot's and +'s in address)

Useful things to remember/know about Google addresses:
  1. Any dots are ignored. For instance, these all go to the same mailbox:   aNother@gmail.com   A.N.Other@gmail.com   a.n.o.t.h.e.r@gmail.com
  2. Anything including and following a + and before the @ is ignored (referred to as an alias by Google).
    So these all go to the same mailbox:   A.N.Other@gmail.com   A.N.Other+bank@gmail.com   another+library@gmail.com
    Using such an address to register with a website means you can filter mails from the website (ref: Unlimited Gmail addresses) and identify spam mails from the website (or a breach thereof).
    NB: some websites (incorrectly) do not recognise + as a valid email address character, so won't let you register using such an alias.
  3. @gmail.com and @googlemail.com (its older antecedent) both go to the same mailboxes
  4. Like all mail systems, addresses are case-insensitive
NB: these rules apply only to the way Google handles incoming email. They do not apply when you use an email address as a login name to a website (websites generally treat such names case-insensitively, but will certainly want you to have the same characters as you used when you registered with them).
But, sadly some websites do not understand the allowed syntax in email addresses (in particular the use of + in the Local-part of the address - the bit before the @) so you cannot use aliases with such backward sites. for

Search by size, attachment, etc

size:5m
has:attachment
is:starred
is:unread
has:nouserlabels
Ref: Search operators you can use with Gmail including basics (which you need in the app, which has no Advanced Search form):
to:string
from:string
subject:string
And combinations and wildcards such as:
in:trash is:unread -from:JCPR*
Also, the google page above doesn't show you that AND, OR and NOT can be used.
eg: to:(Janet.Binney@gmail.com OR Janet.Binney+) OR DeliveredTo: janet.binney@gmail.com AND NOT from:(calendar-notification@google.com)
cf: Refine Web searches - constructs in Google search.

Filter to clear old mail

To clear old mail, you need a filter which (because filters only run on incoming mail) you open and run from time to time (thanks to Matt Skaggs for this). eg:

Filter for different labelling of mails from the same domain

Thanks to Draconian Overlord (DO) for this.
I wanted to handle incoming messages from different addresses in the same domain differently. This is done by carefully managing the ordering (I just did it by deleting them and re-creating them in the order I wanted, rather than the more exhaustive way DO describes) of two filters :
  1. "Move" mails from a specific address to its own label:
    To: Paul@somewhere.net
    Skip the Inbox
    Apply the label: Paul@somewhere.net
  2. Then label all other mails from that domain:
    Includes the words: to:@somewhere.net -label:Paul@somewhere.net click Continue on the warning dialog saying "... searches containing "label:", ... are not recommended as they will never match incoming emails"
    Apply the label: Somewhere.net

"New mail" downgrade mid-2018

Sadly Google decided to "upgrade" the web-based UI with these consequences:
Even more sadly, since Google do not deign to allow bug reporting, they probably won't even fix the bugs above.

Google searching

Filetype, eg: user manual filetype:pdf (thanks to Chris Hoffman)

Google Authenticator

To clone account settings from one device to another (or if I've mis-set up GA on device and its codes don't work) (ref: support.google): The codes generated will then be the same on both devices.
Google's instructions and UI to add a new Authenticator device (eg: when moving to a new Tablet) are opaque. The process is simply:
  1. Install Authenticator on the new device (and uninstall from the old one if required)
  2. Click the + icon to add a new account and then Scan QR code
  3. Go to Manage your Google Account (eg: seen when clicking on your person icon at the top RH of a Gmail page)
  4. Click Security | 2-Step Verification sign in and then, under Authenticator app, click
    CHANGE PHONE (sic - despite the wording, this process does not disable/remove the Authenticator from working on other devices)
  5. Select the OS (ie: Android) and then NEXT which displays a QR code. Point the camera at the QR and the app will add the account once you confirm with a code from the newly-added Authenticator
  6. Repeat steps 2-5 for each account

EE/T-mobile

Text AL to 150 to get text back with remaining credit/allowances.
Three : phone 444 for balance

Documenting bugs to support-shy suppliers like Google and Amazon

Sadly one penalty of so many of the free Internet-ware one uses is that the supplier has no bug tracking and reporting system for its users to access (on occasion one wonders whether they even have one themselves). The best I've been able to find is: See also: my Web Posts Index where I note significant (to me) things I have submitted to suppliers who do have a proper system.

CSS style sheet

Define in <HEAD>, using one of:

Note: in IE can just use asterisk (*) instead of list of elements.

Javascript

Testing for presence of a variable

if (window.variableName != null)
      // NB: can't just use if (window.variableName) because that evaluates to null if the variable exists and contains a blank string
      or:
if (typeof(variableName) != "undefined")

Objects

Useful function (in utils.js):

PDF-ery

Convert (scanned) PDF to text

We often get (and make) PDF's created by scanning a textual document. When viewing in Acrobat Reader you can't copy the text from them.
If the document is not sensitive, there are numerous online services to (OCR) convert these to various text formats.
I mainly use the excellent Online OCR. This handles some appalling-looking original scanned documents. If you sign up it has a 50-page limit before you have to pay for more pages (or cheat, remove cookies and create a new account with a different email address!).
I tried PDF to Text, but it's nothing like as good.

Annotating PDF

I was very happy with Sejda's PDF Editor. There is an online option, but I downloaded and used the Desktop version on Windows, which worked well but does have a massive disk footprint (~¼ Gig download and ~½ Gig installation).

Remove pages from PDF

I used online only ilovepdf's Remove Pages option successfully.

Image resizing websites

www.aconvert.com Does fine with ICO to 16x16, as well as others
www.iloveimg.com JPG, PNG, SVG or GIF, no ICO. Aspect ratio maintenance option
www.img2go.com ICO inter alia - no aspect ration maint.

Android bug report

Enable Developer Options (press several times on Build number in About tablet | Settings).
Then in Developer Options there's a Take bug report option (and option to add shortcut to the power menu). Usually the default (Interactive Report). Drop-down when it's done allows sharing. Usually take Email, cancelling the mail, to leave in Drafts. Mail has .zip attachment which contains a bugreport...*.txt

Firefox

Restoring Firefox Profile

A Firefox Profile records everything a user views when using the browser - saved passwords, bookmarks, page layout, startup and tab options, etc. Use this procedure when moving to a new computer, or rebuilding a broken one (though if doing the latter, clearly step 1 must have been done before the computer broke - eg: as a monthly task):

  1. To copy the Profile from the source system: make sure Firefox is not running, then:
    Using Windows Explorer:
    1. click into the Address Bar and type: %appdata%\Mozilla\Firefox
    2. this displays a folder containing, inter alia, the folder Profiles and the (Configuration settings) file profiles.ini
      Select both these (Left-click once on one of them and then Ctrl-Left-click on the other
    3. With the cursor still within the highlight for both, Right-click and click Copy
    4. Navigate to where you want to copy them to (eg: a folder created on a USB)
    5. Right-click in the folder and click Paste
      This starts the copy which could take a while (the Profile is usually 100's of Mbytes and this process may copy a couple of irrelevant, but not large, skeleton Profiles).
    6. Wait for the copy to finish (Windows Explorer will have a progress indicator somewhere). Then, if having copied to USB, eject it:
      • if the oblong cat icon isn't showing in the taskbar, click the up-arrow at its right-hand side to "Show hidden icons"
      • click the "Safely Remove Hardware and Eject Media" icon (the oblong cat)
      • click the Eject option for the USB which should shortly say "Safe to Remove Hardware"

    Using Cygwin (not MKS) TAR:
    1. cd C:\Users\username\AppData\Roaming\Mozilla\Firefox\Profiles
    2. cy tar -czf N:/temp/FirefoxProfile.tar gfy6yabj.default
  2. Identify the name of the profile we are interested in:
    On the target system, open the copied profiles.ini file - eg: right-click | Open with | Notepad on it in its USB folder. The file contains some tech-y information organised in sections each of which starts with a line of the form [someName].
    The name we want is in a section like [Profile1] (the name could be anything) containing a line saying Default=1
    eg:
    [Profile1]
    Name=default
    IsRelative=1
    Path=Profiles/gfy6yabj.default
    Default=1
    The name is given by the Path=Profiles/ line, and will be ugly and unmemorable.
  3. Create the Profiles folder on the target system: start Firefox and type about:profiles into the address bar to load the Profile Manager.
    The behaviour of this seems a little unpredictable, but it should show two profiles (each in table with three blue-led rows with one or more buttons below). The first's blue "Default profile" should show "yes" and the second's "no" (click for example; opens in new tab/window).
    Remember the final part of the "Root Directory" of the second one (usually something of the form 9f26cnec.default), so that you can distinguish it later from the first's (probably of the form i36zjf5h.default-release)
    Then close Firefox and go to the created Profiles folder.
    eg: in Windows Explorer %appdata%\Mozilla\Firefox\Profiles
  4. Rename the second (non-Default) Profile folder with a different name.
    eg: using the example above just change it to 9f26cnec-ORIGINAL.default
  5. Copy the copied Profile folder identified in step 2 to %appdata%\Mozilla\Firefox\Profiles (gfy6yabj.default in example above).
    ie: the inverse of step 1. Again, the copy may take a while.
  6. Rename this copied folder to the name of the second folder.
    eg: using the example above rename it from gfy6yabj.default to 9f26cnec.default
  7. Set the copied/renamed profile as the default:
    Open Firefox and its Profile Manager again (about:profiles in the address bar), which should look just as it did in step 3.
    Now click "Set as default profile" beneath the second entry. Then exit and restart Firefox (I've found that the Restart options on the page don't always work as expected) and you should see the behaviour and options from the copied Profile.

NB:

google.co.uk search bar

Working in London for a German bank, my Google search bar always goes to google.de. I think this is because of some proxy/firewall rule that redirects google.com there.
Thanks to David Kendall's page, I forced google.co.uk by editing \Program Files\Mozilla Firefox\searchplugins\google.xml - changing all occurrences of .com to .co.uk
Alternatively, install the Google search plugin in addition to the default one.

"Show my windows and tabs from last time" stopped working

This excellent option stopped working at my work after the company fiddled with Firefox settings. It was restored by changing privacy options in about:config.
Setting all these to be false: privacy.clearOnShutdown.history privacy.clearOnShutdown.cookies privacy.clearOnShutdown.cache

Adding .xpi file extensions

If an extension writer's site simply lists a bunch of files (eg: Jan Odvarko's Firebug exporters), double-click on (or download and drag onto Firefox) a .xpi file.

Amazon - find reviews I have made

For some reason they don't make this easy to find. Their help gives you the Public Reviews Written by You link to you need.

Netflix - remove from Continue Watching

On website go to Continue Watching list and hover cursor over an entry. Popdown form appears, where you press X (thanks to CNET).
Menu | Your Account | My Profile | Viewing Activity (thanks to Martin Brinkmann)

File checksum checker (MD5, SHA1, SHA256, ...)

CertUtil -hashfile file [MD5 | SHA1 | SHA256 | ...]
eg: CertUtil -hashfile ubuntu-20.04.1-desktop-amd64.iso SHA256
Thanks to onthefencedevelopment

ISO image download and burn (to CD or USB)

jQuery - upgrade from 1.4.2 to 1.6.4


After upgrading jQuery from 1.4.2 to 1.6.4 I started getting "Error: 'nodeName' is null or not an object" in one particular UI action (at least).
The error come from the autocompleteselect handler in jQuery UI's .dialog. It used to be:
$("#txtPersonSearch").bind("autocompleteselect", function (event, ui) {
if (ui.item && $(ui.item).val().match(/^[^|]*|[^|]*$/)) {
var data = $(ui.item).val().split("|")

and the error was on the $(ui.item).val(). Turns out ui.item is a DOM element, so the fix was to simplify the code to:
if (ui.item && ui.item.value.match(/^[^|]*|[^|]*$/)) {
var data = ui.item.value.split("|")

Presumably 1.4.2's .val() is more forgiving/flexible than 1.6.4's.

DOM location.xxx fields

location.href
(full thing)
https://my.server.com:1234/page/name?query=123#anchorName
location.hostname https://my.server.com:1234/page/name?query=123#anchorName
location.pathname https://my.server.com:1234/page/name?query=123#anchorName
location.search https://my.server.com:1234/page/name?query=123#anchorName
location.hash https://my.server.com:1234/page/name?query=123#anchorName

So for "URL within server" (whatever the correct term is for that), just use: location.pathname+location.search+location.hash
For this page:

Perl syntax

Multi-line comment

Fudge using perldoc syntax:

=comment
text not treated as commands...
=cut

VIM gems

Replace CR (^M)

eg: 1,$s/\r$//

Replace Null (^@)

eg: 1,$s/Ctrl-@//g # Ctrl-@ is usually Ctrl+Shift+@

Break lines at selected character/string

The trick is to know that \r (not \n) is newline:

1,$s/xxx/&\r/g
Thanks to stackoverflow

Add new line below each line in range

'a,.s/.*\n/\0new line text\r/
Thanks to stackoverflow

Visual Studio (Community)

Setting HTML Designer mode when editing (giving Design/Split/Source options; thanks to stackoverflow/carpetflyer):
Open .htm file, in file select dialog drop down the Open button to be Open With and select HTML (Web Forms) Editor and click Set as Default.
Repeat this with an .html file

Also, its Design/Split/Source won't work unless the ASP.NET and Web Development component is installed (see posts.

Re-pressurising Bosch Worcester Greenstar 25Si/30Si Combi boiler

Ours (103c) has internal filling key and needs to be re-pressurised regularly. Good Bosch video on youtube and derivative none-too-accurate instructions on this blog. Summary:

  1. Ensure key is pushed well home and is in the open padlock (anti-clockwise) position (it should already be so).
  2. Turn key clockwise to locked position (about 30°)
  3. Turn square white nut anticlockwise to let water flow, and keep open until pressure risen OK
  4. Turn square white nut clockwise (hand tight) to close
  5. Turn key anti-clockwise back to open position
  6. Put cloth below it to catch water drips and pull key out.
    Because of lack of clearance you can't remove the key, so push it all the way home again, leaving it in the open padlock position.

MS Paint

Replace one colour with another

Thanks to wikiHow

Arrows

If you are reduced to using MS paint to add arrows to a screenshot there are some character-symbols in the Windings 3 font. Set something like 48 point size, and enter a single letter:

h k g m i l f j

Thanks to Jessica Wong and w3schools.

Cygwin / MKS toolkit differences

Things that need to be changed when making a shell script that used to run under MKS Toolkit to run under Cygwin:

I have the following scripts to help with the transition:

Bug in MKS toolkit under Windows 10

Using 6.1a under Windows 10 (and, originally, XP) generally works fine, though it's not certified for it! But bugs I've found and worked-round include:

  1. shell script pipelines of the form:
        command | while read var; ...
    fail, losing data in the pipeline. Work-around is to rework them using an intermediate file. eg:
        command >tempfile
    then, if possible:
        while read var; do
            ...
        done <tempfile`

    or, provided the volume of data isn't too great:
        for var in `cat tempfile`; do ...
  2. vdiff32 (and, probably other utilities) are affected by a pre-set TMP variable.
    I have had intermittent problems - such as vdiff32 failing when called with two filename with "File Open Failed" - if the environment has a TMP variable set.
  3. "temporary file (./sh9999.xxx) error using here document: The system cannot find the file specified"
    These can occur with here-documents in more complex scripts (eg: it happened to me when a block of code was moved from an in-line section to a shell function).
    Fixed by setting TMPDIR environment variable to a writable folder.

Unix/Linux/Ubuntu commands

touch

Ever unmemorable: touch -t [[CC]YY]MMDDhhmm[.ss] file

find

-mount ignore mounted directories
-iname case-insensitive -name flag (-name is case insensitive in MKS)
-printf "%Td-%Tb-%TY %TT %p\n" formatted listing (dd-Mmm-yyyy timestamp path)
-printf "%M %n %u %g %8s %Td-%Tb-%TY %TH:%TM %p\n" "ls -l" like
NB: -printf does not work with MKS. So, use, eg: cy -c "find . -mtime -20 -printf '%M %n %u %g %8s %Td-%Tb-%TY %TH:%TM %p\n'"

Show version

lsb_release -a

Scriptlets

Windows batch scripts

Hideous syntax, avoid wherever possible. Beware that exit code is that of last command executed and that REM counts as command which returns True (as, to be fair, Unix shell : command does).

Clearing unused Ubuntu disk (install) space

From 12.04, used Ubuntu Cleaner (ex: Ubuntu Tweak). Go to Janitor | System

From 18.04 noticed large amount of space taken by some "snap" system. So (thanks to osgx) I did:

Windows

Checking if activated (aka: registered)

See Settings | Update and Security | Activation,
or Control Panel | System Windows Activation section.

Clearing unused Windows space

Mainly Disk Clean Up (as Admin). See also: Scott Hanselman
Also, SoftwareDistribution folder can get huge and can be safely removed (ref: TheWindowsCub ), eg: in Admin console

net stop wuauserv
net stop bits
rename c:\windows\SoftwareDistribution SoftwareDistribution-DELETEME-Mmmdd
net start wuauserv
net start bits
    
Then check a new one has been created OK and remove the renamed one.

Get license ready to transfer to new computer

Chromebook (Chrome OS) printing

Must power on printer before starting Chromebook (ie: fully shutdown Chromebook and restart it if it was on) for it to see the printer.
Also, printing seems to take much longer than from Windows. I assume the Chromebook generates a different and much larger print image.

OK/Cancel order in dialog

The normal order is OK followed by Cancel to the right.

Sorting out dual-boot Windows boot partitions

Probably a one-off, but I had a laptop with Ubuntu and Vista and then added Windows 8 (W8).
Ubuntu (grub) is the primary boot, and its boot menu offered Vista (on /dev/sda3).
After adding Windows 8 this menu showed the Windows 8 bootloader on /dev/sda3, when selecting this one got (usually, sometimes it went straight to W8) options for Vista and W8.

When running W8 it has C: as its main partition, and D: has the Vista one.

I wanted to clear all sign of Vista off the machine and needed to sort out this mess. Googling implied that BCDEDIT would help, but running it with no arguments failed with:
The boot configuration data store could not be opened.
The system cannot find the file specified.

I found that all the boot stuff was still on the Vista partition, and had to run: bcdedit /store d:\boot\bcd
to see:

Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=D:
description Windows Boot Manager
locale en-GB
inherit {globalsettings}
integrityservices Enable
default {default}
resumeobject {a356582b-4714-11e2-9bac-adc49a6834ed}
displayorder {a356582c-4714-11e2-9bac-adc49a6834ed}
{default}
toolsdisplayorder {memdiag}
timeout 30

Windows Boot Loader
-------------------
identifier {a356582c-4714-11e2-9bac-adc49a6834ed}
device partition=C:
path \Windows\system32\winload.exe
description Windows 8
locale en-GB
inherit {bootloadersettings}
recoverysequence {a356582d-4714-11e2-9bac-adc49a6834ed}
integrityservices Enable
recoveryenabled Yes
allowedinmemorysettings 0x15000075
osdevice partition=C:
systemroot \Windows
resumeobject {a356582b-4714-11e2-9bac-adc49a6834ed}
nx OptIn
bootmenupolicy Standard

Windows Boot Loader
-------------------
identifier {default}
device partition=D:
path \Windows\system32\winload.exe
description Windows Vista (TM) Business (recovered)
osdevice partition=D:
systemroot \Windows
resumeobject {37d2a585-46d2-11e2-b599-806e6f6e6963}

More Googling (see technet and tweakhound) persuaded me to run: bcdboot c:\windows /s c:

After which, BCDEDIT (no args), showed:

Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=C:
description Windows Boot Manager
locale en-us
inherit {globalsettings}
default {default}
resumeobject {67cb9810-9499-11e2-be83-cb77527e6e5d}
displayorder {default}
toolsdisplayorder {memdiag}
timeout 30

Windows Boot Loader
-------------------
identifier {default}
device partition=C:
path \windows\system32\winload.exe
description Windows 8
locale en-us
inherit {bootloadersettings}
allowedinmemorysettings 0x15000075
osdevice partition=C:
systemroot \windows
resumeobject {67cb9810-9499-11e2-be83-cb77527e6e5d}
nx OptIn
bootmenupolicy Standard
detecthal Yes

After this Disk Management offered me Delete Volume on D:/Vista (before that was greyed out).

But reboot still shows w8 and Vista in windows boot menu. I hid everything on D: and rebooted which failed, and made me realise that /dev/sda3 was to the Vista / D: partition, and that /dev/sda2 is W8 / C:. So booted to Ubuntu and ran update-grub, which changed grub.cfg to /dev/sda2:

195c195
< menuentry "Windows 8 (loader) (on /dev/sda2)" --class windows --class os {
---
> menuentry "Windows 8 (loader) (on /dev/sda3)" --class windows --class os {
198,199c198,199
< set root='(hd0,msdos2)'
< search --no-floppy --fs-uuid --set=root 984E19A84E198064
---
> set root='(hd0,msdos3)'
> search --no-floppy --fs-uuid --set=root 168AD47E8AD45C35

And all is now OK!

Windows Task Manager grid intervals

As ever, I cannot find any M$ documentation on this. Empirically (and from some web posts) the update frequency seems to be every second on Normal speed. You get 6 samples per grid interval, so 10 grid intervals per minute.

Performance Monitor vs. Task Manager process memory use

The Performance tool's Virtual Bytes is usually massively more than Task Manager's VM Size.
This is because the latter is actually what the Performance tool calls Private Bytes, which is, apparently, normally more important in determining memory leaks.
See: stackoverflow and msdn.

OpenOffice

Add text below nested list in Writer

Far from intuitive, but select a list's bullets/numbers, position the cursor on one, get the Bullets and Numbering toolbar up. Then its Insert Unnumbered Entry pushes the (current) text for the selected item down to a number-less entry.
You can then, for instance, go back to the (now empty) item, insert its text and a new item which you can then nest using Demote One Level.
See also web post on this.

Stop various unwanted (by me) behaviours and set others

Array formula

Enter them using Shift-Ctrl-Enter
Ref: Using_Arrays

Add month to date

eg: =DATE(YEAR(A1);MONTH(A1)+1;20) (thanks to Villeroy)

Convert date cell to yyyymmdd string

=TEXT(YEAR(A28);"####")&TEXT(MONTH(A28);"00")&TEXT(DAY(A28);"00")

Reverse order of rows

Thanks to acknak

Setting values for Calc's default formatting

Ctrl-F11 and modify Default Cell Style (thanks to superuser).

Setting page style for one Sheet

Resizing comment boxes in spreadsheets

Right-click cell and Show Comment. Click on it to get resize handles. When done un-Show comment.

Removing spurious AutoFilters

Somehow I managed to get (BooksAndFilms.ods) into a state where it there were several unwanted and unremovable AutoFilters. No amount of tooling around gave me a usable Remove Autofilter option from the Data | Filter menu.
But, after reading this forum article (and this one) I got rid of them by selecting them in turn using the Data | Select Range menu (which showed 4 ranges with odd names, though not with the word Autofilter in their names) and then either:
a. Data | Filter | Remove Autofilter (when that magically appeared for one of them), or
b. Data | Autofilter then Save & Exit and reopen, to find the range and AF had gone!

Finding and updating external links in spreadsheets

To find, search for: file:
finds some links that cause the on-load prompt "This file contains links to other files. Should they be updated?"
To update links from another file (which, despite the "... Should they be updated?" prompt are often not on load, only on subsequent close and reopen!), use Edit | Links | Update

Delete manual break

Position the cursor in a cell directly below the row break and Edit | Delete Manual Break | Row Break (thanks to Hagar Delest)

Remainder

MOD function (cf: % in programming languages).

Edit PDF

Install DOWNLOADS\OpenOffice\aoo-pdf-import-0.1.0-windows-x86.oxt then from OO Draw open a PDF, and do Export to PDF when done (thanks to Reference).
NB: As of July-2017 OOO extension manager errors looking for updates to this, saying: http://aoo-pdf-import.apache-extras.org.codespot.com/git/update/windows_x86-update.xml does not exist

Rotate/Edit PDF

Various tools allow rotation (thanks to LightPDF). I have used their online rotate tool which worked fine (though a bit slow when downloading the result).

Switching backups from Mozy to Google Drive

In early 2019 Mozy was bought by Carbonite and their free Mozy Home backup service discontinued. Since we were already Google users and their Backup and Sync application did more or less the same as Mozy we switched to that.

This isn't as good as Mozy but it is free. It uses your Google Drive (Drive) - which, as a Google customer/slave, you get automatically.

Unless you already use it actively for, for instance, photos, this gives you 15 Gbytes of free storage (compared to Mozy's 2 GB).
Additional storage is not expensive. We pay about $6/year on one Google account (which has all our photos) for an additional 20 Gbytes.

We noted and/or worked-round the following differences (using Drive from one Google account and only for backing up one Windows PC):
  1. You can only select complete folders to backup.
    Mozy lets you select a folder and then de-select subordinate files and/or folders.
  2. Restoring a single file is not nearly as slick.
    With Mozy you did so by right-clicking on the file or parent folder and the file is restored with its correct modification time.
    With Google you "restore" from Drive in a web browser where you "Download" the file. This just uses the browser file download mechanics which means you have to locate the destination folder again. Also the file's modification time is set to the download time.
    You can restore multiple files from Drive in a web browser, in which case you get a .zip file to download and extract from. The files' modification time is then restored to the Californian timestamp of the file (eg: being in London, this means such timestamps are 8 hours earlier than the correct one).
  3. The default setting is that when you delete a file Backup and Sync prompts to confirm that you also want to delete the file from Drive.
    You will probably want to change this setting. But, an advantage of leaving it is that it also lets you restore the file (in case you deleted it by mistake). When doing this the file is restored with its original/correct/local modification time.
  4. Drive's (web) restore is pretty flaky if you want more than a handful of files.
    See Restore from Google Drive below to use their "Takeout" mechanism instead.
  5. Drive's (web) view shows folder names only.
    This is fine if they are all siblings on one PC drive. But you lose a little context when managing/examining them if they are at different levels in the file-system hierarchy or on different Windows drives.
  6. The backup mechanism seems to semi-understand that OpenOffice lock files (eg: .~lock.mySpreadsheet.ods#) are transient. It backs them up when they are created but deletes them without prompt when they are removed.
  7. Unlike Mozy, which would run backups a few times a day, this mechanism is constantly monitoring for file changes.
    For instance if you are editing a file, Saving it from time to time, each save triggers a new backed up version on Drive.
    This is probably what some folk want. I find it overkill and, presumably, means a higher system load as Google monitors all files in your backed-up folders all the time.
  8. Because of this there's a noticable performance hit when the installer/Drive-owner first logs in (and, despite having "Open Backup and Sync on system start-up" in Settings it only seems to start when that person logs in).
  9. It seems to hold files open on occasion (thereby causing them to open read-only in a text editor, for instance).
  10. A folder named .tmp.drivedownload is created in each PC folder being backed up.
    This seems to have temporary file copies (I think) in it named 9999.driveupload. I assume/hope it gets rid of these from time to time.
  11. I never fully checked out Mozy's storage security but it sounded a little more thorough, if locked-down to a nominated PC, than Google Drive. But, I'm sure Drive is perfectly secure. Though, of course, if someone knows your Google login they can get what they want.

Restore from Google Drive

For one-off file restore (in this case, from our PC back-up under Janet's janet.binney@gmail.com account):

The one-off restore is tedious if you want more than a handful of files, so Google's Takeout is a much better way to restore all your files (and faster if all you really have on your Drive is backed-up files). To restore everything (eg: when rebuilding a computer having lost the original one, or its hard disk at least):

  1. Open Google's Takeout (takeout.google.com/settings/takeout) and use the top RH corner icon to select Janet's account if necessary.
  2. In the "CREATE A NEW EXPORT" section of the resulting page, first "Deselect all" then select "Drive" and then "Next step" (at the bottom of the page).
  3. We use a good unzip program 7zip (www.7-zip.org), and so set the Archive size to 10GB to get all our files restored in one .zip (about 4GB at time of writing).
  4. Then "Create archive". Google mails you when the .zip is ready.
  5. When you get the .zip(s) it is best to extract from it/them to a temporary area (assuming you have disk space). Then move over file(s) as required, correcting/noting filename oddities as shown in the next section.

File(name) problems with Google Drive restore

Sadly, Drive has a number of (ill documented/publicised) restrictions on how it restores files. I'm sure there are more, but here are ones that have affected us:

Backups of System (C) drive files

To avoid massive activity and Google Drive space requirement, we only use Google to backup (parts of) our Data (E) drive. Some of the System drive is backed up with an intermittent (backup.sh) manual backup to the NAS box. But, some key System drive files are backed up using one or both of:

Find Windows version from ISO or USB

Thanks to WinHelpOnline: find the install.esd file on the media and, in an Administrator command prompt, run
  dism /Get-WimInfo /WimFile:F:\sources\install.esd /index:1

Using keypad to search Demand 5 smart TV app

Demand 5's Search box has no virtual keyboard and you have to use the keypad on the remote to enter the search string. I can't find any info on this, and thus any sign of backspace or delete options, but the characters work as on an (old fashioned) mobile.

Sadly the Sony Bravia remote we have doesn't show the number-to-letters mapping, though other ones do have them:
Page last edited: 12-Sep-2023