Nyra

859
reputation
1
7
27
public override void OnEntry(){
    base.OnEntry();

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