Author Topic: how to change ID  (Read 8421 times)

Kosta_Darjania

  • Newbie
  • *
  • Posts: 1
how to change ID
« 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?

Admin

  • Administrator
  • Sr. Member
  • *****
  • Posts: 456
Re: how to change ID
« Reply #1 on: July 13, 2012, 11:49:32 AM »
hmm that is a strange issue, , perhaps uninstalling teamviewer on each machine and reinstalling could help.

danviewer

  • Newbie
  • *
  • Posts: 1
Re: how to change ID
« Reply #2 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
-----------------