MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > Programming section > VB
Reload this Page [GUIDE] How to make a program delete Cache Folder!
VB Discussions about VB programming

Reply
 
LinkBack Thread Tools
[GUIDE] How to make a program delete Cache Folder!
(#1)
Old
EmiloZ's Avatar
EmiloZ is Offline
Flying Danish Leecher
Rep Power: 4
Reputation: 383
EmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really nice
 
Posts: 955
Join Date: Jun 2007
Location: Denmark - Europe
Legendary [GUIDE] How to make a program delete Cache Folder! - 04-06-2008

Haai.

First of go make the app :




Then make an Button :



Then double click it :


In here write :

Code:
installpath = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINESOFTWAREblizzard entertainmentworld of warcraft", "installpath", Nothing)
If Directory.Exists(installpath & "/cache") Then
            Directory.Delete(installpath & "/cache", True)
<Thanks to clainsux for fixing>

Then press "Enter" and then write :

Code:
MsgBox ("Cache Folder Deleted!")

pic :


Then do this :

1:

2:


3:


Then when done goto :

Documents\Visual Studio 2008\Projects\Cache Deleter\Cache Deleter\bin\Release

and start "Cache Deleter.exe"

Hope it's help u




Nominated [Only registered and activated users can see links. ]
[Only registered and activated users can see links. ] so now im contributer will girls sleep with me?

Last edited by EmiloZ; 04-08-2008 at 09:30 AM.
Reply With Quote

Donate to remove ads.
(#2)
Old
EmiloZ's Avatar
EmiloZ is Offline
Flying Danish Leecher
Rep Power: 4
Reputation: 383
EmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really nice
 
Posts: 955
Join Date: Jun 2007
Location: Denmark - Europe
04-06-2008

Buuuuuuuuuuuump




Nominated [Only registered and activated users can see links. ]
[Only registered and activated users can see links. ] so now im contributer will girls sleep with me?
Reply With Quote
(#3)
Old
nickelo's Avatar
nickelo is Offline
Knight-Lieutenant
Rep Power: 2
Reputation: 23
nickelo is on a distinguished road
 
Posts: 226
Join Date: Aug 2007
04-07-2008

hmm didnt work for me
Reply With Quote
(#4)
Old
nickelo's Avatar
nickelo is Offline
Knight-Lieutenant
Rep Power: 2
Reputation: 23
nickelo is on a distinguished road
 
Posts: 226
Join Date: Aug 2007
04-07-2008

PublicClass Form1
PrivateSub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load
RmDir(
"C:\Program Files\World of Warcraft\Cache")
MsgBox(
"Cache Folder Deleted!")
EndSub

End
Class
Reply With Quote
(#5)
Old
nickelo's Avatar
nickelo is Offline
Knight-Lieutenant
Rep Power: 2
Reputation: 23
nickelo is on a distinguished road
 
Posts: 226
Join Date: Aug 2007
04-07-2008

Thats my error.

Quote:
************** Exception Text **************
System.IO.IOException: The directory is not empty.
at Microsoft.VisualBasic.FileSystem.RmDir(String Path)
at WindowsApplication1.Form1.Form1_Load(Object sender, EventArgs e) in Cocuments and SettingsAndreaMy DocumentsVisual Studio 2008ProjectsCache DeleterCache DeleterForm1.vb:line 4
at System.EventHandler.Invoke(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///c:/WINDOWS/Microsoft.NET/Fra...7/mscorlib.dll
----------------------------------------
Cache Deleter
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Documents%20and%20Setting...%20Deleter.exe
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL...isualBasic.dll
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL...089/System.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL...dows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL...em.Drawing.dll
----------------------------------------
System.Runtime.Remoting
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL...e.Remoting.dll
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
Reply With Quote
(#6)
Old
Nolixz's Avatar
Nolixz is Offline
Por-n Star
Rep Power: 5
Reputation: 446
Nolixz is just really niceNolixz is just really niceNolixz is just really niceNolixz is just really niceNolixz is just really nice
 
Posts: 682
Join Date: Oct 2006
Location: theh4x.net
04-07-2008

Damn i get that error too >o






Reply With Quote
(#7)
Old
Clain's Avatar
Clain is Online
Contributor
Rep Power: 1
Reputation: 103
Clain will become famous soon enoughClain will become famous soon enough
 
Posts: 922
Join Date: Jan 2008
04-07-2008

That error means that the cache folder has files in it.

For the function he used the dir needs to be empty.

heres what I do to delete folders.
Code:
installpath = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINESOFTWAREblizzard entertainmentworld of warcraft", "installpath", Nothing)
If Directory.Exists(installpath & "/cache") Then
            Directory.Delete(installpath & "/cache", True)

HKEY_LOCAL_MACHINE/SOFTWARE/blizzard entertainment/world of warcraft is the right thing...it removes the /'s in it.


Visual Basic .NET Coder
Will code programs for money/gamecard. Contact me on msn for more information!
You have one more chance to do right and its tonight.

Last edited by Clain; 04-07-2008 at 06:37 PM.
Reply With Quote
(#8)
Old
nickelo's Avatar
nickelo is Offline
Knight-Lieutenant
Rep Power: 2
Reputation: 23
nickelo is on a distinguished road
 
Posts: 226
Join Date: Aug 2007
04-08-2008

hmm i get installpath is not declared.. i tried fixing..but im hella new.. so dont be
frusterated with a nappppp
Reply With Quote
(#9)
Old
EmiloZ's Avatar
EmiloZ is Offline
Flying Danish Leecher
Rep Power: 4
Reputation: 383
EmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really niceEmiloZ is just really nice
 
Posts: 955
Join Date: Jun 2007
Location: Denmark - Europe
04-08-2008

I think u need some imports for :
Quote:
installpath = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINESOFTWAREblizzard entertainmentworld of warcraft", "installpath", Nothing)
If Directory.Exists(installpath & "/cache") Then
Directory.Delete(installpath & "/cache", True)
Becuas i'm getting that installpath and Diretory isnt declared




Nominated [Only registered and activated users can see links. ]
[Only registered and activated users can see links. ] so now im contributer will girls sleep with me?
Reply With Quote
(#10)
Old
Clain's Avatar
Clain is Online
Contributor
Rep Power: 1
Reputation: 103
Clain will become famous soon enoughClain will become famous soon enough
 
Posts: 922
Join Date: Jan 2008
04-08-2008

Oh oops the dim got messed up when I posted it sorry.

Dim installpath As String = String.Empty
installpath = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\blizzard entertainment\world of warcraft", "WoW", Nothing)


Visual Basic .NET Coder
Will code programs for money/gamecard. Contact me on msn for more information!
You have one more chance to do right and its tonight.
Reply With Quote
(#11)
Old
Darksid is Offline
Site Donator
Rep Power: 1
Reputation: 5
Darksid is an unknown quantity at this point
 
Posts: 206
Join Date: Jun 2008
Location: Boston,MA
06-28-2008

this isnt working for me =(. I tried all codes
Reply With Quote
Reply

Donate to remove ads.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343