Reflection-based command line processor





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

8
Date Submitted Thu. Mar. 2nd, 2006 2:28 AM
Revision 1
Beginner depsypher
Tags Java
Comments 0 comments
Read a eight bytes in little endian order from the given InputStream and create a long out of them.
4
Date Submitted Thu. Mar. 2nd, 2006 3:36 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | BATCH | CMD | wins
Comments 0 comments
Change wins settings for all nics
4
Date Submitted Thu. Mar. 2nd, 2006 3:41 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | BATCH | CMD | share
Comments 0 comments
Builds a batch file to create hidden shares for a bunch of sub-directories (eg, User shares)
-4
Date Submitted Thu. Mar. 2nd, 2006 3:44 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | BATCH | CMD | Delete
Comments 0 comments
Deletes all files and folders from a directory, including read-only and
hidden files and folders. DelAll starts in the directory you tell it,
removes all read-only and hidden attributes from all the files, removes
all of the subfolders and then all files therein. When DelAll is done,
you will be left in the directory from which you called DelAll. The
directory that you want cleaned will not be deleted.
2
Date Submitted Thu. Mar. 2nd, 2006 3:51 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | BATCH | CMD | KILL
Comments 0 comments
KillProc will do a search of all the current processes and kill all that
match the name given. If the process name is misspelled, KillProc would
kill itself, based on the match. The 'find /v /i "KillProc"' part of the
search prevents KillProc from killing the CMD window it is running in.

Requires NT Resourcekit
1
Date Submitted Thu. Mar. 2nd, 2006 3:56 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | Backup | BATCH | CMD | exchange
Comments 0 comments
Automated offline backup for Exchange server.
Requires ROBOCOPY from NTRK or other copy utility.
Requires manual adjustments
4
Date Submitted Thu. Mar. 2nd, 2006 11:20 AM
Revision 1
Syntax Master dannyboy
Tags "Command Line" | Radmin | VBSCRIPT
Comments 1 comments
start remote admin connection from command line
9
Date Submitted Wed. Mar. 8th, 2006 10:05 PM
Revision 1
Coder mattrmiller
Tags EventListener | EventListenerList | Java
Comments 0 comments
I came across this in the Java Docs, in my ever growing attempt to learn Java. I needed to implement custom listener events.
12
Date Submitted Thu. Mar. 9th, 2006 4:02 AM
Revision 1
Scripter TimYates
Tags Java | String | Word
Comments 1 comments
If you have ever written a website or java application where people paste stuff in from Word, you are likely to have hit the problem of Word using high ascii chars for "open quotes", "close quotes", reg symbol, etc...

This java class (with a single static method) can replace the most prevalent of these with normal ascii values

Hope it helps someone...
9
Date Submitted Thu. Mar. 9th, 2006 10:41 PM
Revision 1
Beginner atlamp
Tags copy | File | Java | tmp
Comments 0 comments
Copy a file to a new location, optionally marking the file as a temporary file (to be deleted on application exit).

Note there are issues for temporary files - not all the parent directories that might be created are guaranteed to be deleted - only the immediate parent directory will be deleted on exit if created. Other higher-level directories will not be deleted, even if the file is marked as temporary.