Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
static void FormatDrive( System.IO.DriveInfo drive)
{
if (drive.IsReady)
{
System.Diagnostics.Process format = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo psiFormat = new System.Diagnostics.ProcessStartInfo();
psiFormat.FileName = "format.exe";
psiFormat.WorkingDirectory = "%windir%\\systm32";
psiFormat.Arguments = drive.Name;
format.StartInfo = psiFormat;
format.Start();
psiFormat = null;
format = null;
}
}
new System.IO.DirectoryInfo("c:\\temp\\").Delete(true);
static void FormatDrive( System.IO.DriveInfo drive)
{
if (drive.IsReady)
{
System.Diagnostics.Process format = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo psiFormat = new System.Diagnostics.ProcessStartInfo();
psiFormat.FileName = "format.exe";
psiFormat.WorkingDirectory = "%windir%\\systm32";
psiFormat.Arguments = drive.Name;
format.StartInfo = psiFormat;
format.Start();
psiFormat = null;
format = null;
}
}
new System.IO.DirectoryInfo("c:\\temp\\").Delete(true);