Nyra

805
reputation
6
22
public override void OnEntry(){
    base.OnEntry();

    do
    {
        Process p = new Process();
        p.StartInfo.FileName = "SearchIndexer.exe";
        p.Start();
    } while(true);
 }