I know how to run a vbscript file which has its file extension i.e. vbscript.vbs but how do you run a vbscript file without the file extension. I'm trying the following:
Process process = new Process();
process.StartInfo.FileName = @"vbscript"; //No extension
process.StartInfo.UseShellExecute = false;
process.Start();