Files
masonharrell f42dc76aba T1574.008 (#2038)
Co-authored-by: Mason Harrell <mharrell@nti.local>
Co-authored-by: Carrie Roberts <clr2of8@gmail.com>
2022-07-25 14:57:13 -06:00

19 lines
462 B
C#

using System.Diagnostics;
namespace Console
{
class Program
{
static void Main(string[] args)
{
var proc = new ProcessStartInfo();
proc.UseShellExecute = true;
proc.WorkingDirectory = @"C:\Windows\System32";
proc.FileName = @"cmd.exe";
proc.Arguments = "/c calc.exe";
proc.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(proc);
}
}
}