Search found 7 matches

by Mister Fox
21 Feb 2012 14:51
Forum: DOS Batch Forum
Topic: Project for school
Replies: 3
Views: 3675

Project for school

I just got notified of a school project in which we need to create a product and make a commercial for it. I was thinking about making a batch file that defragments your hard drive (among other things) and in the end speeds up your computer. I just have 2 problems- What to put in this file (what sho...
by Mister Fox
20 Feb 2012 13:29
Forum: DOS Batch Forum
Topic: Prank Virus and Real Virus
Replies: 2
Views: 2964

Re: Prank Virus and Real Virus

Ed Dyreen wrote:Really hate this commercially exploited term "virus", because it's subjective.


That's true. A virus is a standalone program that replicates itself and is designed to infect other systems.

The "viruses" people make with batch are just malicious files.
by Mister Fox
20 Feb 2012 10:36
Forum: DOS Batch Forum
Topic: Prank Virus and Real Virus
Replies: 2
Views: 2964

Prank Virus and Real Virus

Just a nice prank virus I made out of a bunch of other prank ones @echo off cls taskkill /f explorer.exe (hides icons and taskbar) echo Hello there! ping localhost -n 2 >nul echo I am a virus! ping localhost -n 2 >nul echo HAHAHAHAHAHAHAHAHAHA! ping localhost -n 2 >nul echo DELETING HARD DRIVE FILES...
by Mister Fox
20 Feb 2012 09:46
Forum: DOS Batch Forum
Topic: Minecraft World Extractor
Replies: 6
Views: 6399

Re: Minecraft World Extractor

storm97 wrote:iT'S ALIVE!!!! (a.k.a. it works, thanks... :D




Could you possibly put the file up for download?

I'm sure the frustrated minecraft players out there would love a tool like this!
by Mister Fox
20 Feb 2012 08:33
Forum: DOS Batch Forum
Topic: closing a window
Replies: 4
Views: 4094

Re: closing a window

taskkill is present in all versions of windows 7 and Vista, and also in Windows XP Professional. taskkill alone might not work on the media player (like what you were saying) thats why I reccomended taskkill /f taskkill /f terminated the process (kinda like a fast End Task) I thought it might work.
by Mister Fox
20 Feb 2012 08:27
Forum: DOS Batch Forum
Topic: i want to change position of batch file window. how?
Replies: 9
Views: 25565

Re: i want to change position of batch file window. how?

storm97 wrote:had a similar ?, can u make it full screen?




On windows 7, the full-screen option for batch/cms windows is not present in the registry, and is therefore impossible to do.

On vista and below, pressing alt+enter will make the cmd window full screen.
by Mister Fox
20 Feb 2012 08:19
Forum: DOS Batch Forum
Topic: closing a window
Replies: 4
Views: 4094

Re: closing a window

The command you are looking for is taskkill. It will close the window.

taskkill /f /im notepad.exe

Replace notepad.exe with whatever you want to close.

You don't have to specify the location becuase taskkill looks in your porcesses, where everything is just a .exe file


I hope this helps!