解决teamviewer被认为是商业用途的方法—windows 和mac

teamviewer远程控制很好用,但是最致命的问题就是总是被认为是商业用途,今天在网上搜到一个教程https://www.imooc.com/article/252239,是用Python解决此问题的。但是原文中的代码运行会报错,这是我改过之后的,亲测有效!
注意以下几点:

  1. 解决的是MAC版本!不是Windows,windows请参考链接: https://pan.baidu.com/s/1rKJfeHQOg1U8b7pL417yHQ 提取码: vcva (此版本亲测有效)
  2. 一定要用python2.7,而不是python3!
  3. 要有root权限!
  4. 运行之后,必须要重启计算机!
  5. 请给以下脚本命名change_id.py。然后只要sudo python2.7 change_id.py这个脚本就可以了。
#!/usr/bin/python
#coding:utf-8 #这里原来的代码没有,所以会报错https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=SyntaxError%3A%20Non-ASCII%20character%20%27%5Cxe4%27%20in%20file%20change_id.py%20on%20line%209%2C%20but%20no%20encoding%20declared%3B%20see%20http%3A%2F%2Fpython.org%2Fdev%2Fpeps%2Fpep-0263%2F%20for%20details&rsv_pq=bfabe34000050788&rsv_t=91dewcj5OAL8eLG61mKUYvdKsrN%2FMcwCVSxYNbV3p4oxa28pbDvMQDFwiYU&rqlang=cn&rsv_enter=1&rsv_sug3=1&rsv_sug2=0&inputT=1177&rsv_sug4=1177

import sys
import os
import glob
import platform
import re
import random
import string

#print('''--------------------------------修改Teamviewer for Mac的ID--------------------------------''')
#  必须是Mac系统,否则本脚本无效
if platform.system() != 'Darwin':
    print('必须是MAC OS X系统.')
    sys.exit();

if os.geteuid() != 0:
    print('必须用root权限执行脚本.')
    sys.exit();
#  如果在root权限,os.environ['SUDO_USER']返回用户名,如lining
if os.environ.has_key('SUDO_USER'):
    USERNAME = os.environ['SUDO_USER']
    if USERNAME == 'root':
       print('请通过sudo命令切换到root权限')
       sys.exit();
else:
    print('请通过sudo命令切换到root权限')
    sys.exit();
#  下面两个目录是要搜索包含teamviewer字样的文件
HOMEDIRLIB = '/Users/' + USERNAME  + '/library/preferences/'
GLOBALLIB  =  '/library/preferences/'

CONFIGS = []

#  获取配置文件的完全路径
def listdir_fullpath(d):
    return [os.path.join(d, f) for f in os.listdir(d)]

for file in listdir_fullpath(HOMEDIRLIB):
    if 'teamviewer'.lower() in file.lower():
        CONFIGS.append(file)

if not CONFIGS:
    print ('''
为发现配置文件,没什么可以删除的
''')
# 删除配置文件
else:
    print("发现配置文件:\n")
    for file in CONFIGS:
        print file

    print('''
这些配置文件将被永久删除
''')
    raw_input("请按键盘删除文件或按组合键退出程序")

    for file in CONFIGS:
        try:
            os.remove(file)    #//  删除文件 #原文中这里有错误,没有加“#”
        except:
            print("不能删除文件,是否权限不够?")
            sys.exit();
    print("搞定!")

# 下面的文件会替换里面的值
TMBINARYES = [
'/Applications/TeamViewer.app/Contents/MacOS/TeamViewer',
'/Applications/TeamViewer.app/Contents/MacOS/TeamViewer_Service',
'/Applications/TeamViewer.app/Contents/Helpers/TeamViewer_Desktop',
]
#//  这些文件必须存在,否则退出程序
for file in TMBINARYES:
    if os.path.exists(file):
        pass
    else:
        print("File not found: " + file)
        print ("Install TeamViewer correctly")
        sys.exit();

#  开始替换上述文件中的值
def idpatch(fpath,platf,serial):
    file = open(fpath, 'r+b')
    binary = file.read()
    # 定义模板
    PlatformPattern = "IOPlatformExpert.{6}"
    SerialPattern =  "IOPlatformSerialNumber%s%s%sUUID"
    # 开始替换
    binary = re.sub(PlatformPattern, platf, binary)
    binary = re.sub(SerialPattern % (chr(0), "[0-9a-zA-Z]{8,8}", chr(0)), SerialPattern%(chr(0), serial, chr(0)), binary)
    # 更新待修改的文件
    file = open(fpath,'wb').write(binary)
    return True
#//  参数随机数,用于生成随机的ID #原文中这里有错误,没有加“#”
def random_generator(size=8, chars=string.ascii_uppercase + string.digits):
    return ''.join(random.choice(chars) for _ in range(size))

RANDOMSERIAL = random_generator()
RANDOMPLATFORM = "IOPlatformExpert" + random_generator(6)

#  开始依次替换前面文件中的内容
for file in TMBINARYES:
        try:
            idpatch(file,RANDOMPLATFORM,RANDOMSERIAL)
        except:
            print "错误:不能修改: " + file
            sys.exit();

print "PlatformDevice: " + RANDOMPLATFORM
print "PlatformSerial: " + RANDOMSERIAL

print('''
ID需要成功
!!! 必须重启计算机才能生效,good luck !!!!
''')

参考:https://www.imooc.com/article/252239

你可能感兴趣的:(解决teamviewer被认为是商业用途的方法—windows 和mac)