Microsoft Authenticator – transfer to new phone

Backup you Authenticator on your old phone

  1. click 3 lines on top left of Microsoft Authenticator
  2. click settings
  3. under Backup turn on iCloud Backup

Restore

  1. on your new phone open authenticator and select “restore from backup”
  2. you now need to sign in to each account and rescan the QR code. 1st sign in to each account using your old phone’s Microsoft Authenticator, then after you have signed in go to https://aka.ms/mfasetup
  3. Click “Add sign-in method”
  4. Click “Microsoft Authenticator”
  5. After adding the new Authenticator to this account delete the old Microsoft Authenticator that is pointing to your old phone

An even better option is to switch to Google Authenticator which doesn’t have this stupid step.

  • when you select Microsoft authenticator in step 4 above, on the next screen you can choose “I want to use a different Authenticator app”

Raspberry Pi – install program to make it display slide show from flash drive

1. to install FEH open Terminal and run

sudo apt-get install feh

2. Open text editor and copy the following, then save it as “slideShow.sh” to the desktop

#!/bin/sh
feh -Y -x -q -D 5 -B blash -F -Z -r /media

3. Right click “slideShow.sh” and select properties> Permissions tab> Allow executing file as program

How to fix Windows 11 Taskbar

If the icons on the taskbar are messed up or you can’t change the settings for the taskbar then try the following

Open command prompt as Administrator and run the following

  • sfc /scannow
  • DISM.exe /Online /Cleanup-image /Scanhealth
  • DISM.exe /Online /Cleanup-image /Restorehealth
  • sfc /scannow

Open Powershell as an Administrator and run the following

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}COPY