TeamViewer Forum

General Category => Teamviewer for Windows => Topic started by: Kosta_Darjania on July 13, 2012, 03:46:30 AM

Title: how to change ID
Post by: Kosta_Darjania on July 13, 2012, 03:46:30 AM
Hello

i use disk cloning/imaging software, because of that pcs have the same teamviewer ID and they can not connect to each other, is there a way to change ID?
Title: Re: how to change ID
Post by: Admin on July 13, 2012, 11:49:32 AM
hmm that is a strange issue, , perhaps uninstalling teamviewer on each machine and reinstalling could help.
Title: Re: how to change ID
Post by: danviewer on July 18, 2012, 09:32:14 AM
Hello,

I already experience the same. You must delete ClientID entry in HKLM\Software\TeamViewer\Version6 / or \Version7

This is a source code of a VBS file doing this automatically

Create a new file called "UpdateTeamViewerID.vbs", copy this code and run it.

---------------
const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
 
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")
 
strKeyPath = "SOFTWARE\TeamViewer\Version6"
strValueName = "ClientID"

oReg.DeleteValue HKEY_LOCAL_MACHINE, strKeyPath, strValueName
-----------------