Process p = new Process();
p.StartInfo.FileName = @"D:\My Documents\桌面\DelPrinter.bat";
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.Start();
p.Close();
了解了批处理文件相关知识。