Skip to content

Instantly share code, notes, and snippets.

@05copy-attired
Last active December 15, 2025 10:03
Show Gist options
  • Select an option

  • Save 05copy-attired/55176372e61c6c6da43c318d006f661a to your computer and use it in GitHub Desktop.

Select an option

Save 05copy-attired/55176372e61c6c6da43c318d006f661a to your computer and use it in GitHub Desktop.
Teamviewer ID Reset

Remove Registry HKLM(ClientIC, ClientID, MIDInitiativeGUID), etc.

The above registry only applies if the user is not logged in.

I just used it as a way to delete the entire registry of TeamViewer.

That approach actually reassigns the TeamViewer ID value by replacing the UUID value.

Windows ONLY

@echo off
for /f "delims={}" %%I in ('bitsadmin /rawreturn /create guid') do set "GUID=%%~I"
>NUL bitsadmin /cancel {%GUID%}
taskkill /f /im tv*
taskkill /f /im teamviewer*
cd "C:\\Program Files\\TeamViewer"
wmic csproduct set uuid="%GUID%"
reg delete "HKLM\software\teamviewer" /f
reg delete "HKCU\software\teamviewer" /f
reg add "HKCU\Software\TeamViewer" /v "IntroShown" /t REG_DWORD /d 1
sc start teamviewer
start TeamViewer.exe
@Honza1616
Copy link

does not work
Win 11, 23H2

@eXec0101
Copy link

eXec0101 commented Jan 6, 2025

Thnxx, It works perfectly

@juniornightt
Copy link

qual versão funciona para o Windows 11

@rubgithub
Copy link

qual versão funciona para o Windows 11

Atualmente windows sandbox é a melhor solução.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment