TeamViewer Forum
General Category => Teamviewer for Windows => Topic started 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?
-
hmm that is a strange issue, , perhaps uninstalling teamviewer on each machine and reinstalling could help.
-
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
-----------------