VMware Guest OS: The trust relationship between this workstation and the primary domain failed

VMware Guest OS: The trust relationship between this workstation and the primary domain failed. I received this errors two times on a row for two different computers. I am not 100% sure, but from reading the web I came to conclusion that this error is encountered when: SID gets cloned when computer gets cloned using …

How to delete all folders in current directory

How to delete all folders in current directory using command line (cmd.exe) or batch files? How to delete all empty directories in current folder: FOR /D %f IN (*.*) DO RD “%f” How to delete all directories / folders in current directory / folder: FOR /D %f IN (*.*) DO RD “%f” /S /Q If …

Google AdWords (or any third party) tracking with onclick that really works

Disclaimer: this works for me and my clients today (Sep 2010). If Google or one on the web browsers change something, this may break all tracking, so use this on your own risk. Below is working code fragments. In the process of making the code work, there was following problems / symptoms: Chrome and Safari …