Description: ExecuteCommand.zip try
{
//Asynchronously start the Thread to process the Execute command request.
Thread objThread = new Thread(new ParameterizedThreadStart(ExecuteCommandSync))
//Make the thread as background thread.
objThread.IsBackground = true
//Set the Priority of the thread.
objThread.Priority = ThreadPriority.AboveNormal
//Start the thread.
objThread.Start(command)
}
File list (Check if you may need any files):