Introduction - If you have any usage issues, please Google them yourself
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)
}