How to switch back to the old UI in TeamViewer 15

It can happen that your TeamViewer instance is not starting any more after switching over to the new interface or that you really do not like the new looks of the new interface.

  1. Windowskey + R
  2. Type RegEdit and press enter
  3. Copy the following line and paste it into the “address bar” of RegEdit and press enter.
    Computer\HKEY_CURRENT_USER\Software\TeamViewer
  4. Double click on the entry named “UIVersion”
  5. Change the value 4 to 2
  6. Press OK

Done.

 

Loading

Fixing a 0x800700df error

Possible reason: File transfer limit in Webclient Service

  1. Open regedit
  2. Go to: HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services \ WebClient \ Parameters
  3. Find: FileSizeLimitInBytes and open it
  4. Select Decimal
  5. Enter the following number:
    4294967295
  6. Click op OK
  7. Hold windowskey + R
  8. Enter services.msc
  9. Find WebClient
  10. Right click the service and select restart.

Done.

Loading

Install Group Policy Editor (gpedit.msc)

  1. Open command prompt with admin rights
  2. Enter the following one after the other and the software has been installed.
    1. FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
    2. FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")

Loading

[Solved] HP LaserJet 300 colorMFP M375nw scan to network folder fails

“Cannot connect to the network folder. Ensure the shared folder name is correct”

TL;DR: Switch SMB 1.0/CIFS support ON in Windows 10. Share folder to everyone. Maybe use the computer’s user/pass. Done.

My HP LaserJet 300 colorMFP M375nw suddenly stopped scanning to a network folder in Windows 10. After many hours of futile searching, I have found the solution.

Perhaps it is not the safest solution, but heck it needs to work. Now.

If you have not changed anything to your share folder, please proceed to step 2.

STEP ONE.
Setting up your shared folder is a drag in Windows 10, since you can basically do it in multiple ways with one showing something differently than the other.

1. R-Click the folder that you want to share
2. Click Properties
3. Click the Share tab
4. Select Everyone in the pull-down menu
5. Click Add
6. Select Read/Write on the right of the Everyone entry
7. Click the Share button
8. Click Ready or OK
9. Close the Properties window

STEP TWO.
1. Open the control panel
2. Click Programs and Features
3. Click Programs and Functions in the top right corner
4. Click Add/Remove Windows Features in the left column. (the one with the shield ,I am translating this from Dutch)
5. Search for SMB 1.0/CIFS support and check that box
6. Click OK
7. Reboot

Thing should be working again and if not, do check if the shared folder address in your printer’s share panel is correct.

Loading

Change W10 password

One day, a friendly wolf said:

so all you need is a usb stick with a windows 10 installer, boot to that, click “Repair my pc” after it asks you for the language -> open the troubleshooter -> open the command line interface

then switch to the C drive
then cd Windows\System32\
rename osk.exe osk.old|
rename cmd.exe osk.exe
close and boot windows normally
click the On-Screen-Keyboard which now opens cmd.exe
net user “username” *
type new password

make sure undo your rename of the cmd.exe and osk.exe things after you’re done

Loading