China DOS Union

-- Unite DOS · Advance DOS · Grow DOS --

Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!

中国DOS联盟论坛
The time now is 2026-06-25 10:44
中国DOS联盟论坛 » DOS批处理 & 脚本技术(批处理室) » Third - party command - line tool collection post [Being added] DigestII View 83,057 Replies 91
Floor 61 Posted 2008-10-31 10:09 ·  中国 广东 肇庆 电信
中级用户
★★
Credits 206
Posts 103
Joined 2008-05-06 16:59
18-year member
UID 117911
Gender Male
From 广东 肇庆
Status Offline
My English is not good, please the person upstairs introduce the usage in detail.
Floor 62 Posted 2008-10-31 10:37 ·  中国 江西 赣州 安远县 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
Is it HotkeyP? Its help documentation is not difficult to understand. They are all very simple sentences. When encountering rare characters or sentences that are not easy to understand, you can use translation software or Google's online translation.
Floor 63 Posted 2008-10-31 10:41 ·  中国 广东 肇庆 电信
中级用户
★★
Credits 206
Posts 103
Joined 2008-05-06 16:59
18-year member
UID 117911
Gender Male
From 广东 肇庆
Status Offline
Thanks to the person above, I have already found the Chinese - localized version.
Floor 64 Posted 2008-11-01 16:00 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
Runmenu displays the right-click menu of files/folders, etc.
http://www.eluent.com/freeware.htm#runmenu

Similar to Context.exe, but with more powerful functions.

Examples:

Display the right-click menu of "My Computer":
runmenu /show "<mycomputer>"


Display the right-click menu of "My Computer" in the CMD window:
C:\>runmenu /list "<mycomputer>"
Open (O) (Verb: open)
Explorer (X) (Verb: explore)
Device Manager (Verb: DevMgr)
Add or Remove Programs (U) (Verb: Dezinstall)
Search (E)... (Verb: find)
Manage (G) (Verb: Manage)
Group Policy (Z) (Verb: NGpEdit)
Services (Verb: services)
System Auto-Login Management (Verb: user)
Map Network Drive (N)...
Disconnect Network Drive (I)...
Delete (D) (Verb: delete)
Properties (R) (Verb: properties)


Execute "Services" in the right-click menu of "My Computer":
runmenu /exec:Services "<mycomputer>"

or
runmenu /verb:services "<mycomputer>"


Display files in the Recycle Bin:
runmenu /showfiles "<RecycleBin>\*"


Display the right-click menu of a file:
C:\>runmenu /list "E:\Program Files\Opera\opera.exe"
Open (O) (Verb: open)
/? (Verb: /?)
Run As... (Verb: runas)
Clipname\Copy name (Verb: C)
Clipname\Copy path (Verb: C)
Clipname\Copy DOS name (Verb: C)
Clipname\Copy URL encoded name (Verb: C)
Clipname\Copy encoded name (<WORD>) (Verb: C)
Clipname\Copy UNC name (Verb: C)
Copy Path Name
Unlocker
Add to Compressed File (A)... (Verb: AddTo)
Add to "opera.rar"(T) (Verb: Add)
Pin to Start Menu (I) (Verb: pin)
Send To (N)\Desktop Shortcut
Cut (T) (Verb: cut)
Copy (C) (Verb: copy)
Delete (D) (Verb: delete)
Properties (R) (Verb: properties)


[ Last edited by tireless on 2008-12-27 at 15:30 ]
Floor 65 Posted 2008-11-11 13:54 ·  中国 江西 赣州 安远县 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
ThumbsExtract.exe: Extract thumbnails from Thumbs.db
http://upload.cn-dos.net/img/1071.rar
Thumbs Extractor v0.1
by shapeless
- swerat.com
- chasenet.org

Usage: ThumbsExtract.exe InputFile
-o:OutputFolder Specify where to dump files
(ThumbsExtract.exe's folder will be used if no OutputFolder is
given)

Examples:
ThumbsExtract.exe -o:C:\ThumbNails\ C:\Images\Thumbs.db
ThumbsExtract.exe C:\Images\Thumbs.db


[ Last edited by tireless on 2008-12-27 at 15:31 ]
Floor 66 Posted 2008-11-11 20:28 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
Modifying MP3 tags (tags)

id3tool
http://nekohako.xware.cx/id3tool/

ID3 mass tagger
http://home.wanadoo.nl/squell/id3.html

Tag
http://synthetic-soul.co.uk/tag/

[ Last edited by tireless on 2008-12-27 at 15:31 ]
Floor 67 Posted 2008-11-21 18:08 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
gifsicle: Create, edit, manipulate GIF images and animations
http://www.lcdf.org/gifsicle/

Some examples ——

Create a GIF animation:

gifsicle 1.gif 2.gif 3.gif > anim.gif

Each frame with 10 seconds delay, permanent loop:

gifsicle -d10 -l *.gif > anim.gif

Set different delays for each frame:

gifsicle -d10 1.gif -d50 2.gif -d20 3.gif -o anim.gif

-------------------------------------------------------------------------------------------------

View the image information (size, color, frames, etc.) of anim.gif:

gifsicle -I anim.gif

-------------------------------------------------------------------------------------------------

Modify the delay of the first frame of anim.gif to 0.5 seconds:

gifsicle -b -d50 anim.gif "#0"

-------------------------------------------------------------------------------------------------

Extract all frames of anim.gif:

gifsicle -e anim.gif

Extract the first frame:

gifsicle -e anim.gif "#0"

-------------------------------------------------------------------------------------------------

Modify the canvas size:

gifsicle -S widthxheight

Modify the image size:

gifsicle --resize widthxheight

-------------------------------------------------------------------------------------------------

Set the black background to transparent:

gifsicle -t "#000000" 1.gif

-------------------------------------------------------------------------------------------------

Remove the extra perimeter of the transparent image:

--crop-transparency

[ Last edited by tireless on 2009-6-23 at 14:50 ]
Floor 68 Posted 2008-11-22 21:14 ·  中国 重庆 电信
版主
★★★★★
Credits 9,023
Posts 5,017
Joined 2007-05-31 19:39
19-year member
UID 89899
Gender Male
Status Offline
Is there a command-line CHM compilation tool?
Floor 69 Posted 2008-11-22 22:09 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
**Compilation:**

Included in the HTML Help Workshop is hhc.exe:

Usage: hhc <filename>
where <filename> = an HTML Help project file
Example: hhc myfile.hhp


**Decompilation:**

① The system's built-in hh.exe:
HH.EXE -decompile <output path> <target chm file>

http://www.cn-dos.net/forum/viewthread.php?tid=21516]

② This can generate the same sidebar menu as the chm document:
CHM Decoder

[ Last edited by tireless on 2008-11-26 at 10:47 ]
Floor 70 Posted 2008-12-19 17:09 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
ConCmd.exe 1.5 (261 KB) File Encoding Conversion
http://upload.cn-dos.net/img/1202.zip

Syntax: ConCmd <CodeOut> <FileIn>

(optional, default is auto-detect)
/i:xxx where 'xxx' is the coding method of the input file
* Valid values of 'xxx' are: ULE, UBE, UTF8, GBK, BIG5

<CodeOut>
/o:xxx where 'xxx' is the coding method of the output file
* Valid values of 'xxx' are: ULE, UBE, UTF8, GBK, BIG5

(optional, default is /f:D)
/f:x where 'x' is the typeface of output file
* Valid values of 'x' are: T (traditional), S (simplified), D (default)

<FileIn>
Input Filename

(optional, FileIn will be overwritten if this param is omission)
Output Filename.

ConCmd ver 1.3 (Freeware for non-commercial use)
Author: Alfred, C. S. Li webpage: http://alf-li.tripod.com


[ Last edited by tireless on 2008-12-27 at 15:32 ]
Floor 71 Posted 2008-12-27 13:19 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
geturls.exe (64 KB) - Extract links from the text
http://www.geocities.com/fp.westlake/nt/
http://upload.cn-dos.net/img/1407.zip

Version 1.0, Copyright (C)2001 Frank P. Westlake
Extracts URL's beginning with "http://" or "ftp://" from a stream and
prints to STDOUT.

program | GetURLs

/e Additional ending delimiters.
/s An additional beginning string to match.

The URL is expected to be ended with white space, a double quote, one of the
angle brackets '<' or '>', or one of the characters in the string identified by
the /e switch.


[ Last edited by tireless on 2009-4-16 at 09:24 ]
Floor 72 Posted 2009-01-01 12:59 ·  中国 河南 郑州 电信
新手上路
Credits 1
Posts 1
Joined 2008-12-30 14:39
17-year member
UID 135346
Gender Male
Status Offline
Thanks
Floor 73 Posted 2009-01-01 16:46 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
png_border (288 KB): Add border to PNG image
http://upload.cn-dos.net/img/1235.rar

png_border - version 1.0.0 build 35
Copyright (C) Grigore Stefan. All rights reserved. <g_stefan@yahoo.com>

usage:

png_border --licence
png_border input.png out.png r,g,b,a width
Floor 74 Posted 2009-01-01 18:53 ·  中国 江西 赣州 电信
银牌会员
★★★★
Credits 2,025
Posts 1,122
Joined 2007-09-05 20:15
18-year member
UID 96653
Gender Male
Status Offline
Adding shadows to images, generating circular buttons, and creating a logo like Google's

http://home.scarlet.be/zoetrope/

Note: .Net is required, so the processing speed is a bit slow.

1. The Aqualizer: Generate buttons [1238.zip]



2. Shadow: Add shadow to images [1239.zip]

3. GPaint: Create a logo like Google's [1240.zip]



[ Last edited by tireless on 2009-1-1 at 19:02 ]
Floor 75 Posted 2009-11-26 16:26 ·  中国 上海 联通
中级用户
★★
Credits 400
Posts 211
Joined 2007-09-30 18:02
18-year member
UID 98650
Gender Male
Status Offline
CDIMAGE.exe is a CD - ROM and DVD - ROM Premastering utility/imaging tool from Microsoft.

cdimage -l"%date%" -h -j1 -oci -m -be:\loader.bin Drive:\Path Drive:\image.iso
Attachments
CDIMAGE.zip (46.78 KiB, Downloads: 5)
Forum Jump: