remove teamviewer and change MAC

1. uninstall: ‘Start’ –> ‘Settings’ –> ‘Control Panel’
2. Click on Start –> Run –> type %appdata% –> delete TeamViewer folder and also delete “C:\\Program Files\\Teamviewer”
3. Delete registry folder: hkcu/software/teamviewer and hklm/software/teamviewer
4. Change the MAC Address: http://www.irongeek.com/i.php?page=security/changemac
5. Clean your systems registry – you can use a free registry cleaner for this purpose- http://www.techbuzz.in/how-can-i-clean-my-computer-registry-for-free.php
6. Install a fresh copy of Teamviewer. Select the ‘Personal Use’ option.

Thanks to:
http://www.techbuzz.in/how-to-reinstall-teamviewer-after-it-has-expired.php
http://www.irongeek.com/i.php?page=security/changemac

copy file from Windows to Linux using scp

Download pscp.exe
Open cmd and go to directory where pscp.exe is downloaded.
run the command:
pscp.exe root@servername:/pathTo/YourFile/ F:\location\of\your\file

for uploading file from Windows to Linux, reverse the order:
pscp.exe F:\location\of\your\file root@servername:/pathTo/YourFile/

C:\Windows\System32>C:\apps\pscp.exe -P portNumber C:\Users\shop\Desktop\filename.zip user@website.com:/tmp

Thanks to:
http://www.it.cornell.edu/services/managed_servers/howto/file_transfer/fileputty.cfm

copy files from Windows to Linux

This can be done using pscp.exe. The steps:

Download pscp.exe from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html.
Save to disk.
Open Windows CLI: Start -> Run -> type ‘command’ without quotes into Open field and click OK.
Drag ‘pscp.exe’ to the Windows CLI to give the CLI the full path of the command:

Upload specific file:
pscp file user@host:file

Download specific file:
pscp user@host:file file

Download all files in folder:
pscp -unsafe user@host:folder/*.* folder/

Usage: pscp [options] [user@]host:source target
pscp [options] source [source…] [user@]host:target
pscp [options] -ls [user@]host:filespec
Options:
-V print version information and exit
-pgpfp print PGP key fingerprints and exit
-p preserve file attributes
-q quiet, don’t show statistics
-r copy directories recursively
-v show verbose messages
-load sessname Load settings from saved session
-P port connect to specified port
-l user connect with specified username
-pw passw login with specified password
-1 -2 force use of particular SSH protocol version
-4 -6 force use of IPv4 or IPv6
-C enable compression
-i key private key file for authentication
-batch disable all interactive prompts
-unsafe allow server-side wildcards (DANGEROUS)
-sftp force use of SFTP protocol
-scp force use of SCP protocol