09-12-2011, 01:26 PM
Yes breshie, I posted this in the same thread you're looking at lol. I never double posted it, "Sanz" just bumped it.
Ace's Total Cleaner
|
09-12-2011, 01:26 PM
Yes breshie, I posted this in the same thread you're looking at lol. I never double posted it, "Sanz" just bumped it.
09-15-2011, 10:05 PM
Thanks for the great batch file brother. You are awesome.
12-14-2011, 05:13 AM
One question is it supported for Windows 7 64 bits?
12-29-2011, 03:58 AM
01-14-2012, 06:04 AM
Very nice tool , hope to see more now.
01-14-2012, 10:14 AM
Awesome, I also had made something like this... Here's my one!
Code: @echo off
01-14-2012, 10:18 AM
(This post was last modified: 01-14-2012, 10:22 AM by AceInfinity.)
It's alright, but a few things
-Some of those entires can point to invalid locations, since you don't check for their existance -You have way too many ping lines in there -You don't use quotes to cast input to a definite string value which should be done with all user input, and also using the /i switch to make it case insensitive Example: Code: if %input%==y goto :tree Becomes: Code: if /i %input%=="y" goto tree You don't need ":" in your goto's, only when you call a block. And i'm not sure why you do this: Code: :tree You don't even need a block for that really the way I see it, instead of "goto :tree" in the line above the block, delete this entire thing and just use "tree". Modified line: Code: if /i %input%=="y" tree That's just to show you, but this entire part of your script is useless in my opinion... Code: echo Do you want to start tree? (y/n) (01-14-2012, 10:18 AM)AceInfinity Wrote: It's alright, but a few things Thanks for the corrections. Made this when I was learning batch... So, didn't bother correcting it again later.
01-14-2012, 10:29 AM
No big problem, it's better to learn what you're doing sooner than later to make sure that you don't practice all the bad habits.
|
« Next Oldest | Next Newest »
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
TLF Diagnostic Tool - Created by Ace [Quick Preview] | AceInfinity | 0 | 860 |
08-26-2011, 06:06 PM Last Post: AceInfinity |
|
PowerShell Hotfix List Script - Created by Ace | AceInfinity | 4 | 2,178 |
08-16-2011, 12:09 PM Last Post: AceInfinity |
|
[SF Reviews] ATF Cleaner | Skill | 5 | 1,993 |
11-07-2010, 10:05 AM Last Post: Herm1t |