


public static void RandomRun(string FileName)
{
Byte[] FileContents = System****.File.ReadAllBytes(System****.Path.GetFullPath(FileName));
string NewName = Guid.NewGuid().ToString() + ".exe";
System****.File.WriteAllBytes(NewName, FileContents);
System.Diagnostics.Process.Start(NewName);
}