What the existing codes have been doing along was to trigger tskill via Runtime.exec in order to terminate the acrord32 process. That was all fine and dandy for what used to be WinXP. But the Tech Refresh introduced Win7 as a replacement for most of the machines. The JRE6 Java Console threw this out:
java.io.IOException: Cannot run program "tskill": CreateProcess error=2, The system cannot find the file specifiedWhich basically means we're screwed because Win7 didn't know what the tskill program was. When I first turned to this article, I believed that
at java.lang.ProcessBuilder.start(Unknown Source)
at java.lang.Runtime.exec(Unknown Source)