本来想放在一篇里的,可提示出错,只好剪一半,还是出错,只要剪1/3。太长了!
范例
要在本地计算机上以管理员身份启动 windows 2000 命令提示行实例,请键入:
runas /user:localmachinename\administrator cmd
系统提示时,键入管理员密码。
要使用名为 companydomain\domainadmin 的域管理员帐户启动"计算机管理"管理单元实例,请键入:
runas /user:companydomain\domainadmin "mmc %windir%\system32\compmgmt.msc"
当提示时,键入帐户密码。 要使用名为 domain.microsoft.com 的域中的域管理员帐户 user 启动"记事本"实例,请键入:
runas /user:user@domain.microsoft.com "notepad my_file.txt"
当提示时,键入帐户密码。
要启动命令提示符行窗口、保存的 mmc 控制台、控制面板项或管理其他地点服务器的程序的一个实例,请键入:
runas /netonly /user:domain\username "command"
domain\username 必须是有足够权限管理服务器的用户。当提示时,键入帐户密码。
route
在本地 ip 路由表中显示和修改条目。使用不带参数的 route 可以显示帮助。
语法
route [-f] [-p] [command [destination] [mask netmask] [gateway] [metric metric] [if interface]
参数
-f
清除所有不是主路由(网掩码为 255.255.255.255 的路由)、环回网络路由(目标为 127.0.0.0,网掩码为 255.255.255.0 的路由)或多播路由(目标为 224.0.0.0,网掩码为 240.0.0.0 的路由)的条目的路由表。如果它与命令之一(例如 add、change 或 )结合使用,表会在运行命令之前清除。
-p
与 add 命令共同使用时,指定路由被添加到注册表并在启动 tcp/ip 协议的时候初始化 ip 路由表。默认情况下,启动 tcp/ip 协议时不会保存添加的路由。与 print 命令一起使用时,则显示永久路由列表。所有其它的命令都忽略此参数。永久路由存储在注册表中的位置是 hkey_local_machine\system\currentcontrolset\services\tcpip\parameters\persistentroutes。
command
指定要运行的命令。下表列出了有效的命令。 命令 目的
add 添加路由
change 更改现存路由
删除路由
print 打印路由
destination
指定路由的网络目标地址。目标地址可以是一个 ip 网络地址(其中网络地址的主机地址位设置为 0),对于主机路由是 ip 地址,对于默认路由是 0.0.0.0。
mask subnetmask
指定与网络目标地址相关联的网掩码(又称之为子网掩码)。子网掩码对于 ip 网络地址可以是一适当的子网掩码,对于主机路由是 255.255.255.255 ,对于默认路由是 0.0.0.0。如果忽略,则使用子网掩码 255.255.255.255。定义路由时由于目标地址和子网掩码之间的关系,目标地址不能比它对应的子网掩码更为详细。换句话说,如果子网掩码的一位是 0,则目标地址中的对应位就不能设置为 1。
gateway
指定超过由网络目标和子网掩码定义的可达到的地址集的前一个或下一个跃点 ip 地址。对于本地连接的子网路由,网关地址是分配给连接子网接口的 ip 地址。对于要经过一个或多个路由器才可用到的远程路由,网关地址是一个分配给相邻路由器的、可直接达到的 ip 地址。
metric metric
为路由指定所需跃点数的整数值(范围是 1 ~ 9999),它用来在路由表里的多个路由中选择与转发包中的目标地址最为匹配的路由。所选的路由具有最少的跃点数。跃点数能够反映跃点的数量、路径的速度、路径可靠性、路径吞吐量以及管理属性。
if interface
指定目标可以到达的接口的接口索引。使用 route print 命令可以显示接口及其对应接口索引的列表。对于接口索引可以使用十进制或十六进制的值。对于十六进制值,要在十六进制数的前面加上 0x。忽略 if 参数时,接口由网关地址确定。
/?
在命令提示符显示帮助。
注释
路由表中 跃点数 一列的值较大是由于允许 tcp/ip 根据每个 lan 接口的 ip 地址、子网掩码和默认网关的配置自动确定路由表中路由的跃点数造成的。默认启动的自动确定接口跃点数确定了每个接口的速度,调整了每个接口的路由跃点数,因此最快接口所创建的路由具有最低的跃点数。要删除大跃点数,请在每个 lan 连接的 tcp/ip 协议的高级属性中禁用自动确定接口跃点数。
如果在 systemroot\system32\drivers\etc 文件夹的本地网络文件中存在适当的条目,名称可以用于 destination。只要名称可以通过"域名系统" (dns) 查询这样的标准主机名解析技术分解为 ip 地址,就可以将其用于 gateway,dns 查询使用存储在 systemroot\system32\drivers\etc 文件夹下的本地主机文件和 netbios 名称解析。
如果是 print 或 命令,可以忽略 gateway 参数,使用通配符来表示目标和网关。destination 的值可以是由星号 (*) 指定的通配符。如果指定目标含有一个星号 (*) 或问号 (?),它被看作是通配符,只打印或删除匹配的目标路由。星号代表任意一字符序列,问号代表任一字符。例如, 10.*.1, 192.168.*、 127.* 和 *224* 都是星号通配符的有效使用。
使用了无效的目标和子网掩码(网掩码)值的组合,会显示"route:bad gateway address netmask"错误消息。目标中有一位或多位设置为 1,而其在子网掩码中的对应位设置为 0 时会发生这个错误。可以通过二进制表示法表示目标和子网掩码来检查这种情况。以二进制表示的子网掩码包括表示目标网络地址部分的一连串的 1 和表示目标主机地址部分的一连串的 0 两个部分。查看目标以确定目标的主机地址部分(由子网掩码所定义)是否有些位设置成了 1。
只有 windows nt 4.0、windows 2000、windows millennium edition 和 windows xp 的 route 命令支持 -p 参数。windows 95 或 windows 98 的 route 命令不支持该参数。
只有当网际协议 (tcp/ip) 协议在 网络连接中安装为网络适配器属性的组件时,该命令才可用。
范例
要显示 ip 路由表的完整内容,请键入:
route print
要显示 ip 路由表中以 10. 开始的路由,请键入:
route print 10.*
要添加默认网关地址为 192.168.12.1 的默认路由,请键入:
route add 0.0.0.0 mask 0.0.0.0 192.168.12.1
要添加目标为 10.41.0.0,子网掩码为 255.255.0.0,下一个跃点地址为 10.27.0.1 的路由,请键入:
route add 10.41.0.0 mask 255.255.0.0 10.27.0.1
要添加目标为 10.41.0.0,子网掩码为 255.255.0.0,下一个跃点地址为 10.27.0.1 的永久路由,请键入:
route -p add 10.41.0.0 mask 255.255.0.0 10.27.0.1
要添加目标为 10.41.0.0,子网掩码为 255.255.0.0,下一个跃点地址为 10.27.0.1,跃点数为 7 的路由,请键入:
route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 metric 7
要添加目标为 10.41.0.0,子网掩码为 255.255.0.0,下一个跃点地址为 10.27.0.1,接口索引为 0x3 的路由,请键入:
route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 if 0x3
要删除目标为 10.41.0.0,子网掩码为 255.255.0.0 的路由,请键入:
route 10.41.0.0 mask 255.255.0.0
要删除 ip 路由表中以 10. 开始的所有路由,请键入:
route 10.*
要将目标为 10.41.0.0,子网掩码为 255.255.0.0 的路由的下一个跃点地址由 10.27.0.1 更改为 10.27.0.25,请键入:
route change 10.41.0.0 mask 255.255.0.0 10.27.0.25
routing ip ospf add//show routefilter 添加、删除、配置或显示 ospf 外部路由的路由筛选。
routing ip ospf show areastats 显示 ospf 区域统计。
routing ip ospf show lsdb 显示 ospf 链接状态数据库。
routing ip ospf show virtifstats 显示 ospf 虚拟链接统计。
routing ip relay set global 配置"dhcp 中继代理程序"的全局设置。
routing ip relay add//set interface 在指定接口上添加、删除或配置"dhcp 中继代理程序"设置。
routing ip relay add/ dhcpserver 在 dhcp 服务器地址列表中添加或删除 dhcp 服务器的 ip 地址。
routing ip relay show ifbinding 显示接口的 ip 地址绑定。
routing ip relay show ifconfig 显示每个接口的"dhcp 中继代理程序"配置。
routing ip relay show ifstats 显示每个接口的 dhcp 统计。
routing ip rip set/show global 配置 ip 的 rip 全局设置。
routing ip rip add//set/show interface 在指定接口上添加或配置 ip 的 rip 设置。
routing ip rip add/ peerfilter 添加或删除 rip 对等筛选器。
routing ip rip add/ acceptfilter 在接受的路由列表中添加或删除 rip 路由筛选器。
routing ip rip add/ announcefilter 在公布的路由列表中添加或删除 rip 路由筛选器。
routing ip rip add//show neighbor 添加或删除 rip 邻居。
routing ip rip set/show flags 在指定接口上配置 ip rip 高级设置。
routing ip rip show globalstats 显示全局 rip 参数。
routing ip rip show ifbinding 显示接口的 ip 地址绑定。
routing ip rip show ifstats 显示每个接口的 rip 统计。
ipx netsh 路由命令
routing ipx add/set staticroute 在 ipx 路由表中添加或配置静态 ipx 路由。
routing ipx add/set staticservice 在 sap 服务表中添加或配置静态 sap 服务。
routing ipx add/set filter 在指定的接口上添加或配置 ipx 数据包筛选器。
routing ipx add/set interface 在请求拨号接口上启用 ipx 路由,或在指定的接口上配置 ipx 设置。
routing ipx set global 配置全局 ipx 路由设置。
routing ipx rip add/set filter 添加和配置 rip 路由筛选器。
routing ipx rip set global 配置全局 ipx 的 rip 设置。
routing ipx rip set interface 在指定接口上配置 ipx 的 rip 设置。
routing ipx sap add/set filter 添加或配置 sap 服务筛选器。
routing ipx sap set global 配置全局 ipx 的 sap 设置。
routing ipx sap set interface 在指定接口上配置 ipx 的 sap 设置。
routing ipx netbios add nbname 将静态 netbios 名称添加到 ipx netbios 名称表中。
routing ipx netbios set interface 在指定接口上配置基于 ipx 的 netbios 设置。
wins netsh 命令
list 列出所有可用的 wins 命令。
dump 将 wins 服务器配置转储到命令输出。
add name 在服务器上注册名称。详细信息,请输入 add name /?
add partner 向服务器添加复制伙伴。详细信息,请输入 add partner /?
add pngserver 添加当前服务器的 persona non grata 服务器列表。详细信息,请输入 add pngserver /?
check database 检查数据库的一致性。详细信息,请输入 check database /?
check name 检查一组 wins 服务器的名称记录列表。详细信息,请输入 check name /?
check version 检查版本号的一致性。详细信息,请输入 check version /?
name 从服务器数据库中删除已注册的名称。详细信息,请输入 name /?
partner 从复制伙伴列表中删除复制伙伴。详细信息,请输入 partner /?
records 从服务器删除或逻辑删除所有记录或一组记录。详细信息,请输入 records /?
owners 删除所有者列表及其记录。详细信息,请输入 owners /?
pngserver 从列表中删除所有的或选定的 persona non grata 服务器。详细信息,请输入 pngserver /?
init backup 备份 wins 数据库。详细信息,请输入 init backup /?
init import 从 lmhosts 文件导入数据。详细信息,请输入 init import /?
init pull 启动"拉"触发器,并发送给另一台 wins 服务器。详细信息,请输入 init pull /?
init pullrange 开始另一台 wins 服务器的一组记录,并读取该记录。详细信息,请输入 init pullrange /?
init push 启动"推"触发器,并发送给另一台 wins 服务器。详细信息,请输入 init push /?
init replicate 用复制伙伴复制数据库。详细信息,请输入 init replicate /?
init restore 从文件还原数据库。详细信息,请输入 init restore /?
init scavenge 清除服务器的 wins 数据库。详细信息,请输入 init scavenge /?
init search 搜索服务器的 wins 数据库。详细信息,请输入 init search /?
reset statistics 重置服务器的统计信息。详细信息,请输入 reset statistics /?
set autopartnerconfig 设置服务器的自动复制伙伴配置信息。详细信息,请输入 set autopartnerconfig /?
set backuppath 设置服务器的备份参数。详细信息,请输入 set backuppath /?
set burstparam 设置服务器的突发处理参数。详细信息,请输入 set autopartnerconfig /?
set logparam 设置数据库和事件日志记录选项。详细信息,请输入 set logparam /?
set migrateflag 设置服务器的迁移标志。详细信息,请输入 set migrateflag /?
set namerecord 设置服务器的间隔和超时值。详细信息,请输入 set namerecord /?
set periodicdbchecking 设置服务器的定期数据库检查参数。详细信息,请输入 set periodicdbchecking /?
set pullpartnerconfig 设置指定的"拉"伙伴的配置参数。详细信息,请输入 set pullpartnerconfig /?
set pushpartnerconfig 设置指定的"推"伙伴的配置参数。详细信息,请输入 set pushpartnerconfig /?
set pullparam 设置服务器的默认"拉"参数。详细信息,请输入 set pullparam /?
set pushparam 设置服务器的默认"推"参数。详细信息,请输入 set pushparam /?
set replicateflag 设置服务器的复制标志。详细信息,请输入 set replicateflag /?
set startversion 设置数据库的开始版本 id。详细信息,请输入 set startversion /?
show browser 显示所有活动域主浏览器的 [1bh] 记录。详细信息,请输入 show browser /?
show database 显示指定服务器的数据库和记录。详细信息,请输入 show database /?
show info 显示配置信息。详细信息,请输入 show info /?
show name 显示服务器中特定记录的详细信息。详细信息,请输入 show name /?
show partner 显示服务器的"拉"或"推"(或"推拉")伙伴。详细信息,请输入 show partner /?
show partnerproperties 显示默认伙伴配置。详细信息,请输入 show partnerproperties /?
show pullpartnerconfig 显示"拉"伙伴的配置信息。详细信息,请输入 show pullpartnerconfig /?
show pushpartnerconfig 显示"推"伙伴的配置信息。详细信息,请输入 show pushpartnerconfig /?
show reccount 显示指定服务器所拥有的记录数量。详细信息,请输入 show reccount /?
show recbyversion 显示指定服务器所拥有的记录。详细信息,请输入 show recbyversion /?
show server 显示当前选定的服务器。详细信息,请输入 show server /?
show statistics 显示 wins 服务器的统计信息。详细信息,请输入 show statistics /?
show version 显示 wins 服务器的当前版本计数器值。详细信息,请输入 show version /?
show versionmap 显示所有者 id 到"最大版本数"的映射。详细信息,请输入 show versionmap /?
interface 命令
interface set/show interface 启用、禁用、连接、断开连接以及显示请求拨号接口的配置。
interface set/show credentials 在请求拨号接口上配置或显示用户名、密码和域名。
win2000命令全集
accwiz.exe > accessibility wizard for walking you through setting up your machine for your mobility needs. 辅助工具向导
acsetups.exe > acs setup dcom server executable
actmovie.exe > direct show setup tool 直接显示安装工具
append.exe > allows programs to open data in specified directories as if they were in the current directory. 允许程序打开制定目录中的数据
arp.exe > network display and modify ip - hardware addresses 显示和更改计算机的ip与硬件物理地址的对应列表
at.exe > at is a scheduling utility also included with unix 计划运行任务
atmadm.exe > displays statistics for atm call manager. atm调用管理器统计
attrib.exe > display and modify attributes for files and folders 显示和更改文件和文件夹属性
autochk.exe > used to check and repair windows file systems 检测修复文件系统
autoconv.exe > automates the file system conversion during reboots 在启动过程中自动转化系统
autofmt.exe > automates the file format process during reboots 在启动过程中格式化进程
autolfn.exe > used for formatting long file names 使用长文件名格式
bootok.exe > boot acceptance application for registry
bootvrfy.exe > bootvrfy.exe, a program included in windows 2000 that notifies the system that startup was successful. bootvrfy.exe can be run on a local or remote computer. 通报启动成功
cacls.exe > displays or modifies access control lists (acls) of files. 显示和编辑acl
calc.exe > windows calculators 计算器
cdplayer.exe > windows cd player cd播放器
change.exe > change { user | port | logon } 与终端服务器相关的查询
charmap.exe > character map 字符映射表
chglogon.exe > same as using "change logon" 启动或停用会话记录
chgport.exe > same as using "change port" 改变端口(终端服务)
chgusr.exe > same as using "change user" 改变用户(终端服务)
chkdsk.exe > check the hard disk for errors similar to scandisk 3 stages must specify a drive letter 磁盘检测程序
chkntfs.exe > same as using chkdsk but for ntfs ntfs磁盘检测程序
cidaemon.exe > component of ci filer service 组成ci文档服务
cipher.exe > displays or alters the encryption of directories [files] on ntfs partitions. 在ntfs上显示或改变加密的文件或目录
cisvc.exe > content index -- it's the content indexing service for i 索引内容
ckcnv.exe > convertor 变换
cleanmgr.exe > disk cleanup, popular with windows 98 磁盘清理
cliconfg.exe > sql server client network utility sql客户网络工具
clipbrd.exe > clipboard viewer for local will allow you to connect to other clipboards 剪贴簿查看器
clipsrv.exe > start the clipboard server 运行clipboard服务
clspack.exe > clspack used to create a file listing of system packages 建立系统文件列表清单
cluster.exe > display a cluster in a domain 显示域的集群
_cmd_.exe > famous command prompt 没什么好说的!
cmdl32.exe > connection manager auto-download 自动下载连接管理
cmmgr32.exe > connection manager 连接管理器
cmmon32.exe > connection manager monitor 连接管理器监视
cmstp.exe > connection manager profile manager 连接管理器配置文件安装程序
comclust.exe > about cluster server 集群
comp.exe > comclust add, remove, or join a cluster. 比较两个文件和文件集的内容*
compact.exe > displays or alters the compression of files on ntfs partitions. 显示或改变ntfs分区上文件的压缩状态
conime.exe > console ime ime控制台
control.exe > starts the control panel 控制面板
convert.exe > convert file system to ntfs 转换文件系统到ntfs
convlog.exe > converts ms iis log files 转换iis日志文件格式到ncsa格
cprofile.exe > copy profiles 转换显示模
c.exe > ms windows s host version 5.1 较本宿主版本
csrss.exe > client server runtime process 客户服务器runtime进程
csvde.exe > comma separated variable import/export utility 日至格式转换程
dbgtrace.exe > 和terminal server相关
dcomcnfg.exe > display the current dcom configuration. dcom配置属性
dcphelp.exe > ?
dcpromo.exe > promote a domain controller to adsi ad安装向导
ddeshare.exe > display dde shares on local or remote computer dde共享
ddmprxy.exe >
debug.exe > runs debug, a program testing and editing tool. 就是debug啦!
dfrgfat.exe > defrag fat file system fat分区磁盘碎片整理程序
dfrgntfs.exe > defrag ntfs file system ntfs分区磁盘碎片整理程序
dfs_cmd_.exe > configures a dfs tree 配置一个dfs树
dfsinit.exe > distributed file system initialization 分布式文件系统初始化
dfssvc.exe > distributed file system server 分布式文件系统服务器
diantz.exe > ms cabinet maker 制作cab文件
diskperf.exe > starts physical disk performance counters 磁盘性能计数器
dllhost.exe > dllhost is used on all versions of windows 2000. dllhost is the hedost process for all com+ applications. 所有com+应用软件的主进程
dllhst3g.exe >
dmadmin.exe > disk manager service 磁盘管理服务
dmremote.exe > part of disk management 磁盘管理服务的一部分
dns.exe > dns applications dns
doskey.exe > recalls windows command lines and creates macros 命令行创建宏
dosx.exe > dos extender dos扩展
dplaysvr.exe > direct play helper 直接运行帮助
drwatson.exe > dr watson for 2000 fault detector 华生医生错误检测
drwtsn32.exe > dr watson for 2000 viewer and configuration manager 华生医生显示和配置管理
dtcsetup.exe > installs mdtc
dvdplay.exe > windows 2000 dvd player dvd播放
dxdiag.exe > direct-x diagnostics direct-x诊断工具
edlin.exe > line-oriented text editor. 命令行的文本编辑器(历史悠久啊!)
edlin.exe > line-oriented text editor. 命令行的文本编辑器(历史悠久啊!)
esentutl.exe > ms database utility ms数据库工具
eudcedit.exe > private character editor ture type造字程序
eventvwr.exe > windows 2000 event viewer 事件查看器
evnt_cmd_.exe > event to trap translator; configuration tool
evntwin.exe > event to trap translator setup
exe2bin.exe > converts exe to binary format 转换exe文件到二进制
expand.exe > expand files that have been compressed 解压缩
extrac32.exe > cab file extraction utility 解cab工具
fastopen.exe > fastopen tracks the of files on a hard disk and stores the information in memory for fast access. 快速访问在存中的硬盘文件
faxcover.exe > fax cover page editor 传真封面编辑
faxqueue.exe > display fax queue 显示传真队列
faxsend.exe > fax wizard for sending faxes 发送传真向导
faxsvc.exe > starts fax server 启动传真服务
fc.exe > compares two files or sets of files and their differences 比较两个文件的不同
find.exe > searches for a text string in file or files 查找文件中的文本行
findstr.exe > searches for strings in files 查找文件中的行
finger.exe > fingers a user and displays statistics on that user finger一个用户并显示出统计结果
fixmapi.exe > fix mapi files 修复mapi文件
flattemp.exe > enable or disable temporally directories 允许或者禁用临时文件目录
fontview.exe > display fonts in a font file 显示字体文件中的字体
forcedos.exe > forces a file to start in dos mode. 强制文件在dos模式下运行
freecell.exe > popular windows game 空当接龙
ftp.exe > file transfer protocol used to transfer files over a network connection 就是ftp了
gdi.exe > graphic device interface 图形界面驱动
grovel.exe >
grpconv.exe > program manager group convertor 转换程序管理员组
help.exe > displays help for windows 2000 commands 显示帮助
hostname.exe > display hostname for machine. 显示机器的hostname
ie4uinit.exe > ie5 user install tool ie5用户安装工具
ieshwiz.exe > customize folder wizard 自定义文件夹向导
iexpress.exe > create and setup packages for install 穿件安装包
iisreset.exe > restart iis admin service 重启iis服务
internat.exe > keyboard language indicator applet 键盘语言指示器
ipconfig.exe > windows 2000 ip configuration. 察看ip配置
ipsecmon.exe > ip security monitor ip安全监视器
ipxroute.exe > ipx routing and source routing control program ipx路由和源路由控制程序
irftp.exe > setup ftp for wireless communication 无线连接
ismserv.exe > intersite messaging service 安装或者删除service control manager中的服务
jdbgmgr.exe > microsoft debugger for 4的调试器
jetconv.exe > convert a jet engine database 转换jet engine数据库
jetpack.exe > compact jet database. 压缩jet数据库
jview.exe > command-line loader for 的命令行装载者
krnl386.exe > core component for windows 2000 2000的核心组件
label.exe > change label for drives 改变驱动器的卷标
lcwiz.exe > license compliance wizard for local or remote systems. 许可证符合向导
ldifde.exe > ldif cmd line manager ldif目录交换命令行管理
licmgr.exe > terminal server license manager 终端服务许可协议管理
lights.exe > display connection status lights 显示连接状况
llsmgr.exe > windows 2000 license manager 2000许可协议管理
llssrv.exe > start the license server 启动许可协议服务器
lnkstub.exe >
locator.exe > rpc locator 远程定位
lodctr.exe > load perfmon counters 调用性能计数
logoff.exe > log current user off. 注销用户
lpq.exe > displays status of a remote lpd queue 显示远端的lpd打印队列的状态,显示被送到基于unix的服务器的打印任务
lpr.exe > send a print job to a network printer. 重定向打印任务到网络中的打印机。通常用于unix客户打印机将打印任务发送给连接了打印设备的nt的打印机服务器。
lsass.exe > lsa executable and server dll 运行lsa和server的dll
lserver.exe > specifies the new dns domain for the default server 指定默认server新的dns域
macfile.exe > used for managing macfiles 管理macfiles
magnify.exe > used to magnify the current screen 放大镜
makecab.exe > ms cabinet maker 制作cab文件
mdm.exe > machine debug manager 机器调试管理
mem.exe > display current memory stats 显示内存状态
migpwd.exe > migrate passwords. 迁移密码
mmc.exe > microsoft management console 控制台
mnmsrvc.exe > netmeeting remote desktop sharing netmeeting远程桌面共享
mobsync.exe > manage synchronization. 同步目录管理器
mountvol.exe > creates, s, or lists a volume mount point. 创建、删除或列出卷的装入点。
mplay32.exe > ms media player 媒体播放器
mpnotify.exe > multiple provider notification application 多提供者通知应用程序
mq1sync.exe >
mqbkup.exe > ms message queue backup and restore utility 信息队列备份和恢复工具
mqexchng.exe > msmq exchange connector setup 信息队列交换连接设置
mqmig.exe > msmq migration utility 信息队列迁移工具
mqsvc.exe > ?
mrinfo.exe > multicast routing using snmp 使用snmp多点传送路由
mscdexnt.exe > installs mscd (ms cd extensions) 安装mscd
msdtc.exe > dynamic transaction controller console 动态事务处理控制台
msg.exe > send a message to a user local or remote. 发送消息到本地或远程客户
mshta.exe > html application host html应用程序主机
msiexec.exe > starts windows installer program 开始windows安装程序
mspaint.exe > microsoft paint 画板
msswchx.exe >
mstask.exe > task schedule program 任务计划表程序
mstinit.exe > task scheduler setup 任务计划表安装
narrator.exe > program will allow you to have a narrator for reading. microsoft讲述人
nbtstat.exe > displays protocol stats and current tcp/ip connections using nbt 使用 nbt(tcp/ip 上的 netbios)显示协议统计和当前 tcp/ip 连接。
nddeapir.exe > ndde api server side ndde api服务器端
net.exe > net utility 详细用法看/?
net1.exe > net utility d version from ms net的升级版
netdde.exe > network dde will install itself into the background 安装自己到后台
netsh.exe > creates a shell for network information 用于配置和监控 windows 2000 命令行脚本接口。
netstat.exe > displays current connections. 显示协议统计和当前的 tcp/ip 网络连接。
nlsfunc.exe > loads country-specific information 加载特定国家(地区)的信息。windows 2000 和 ms-dos 子系统不使用该命令。接受该命令只是为了与 ms-dos 文件兼容。
notepad.exe > opens windows 2000 notepad 记事本
nslookup.exe > displays information for dns 该诊断工具显示来自域名系统 (dns) 名称服务器的信息。
ntbackup.exe > opens the nt backup utility 备份和故障修复工具
ntbooks.exe > starts windows help utility 帮助
ntdsutil.exe > performs db maintenance of the adsi 完成adsi的db的维护
ntfrs.exe > nt file replication service nt文件复制服务
ntfrsupg.exe >
ntkrnlpa.exe > kernel patch 核心补丁
ntoskrnl.exe > core nt kernel kt的核心
ntsd.exe >
ntvdm.exe > simulates a 16-bit windows environment 模拟16位windows环境
nw16.exe > netware redirector netware转向器
nw.exe > runs netware s 运行netware脚本
odbcad32.exe > odbc 32-bit administrator 32位odbc管理
odbcconf.exe > configure odbc driver's and data source's from command line 命令行配置odbc驱动和数据源
os2.exe > an os/2 warp server (os2 /o) os/2
os2srv.exe > an os/2 warp server os/2
os2ss.exe > an os/2 warp server os/2
osk.exe > on screen keyboard 屏幕键盘
packager.exe > windows 2000 packager manager 对象包装程序
pathping.exe > combination of ping and tracert 包含ping和tracert的程序
pax.exe > is a posix program and path names used as arguments must be specified in posix format. use "//c/users/default" instead of "c:\users\default." 启动便携式存档互换 (pax) 实用程序
pentnt.exe > used to check the pentium for the floating point division error. 检查pentium的浮点错误
perfmon.exe > starts windows performance monitor 性能监视器
ping.exe > packet internet groper 验证与远程计算机的连接
posix.exe > used for backward compatibility with unix 用于兼容unix
print.exe > cmd line used to print files 打印文本文件或显示打印队列的内容。
progman.exe > program manager 程序管理器
proquota.exe > profile quota program
psxss.exe > posix subsystem application posix子系统应用程序
qappsrv.exe > displays the available application terminal servers on the network
在网络上显示终端服务器可用的程序
qprocess.exe > display information about processes local or remote 在本地或远程显示进程的信息(需终端服务) 。
你可以使用这个链接引用该篇文章 http://publishblog.blogchina.com/blog/tb.b?diaryID=623299