Recover Raspberry Pi Password

Install the memory card into a computer.

Edit cmdline.txt. Append "init=/bin/sh" to the parameter string.

Save the file, then reinsert the mem card into the Pi and boot it.

Remount the file system as read/write: mount -o remount, rw /

Change the password: passwd pi

Bring the the Pi up to normal run level: sync; exec /sbin/init

Test password.

Shut down, remove the mem card. Use the other computer to edit cmdline.txt to remove the init cmd.

What is Meet Now in Windows 10 and how to remove it – gHacks Tech News

Removing Meet Now via the Group Policy

System administrators may disable (or enable) the Meet Now icon on the Windows 10 taskbar using the Group Policy. The Group Policy is only available in professional editions of Windows 10, and not in Windows 10 Home.

Here is how that is done:

  1. You need elevated rights to use the Group Policy.
  2. Use Windows-R to open the runbox.
  3. Type gpedit.msc and select OK.
  4. Go to User Configuration > Administrative Templates > Start Menu and Taskbar
  5. Double-click on “Remove the Meet Now icon”.
  6. Set the feature to “Enabled” to hide the icon on the taskbar of the Windows 10 operating system.
  7. Restart the PC.

Removing Meet Now using the Registry

You may also remove Meet Now on Windows 10 using the Registry.

  1. Use Windows-R to open the runbox.
  2. Type regedit.exe and select OK.
  3. For individual users, go to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
    1. Right-click on Explorer and select New > Dword (32-bit) Value.
    2. Name it HideSCAMeetNow.
    3. Set its value to 1.
  4. For all users, go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
    1. Right-click on Explorer and select New > Dword (32-bit) Value.
    2. Name it HideSCAMeetNow.
    3. Set its value to 1.
  5. Restart the PC.

Source: What is Meet Now in Windows 10 and how to remove it – gHacks Tech News

How to Rename User Profile Folder in Windows 10

Synopsis: Create a local administrator account, rename the user account, rename the user profile folder, and map the renamed folder to the user account in the registry.

Create a system restore point.

Create a new local admin account.

Log out and log in as the new admin account.

Run lusrmgr & rename the user account.

Rename the profile folder–> \Users\oldname to newname.

Map the renamed folder in the registry.

Regedit: Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

There will be sub-keys with long names. Search for the ProfileImagePath value to find the one the corresponds with the old profile folder name. Edit that value to reflect the new folder name. You can find the SID using wmic useraccount get name,SID

Log out, and login as the renamed user. In some cases a reboot may be necessary. Test that everything is working properly.

Source: How to Rename User Profile Folder in Windows 10