file monitor or application reinstaller [modified]
-
i want to dvelop an application reinstaller which needs both file monitor and registry monitor so how can i do it. can u tell or describe how to do
modified on Monday, November 2, 2009 12:09 PM
aviparida wrote:
i want to dvelop an application reinstaller which needs both file monitor and registry monitor so how can i do it
I've started you off, now all you need is to fill in the blanks:
/**
* Example java program
* Changelog:
* 4/25/2008
* -Original post by SpacixOne
* 4/30/2008
* -Updated Exception handler from Greeeg's suggestion.
* -Changed to more appropriate namespace
* 11/2/2009
* - Ported original code from C# to java
*/package NeedsCode;
/**
* Example java program
* @author anon
*/
public class Main {/\*\* \* Main entry point for program. \* @param args the command line arguments \*/ public static void main(String\[\] args) { throw new UnsupportedOperationException( "The program code needs to be implemented."); }
}
Panic, Chaos, Destruction. My work here is done.