Teamviewer is the all in one remote support software which helps to connect anyone’s desktop or laptop computer remotely from any where online. Undoubtedly its one of the most trusted, secured, best remote support application which is available now and also offers free version for personal use, not for commercial use. Teamviewer Commercial Use Suspected Without Changing Mac I don't to work on mine. It restricts me to internet to 5 minutes session. Just like TeamViewer, your host connects to get 3% discount from the purchases price. Jace zein Mira October 29, 2010 at 2:35 pm I want to Teamviewer 11 Commercial Use Suspected 9. Teamviewer 13 License code. TeamViewer commercial use detected. Tricks to bypass There are some tutorials or tricks on the internet teach you how to bypass this Commercial use suppected. Most of them are relating to changing MAC address of your computer, uninstall and delete some folder created by TeamVIewer. But that's old tricks and didn't work anymore.
TeamViewer uses a MAC address to identify systems that may have had installed TeamViewer and are suspected of commercial use. To be able to reinstall TeamViewer the Mac addresses on Windows computers can be changed manually or through using the TMAC tool.
#!/bin/bash |
## |
# Remove 'Commercial use suspected'/'Commercial use detected' warning on teamviewer 13 |
# |
# Tested on Arch linux |
## |
CONFIG_FILE=/opt/teamviewer/config/global.conf |
# Make sure only root can run our script |
if [[ $EUID-ne 0 ]];then |
echo'This script must be run as root'1>&2 |
exit 1 |
fi |
if [ !-s$CONFIG_FILE ];then |
echo'$CONFIG_FILE not found! Teamviewer is installed?'1>&2 |
exit 1 |
fi |
systemctl stop teamviewerd |
lastMACUsed=`cat $CONFIG_FILE| grep LastMACUsed | cut -b 23- | tr -d '''` |
forifacein`ls /sys/class/net`;do |
read mac </sys/class/net/$iface/address |
mac=`echo $mac| tr -d ':'` |
if [ '${lastMACUsed#*$mac}'!='$lastMACUsed' ];then |
echo'$iface -> $mac' |
#ip link set $iface down |
macchanger $iface -r |
#ip link set $iface up |
fi |
done |
rm -f '$CONFIG_FILE' |
systemctl start teamviewerd |