整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:

VueJS中使用前端虚拟接口Mock.js

VueJS中使用前端虚拟接口Mock.js


、简介


Mock.js是一个基于NodeJS的用来模拟API的工具,可以方便让前端开发人员在开发过程中用来模拟API接口,方便与后端的联调工作,尤其方便在Vue项目中使用。

官网地址:
http://mockjs.com/
代码托管地址:
https://github.com/nuysoft/Mock

二、上手使用

1. 创建一个Vue项目

可使用脚手架生成,这里为了方便直接使用HBuilderX创建了一个 element-ui 项目 。

2. 安装依赖

npm install vue-resource
npm install mockjs

3. 新建一个mockjs文件,输入代码:

import Mock from 'mockjs';
export default Mock.mock('http://g.cn', {
    'name': '@name',
    'age|1-100': 100,
    'color': '@color'
});

这里@称为占位符。

4. 其它文件内容

App.vue

<template>
  <div id="app">
    <img src="./assets/logo.png">
    <div>
      <el-button @click="startHacking">Start</el-button>
    </div>
  </div>
</template>

<script>
    
    import Vue from 'vue'
export default {
  methods: {
    startHacking () {
        Vue.http.get('http://mysite.com').then(
            (successData)=> {console.log(successData.body);},
            (fileData)=> {console.log(fileData);}
      )
    }
  }
}
</script>

<style>
#app {
  font-family: Helvetica, sans-serif;
  text-align: center;
}
</style>

main.js

import Vue from 'vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import App from './App.vue'
import VueResource from 'vue-resource'

require('./mock')

Vue.use(ElementUI)
Vue.use(VueResource)

new Vue({
  el: '#app',
  render: h=> h(App)
})

项目目录如下:

三、运行测试

npm run dev


每次点击按钮,在控制台都会显示随机的结果出来。

四、 其它一些常用语法

1. 占位符

占位符类型占位符方法Basicboolean, natural, integer, float, character, string, range, date, time, datetime, nowImageimage, dataImageColorcolorTextparagraph, sentence, word, title, cparagraph, csentence, cword, ctitleNamefirst, last, name, cfirst, clast, cnameWeburl, domain, email, ip, tldAddressarea, regionHelpercapitalize, upper, lower, pick, shuffleMiscellaneousguid, id

占位符不满足使用的时候还可以进行扩展。

2. 模板

// 生成随机长度字符
Mock.mock({
  "string|1-10": "★"
})
// 生成固定长度字符
Mock.mock({
  "string|3": "★★★"
})
// 生成1-100之间的随机数字
Mock.mock({
  "number|1-100": 100
})
// 生成随机小数
Mock.mock({
  "number|1-100.1-10": 1
})
// 生成随机布尔值
Mock.mock({
  "boolean|1": true
})
// 从键值对里随机取两个值
Mock.mock({
  "object|2": {
    "310000": "上海市",
    "320000": "江苏省",
    "330000": "浙江省",
    "340000": "安徽省"
  }
})
// 从数组里随机取一个值
Mock.mock({
  "array|1": [
    "AMD",
    "CMD",
    "UMD"
  ]
})

更多示例可到官网: http://mockjs.com/examples.html 查看。

P Software TCC 32.00.14 (x64) 简介 TCC 是我们的控制台模式 Windows 命令 shell(以前称为 4NT)。TCC 是 CMD 命令行(默认的 Windows 命令提示符)的替代品。TCC 是 CMD 的超集,具有 250 个内部命令(CMD 不到 40 个)、700 多个内部变量和函数,并对现有 CMD 命令进行了数百项增强。


TCC 可与您现有的命令行应用程序和批处理文件一起使用,但在命令行编辑和批处理脚本方面提供了重大改进,并为您的控制台窗口增加了成千上万个新功能。

优势 TCC 是与您现有的 CMD 命令和批处理文件兼容的 CMD 替代命令处理器,同时添加了成千上万个新功能。您会立即变得更加高效,而且可以按照自己的步调学习和添加 TCC 的新功能。 使用集成的编辑器和批处理文件调试器,您可以在短短时间内创建和调试批处理脚本。 集成且熟悉的环境意味着您可以立即更有效地处理交互式命令提示符和批处理文件开发任务。 一致的语法减少了学习和开发时间。 全面的帮助(包括针对命令行语法的上下文敏感弹出式帮助)可加快您的开发速度,减少语法错误。

JP Software TCC 32.00.14 (x64) 的特色功能包括:

超过250个内部命令:比默认的CMD拥有的不到40个内部命令更为强大和丰富。

700多个内部变量和函数:提供更多的内部变量和函数,增强了脚本编写的灵活性。

改进的命令行编辑和批处理脚本功能:使命令行编辑和批处理脚本编写更加高效和便捷。

与现有命令行应用程序和批处理文件兼容:可与现有的命令行工具和脚本文件无缝集成。

成千上万的新功能:为控制台窗口增加了大量新功能,提升了用户体验和工作效率。

集成的编辑器和批处理文件调试器:帮助用户在短时间内创建和调试批处理脚本。

提供全面的帮助和上下文敏感的弹出式帮助:加快开发速度,减少语法错误,提升用户学习和使用的便利性。

TCC拥有超过250个内部命令,而CMD只有不到40个内部命令,这种强大和丰富的功能背后基于了TCC的一些基础技术原理:

  1. 扩展性架构:TCC采用了高度可扩展的架构设计,允许轻松添加新的内部命令,这使得TCC可以不断地增加新功能和命令,从而提供更为丰富和灵活的功能集。
  2. 内部变量和函数:TCC内置了700多个内部变量和函数,这些变量和函数能够帮助用户更灵活地处理数据和执行复杂的操作,从而增强了脚本编写的灵活性和功能性。
  3. 高效的命令解析和执行引擎:TCC内置了高效的命令解析和执行引擎,能够快速准确地解析和执行各种命令,这使得TCC在处理大量内部命令时能够保持高效和稳定。
  4. 持续优化和改进:作为一款商业软件,TCC团队不断进行技术优化和改进,以满足用户对功能和性能方面的需求,从而不断提升TCC作为命令处理器的能力和功能。

TCC通过其扩展性架构、内置变量和函数、高效的执行引擎以及持续优化等技术原理,实现了超过250个内部命令的强大和丰富功能。

TCC拥有700多个内部变量和函数,这些内部变量和函数的存在基于一些基础技术原理,包括:

  1. 数据处理和管理:TCC内部变量和函数提供了丰富的数据处理和管理功能,包括字符串处理、数学运算、文件操作等。这些功能能够帮助用户更加灵活地处理数据,在脚本编写中起到关键作用。
  2. 环境配置和控制:内部变量可以用于控制和配置TCC的运行环境,例如设置默认路径、定义别名等。函数则可以执行特定的操作,如调用系统命令、执行特定算法等,从而增强了对环境的控制和配置能力。
  3. 扩展性和可定制性:TCC的内部变量和函数设计具有扩展性和可定制性,用户可以根据自己的需求定义新的变量和函数,或者利用现有的内部函数组合实现复杂的逻辑,从而增强了脚本的灵活性和功能性。
  4. 脚本编写的便捷性:通过内部变量和函数,用户可以快速访问和处理各种数据,并执行各种操作,使脚本编写变得更加便捷和高效。内部变量和函数的存在大大简化了脚本编写过程,提升了用户的工作效率。

TCC的700多个内部变量和函数通过数据处理和管理、环境配置和控制、扩展性和可定制性等技术原理,增强了脚本编写的灵活性和功能性,使用户能够更加方便地编写复杂的脚本并实现各种操作。

改进的命令行编辑和批处理脚本功能可以通过以下基础技术原理来实现更高效和便捷的命令行编辑和脚本编写:

  1. 交互式命令行编辑:提供交互式的命令行编辑功能,包括自动补全、历史记录、多行编辑等。这些功能可以通过使用类似GNU Readline库的技术来实现,使用户能够更快速地输入和编辑命令,减少输入错误和提高效率。
  2. 脚本语言功能增强:增强批处理脚本语言的功能,包括新增控制结构、内置函数、异常处理机制等。通过引入类似于条件语句、循环结构、函数定义等功能,可以使脚本编写更加灵活和功能丰富。
  3. 即时反馈和调试工具:提供即时反馈和调试工具,包括错误提示、变量跟踪、调试器等。这些工具可以帮助用户发现脚本中的错误并进行调试,提高脚本编写的准确性和效率。
  4. 集成开发环境支持:集成开发环境(IDE)提供了更强大的编辑和调试功能,包括语法高亮、代码自动完成、调试器等。通过集成开发环境的支持,用户可以在更友好的界面下编写和调试脚本,提升工作效率。
  5. 脚本模板和代码片段:提供脚本模板和代码片段,帮助用户快速编写常用的脚本结构和代码块。这可以通过引入代码模板库或者自定义代码片段功能来实现,提高了脚本编写的速度和一致性。

通过采用交互式命令行编辑、增强脚本语言功能、即时反馈和调试工具、集成开发环境支持以及脚本模板和代码片段等基础技术原理,可以实现改进的命令行编辑和批处理脚本功能,使命令行操作和脚本编写更加高效和便捷。

要实现与现有命令行应用程序和批处理文件的兼容性,并实现无缝集成,可以考虑以下基础技术原理:

  1. 标准输入输出和管道:利用标准输入(stdin)和输出(stdout)、错误输出(stderr)以及管道(|)等概念来实现与其他命令行工具的数据交换。这样可以确保新的命令行编辑工具或脚本能够与现有工具协同工作,实现数据流的连续传递和处理。
  2. 环境变量和参数传递:通过支持环境变量和命令行参数的传递,新的工具可以获取并使用来自外部环境的信息。这样可以使其与现有脚本文件和命令行应用程序进行交互,实现数据共享和信息传递。
  3. 脚本语言解释器:使用通用的脚本语言(如Bash、Python等)作为基础,可以实现与现有脚本文件的兼容性。通过在新工具中嵌入相应的脚本语言解释器,可以执行现有脚本文件,并与其进行交互。
  4. 系统调用和API接口:通过调用系统提供的API接口或者系统调用,新的工具可以与操作系统及其提供的服务进行交互。这样可以确保新工具在与系统级别的操作时与现有命令行工具兼容。
  5. 脚本文件格式兼容性:保持脚本文件的格式兼容性,例如遵循相同的脚本语法和文件结构规范。这样可以确保新工具可以正确解析和执行现有脚本文件,实现无缝集成。

通过利用标准输入输出、环境变量传递、脚本语言解释器、系统调用和API接口以及脚本文件格式兼容性等基础技术原理,可以实现新的命令行编辑工具或批处理文件与现有命令行应用程序和脚本文件的无缝集成和兼容性。

要实现集成的编辑器和批处理文件调试器,以帮助用户在短时间内创建和调试批处理脚本,可以考虑以下基础技术原理:

  1. 语法高亮和代码提示:通过实现基于文本编辑器的语法高亮和代码提示功能,可以使用户更容易地识别不同的命令和语法结构,并快速编写出正确的脚本内容。这可以通过使用前端技术如JavaScript和CSS来实现。
  2. 智能代码补全:利用智能代码补全技术,根据用户输入的前缀自动匹配可能的命令、参数或变量,并给予用户选择。这可以通过构建代码分析引擎来实现,以便提供与当前上下文相关的建议。
  3. 调试器和断点功能:集成调试器并实现断点功能,使用户能够逐步执行脚本、观察变量值和程序状态,并在需要时暂停执行以进行调试。这可以通过构建调试器后端和与编辑器交互的通信协议来实现。
  4. 错误提示和建议:当用户输入存在语法错误或潜在问题时,编辑器应能够及时提供错误提示和建议,以帮助用户快速发现和修复错误。这可以通过解析用户输入并与语法规则进行比对来实现。
  5. 集成版本控制系统:通过集成版本控制系统(如Git)来跟踪脚本文件的修改历史,并提供版本对比和回滚功能,以确保脚本文件的安全和可追溯性。
  6. 模拟执行环境:在编辑器中模拟执行环境,使用户能够在不执行脚本的情况下查看预期的输出结果,从而帮助用户验证脚本逻辑的正确性。

通过利用语法高亮和代码提示、智能代码补全、调试器和断点功能、错误提示和建议、集成版本控制系统以及模拟执行环境等基础技术原理,可以实现集成的编辑器和批处理文件调试器,从而帮助用户在短时间内创建和调试批处理脚本。

md命令大全

开始→运行→CMD→键入以下命令即可:

gpedit.msc-----组策略 sndrec32-------录音机

Nslookup-------IP地址侦测器 explorer-------打开资源管理器

logoff---------注销命令 tsshutdn-------60秒倒计时关机命令

lusrmgr.msc----本机用户和组 services.msc---本地服务设置

oobe/msoobe /a----检查XP是否激活 notepad--------打开记事本

cleanmgr-------垃圾整理 net start messenger----开始信使服务

compmgmt.msc---计算机管理 net stop messenger-----停止信使服务

conf-----------启动netmeeting dvdplay--------DVD播放器

charmap--------启动字符映射表 diskmgmt.msc---磁盘管理实用程序

calc-----------启动计算器 dfrg.msc-------磁盘碎片整理程序

chkdsk.exe-----Chkdsk磁盘检查 devmgmt.msc--- 设备管理器

regsvr32 /u *.dll----停止dll文件运行 drwtsn32------ 系统医生

rononce -p ----15秒关机 dxdiag---------检查DirectX信息

regedt32-------注册表编辑器 Msconfig.exe---系统配置实用程序

rsop.msc-------组策略结果集 mem.exe--------显示内存使用情况

regedit.exe----注册表 winchat--------XP自带局域网聊天

progman--------程序管理器 winmsd---------系统信息

perfmon.msc----计算机性能监测程序 winver---------检查Windows版本

sfc /scannow-----扫描错误并复原 winipcfg-------IP配置

taskmgr-----任务管理器(2000/xp/2003) command--------cmd

fsmgmt.msc 共享文件夹 netstat -an----查看端口

osk 屏幕键盘 install.asp----修改注册网页

eventvwr.msc 事件查看器

secpol.msc 本地安全设置

services.msc 服务

2K

accwiz.exe > 辅助工具向导

acsetups.exe > acs setup dcom server executable

actmovie.exe > 直接显示安装工具

append.exe > 允许程序打开制定目录中的数据

arp.exe > 显示和更改计算机的ip与硬件物理地址的对应列表

at.exe > 计划运行任务

atmadm.exe > 调用管理器统计

attrib.exe > 显示和更改文件和文件夹属性

autochk.exe > 检测修复文件系统

autoconv.exe > 在启动过程中自动转化系统

autofmt.exe > 在启动过程中格式化进程

autolfn.exe > 使用长文件名格式

bootok.exe > boot acceptance application for registry

bootvrfy.exe > 通报启动成功

cacls.exe > 显示和编辑acl

calc.exe > 计算器

cdplayer.exe > cd播放器

change.exe > 与终端服务器相关的查询

charmap.exe > 字符映射表

chglogon.exe > 启动或停用会话记录

chgport.exe > 改变端口(终端服务)

chgusr.exe > 改变用户(终端服务)

chkdsk.exe > 磁盘检测程序

chkntfs.exe > 磁盘检测程序

cidaemon.exe > 组成ci文档服务

cipher.exe > 在ntfs上显示或改变加密的文件或目录

cisvc.exe > 索引内容

ckcnv.exe > 变换cookie

cleanmgr.exe > 磁盘清理

cliconfg.exe > sql客户网络工具

clipbrd.exe > 剪贴簿查看器

clipsrv.exe > 运行clipboard服务

clspack.exe > 建立系统文件列表清单

cluster.exe > 显示域的集群

_cmd_.exe > 没什么好说的!

cmdl32.exe > 自动下载连接管理

cmmgr32.exe > 连接管理器

cmmon32.exe > 连接管理器监视

cmstp.exe > 连接管理器配置文件安装程序

comclust.exe > 集群

comp.exe > 比较两个文件和文件集的内容*

compact.exe > 显示或改变ntfs分区上文件的压缩状态

conime.exe > ime控制台

control.exe > 控制面板

convert.exe > 转换文件系统到ntfs

convlog.exe > 转换iis日志文件格式到ncsa格式

cprofile.exe > 转换显示模式

cscript.exe > 较本宿主版本

csrss.exe > 客户服务器runtime进程

csvde.exe > 日至格式转换程序

dbgtrace.exe > 和terminal server相关

dcomcnfg.exe > dcom配置属性

dcphelp.exe > ?

dcpromo.exe > ad安装向导

ddeshare.exe > dde共享

ddmprxy.exe >

debug.exe > 就是debug啦!

dfrgfat.exe > fat分区磁盘碎片整理程序

dfrgntfs.exe > ntfs分区磁盘碎片整理程序

dfs_cmd_.exe > 配置一个dfs树

dfsinit.exe > 分布式文件系统初始化

dfssvc.exe > 分布式文件系统服务器

diantz.exe > 制作cab文件

diskperf.exe > 磁盘性能计数器

dllhost.exe > 所有com+应用软件的主进程

dllhst3g.exe >

dmadmin.exe > 磁盘管理服务

dmremote.exe > 磁盘管理服务的一部分

dns.exe > dns applications dns

doskey.exe > 命令行创建宏

dosx.exe > dos扩展

dplaysvr.exe > 直接运行帮助

drwatson.exe > 华生医生错误检测

drwtsn32.exe > 华生医生显示和配置管理

dtcsetup.exe > installs mdtc

dvdplay.exe > dvd播放

dxdiag.exe > direct-x诊断工具

edlin.exe > 命令行的文本编辑器(历史悠久啊!)

edlin.exe > 命令行的文本编辑器(历史悠久啊!)

esentutl.exe > ms数据库工具

eudcedit.exe > type造字程序

eventvwr.exe > 事件查看器

evnt_cmd_.exe > event to trap translator; configuration tool

evntwin.exe > event to trap translator setup

exe2bin.exe > 转换exe文件到二进制

expand.exe > 解压缩

extrac32.exe > 解cab工具

fastopen.exe > 快速访问在内存中的硬盘文件

faxcover.exe > 传真封面编辑

faxqueue.exe > 显示传真队列

faxsend.exe > 发送传真向导

faxsvc.exe > 启动传真服务

fc.exe > 比较两个文件的不同

find.exe > 查找文件中的文本行

findstr.exe > 查找文件中的行

finger.exe > 一个用户并显示出统计结果

fixmapi.exe > 修复mapi文件

flattemp.exe > 允许或者禁用临时文件目录

fontview.exe > 显示字体文件中的字体

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 conne

ction 就是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 manage

r中的服务

jdbgmgr.exe > microsoft debugger for java 4 java4的调试器

jetconv.exe > convert a jet engine database 转换jet engine数据库

jetpack.exe > compact jet database. 压缩jet数据库

jview.exe > command-line loader for java java的命令行装载者

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 指定默认se

rver新的dns域

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 specif

ied in posix format. use "//c/users/default" instead of "c:usersdefault."

启动便携式存档互换 (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 net

work

在网络上显示终端服务器可用的程序

qprocess.exe > display information about processes local or remote 在本地或远

程显示进程的信息(需终端服务)

query.exe > query termserver user process and sessions 查询进程和对话

quser.exe > display information about a user logged on 显示用户登陆的信息(需

终端服务)

qwinsta.exe > display information about terminal sessions. 显示终端服务的信息

rasadmin.exe > start the remote access admin service 启动远程访问服务

rasautou.exe > creates a ras connection 建立一个ras连接

rasdial.exe > dial a connection 拨号连接

ras.exe > starts a ras connection 运行ras连接

rcp.exe > copies a file from and to a rcp service. 在 windows 2000 计算机和运

行远程外壳端口监控程序 rshd 的系统之间复制文件

rdpclip.exe > rdpclip allows you to copy and paste files between a terminal

session and client console session. 再终端和本地复制和粘贴文件

recover.exe > recovers readable information from a bad or defective disk 从坏

的或有缺陷的磁盘中恢复可读取的信息。

redir.exe > starts the redirector service 运行重定向服务

regedt32.exe > 32-bit register service 32位注册服务

regini.exe > modify registry permissions from within a script 用脚本修改注册

许可

register.exe > register a program so it can have special execution character

istics. 注册包含特殊运行字符的程序

regsvc.exe >

regsvr32.exe > registers and unregister's dll's. as to how and where it regi

ster's them i dont know. 注册和反注册dll

regtrace.exe > options to tune debug options for applications failing to dum

p trace statements

trace 设置

regwiz.exe > registration wizard 注册向导

remrras.exe >

replace.exe > replace files 用源目录中的同名文件替换目标目录中的文件。

reset.exe > reset an active section 重置活动部分

rexec.exe > runs commands on remote hosts running the rexec service. 在运行

rexec 服务的远程计算机上运行命令。rexec 命令在执行指定命令前,验证远程计算机

上的用户名,只有安装了 tcp/ip 协议后才可以使用该命令。

risetup.exe > starts the remote installation service wizard. 运行远程安装向导

服务

route.exe > display or edit the current routing tables. 控制网络路由表

routemon.exe > no longer supported 不再支持了!

router.exe > router software that runs either on a dedicated dos or on an os

. 检查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 net

work

在网络上显示终端服务器可用的程序

qprocess.exe > display information about processes local or remote 在本地或远

程显示进程的信息(需终端服务)

query.exe > query termserver user process and sessions 查询进程和对话

quser.exe > display information about a user logged on 显示用户登陆的信息(需

终端服务)

qwinsta.exe > display information about terminal sessions. 显示终端服务的信息

rasadmin.exe > start the remote access admin service 启动远程访问服务

rasautou.exe > creates a ras connection 建立一个ras连接

rasdial.exe > dial a connection 拨号连接

ras.exe > starts a ras connection 运行ras连接

rcp.exe > copies a file from and to a rcp service. 在 windows 2000 计算机和运

行远程外壳端口监控程序 rshd 的系统之间复制文件

rdpclip.exe > rdpclip allows you to copy and paste files between a terminal

session and client console session. 再终端和本地复制和粘贴文件

recover.exe > recovers readable information from a bad or defective disk 从坏

的或有缺陷的磁盘中恢复可读取的信息。

redir.exe > starts the redirector service 运行重定向服务

regedt32.exe > 32-bit register service 32位注册服务

regini.exe > modify registry permissions from within a script 用脚本修改注册

许可

register.exe > register a program so it can have special execution character

istics. 注册包含特殊运行字符的程序

regsvc.exe >

regsvr32.exe > registers and unregister's dll's. as to how and where it regi

ster's them i dont know. 注册和反注册dll

regtrace.exe > options to tune debug options for applications failing to dum

p trace statements

trace 设置

regwiz.exe > registration wizard 注册向导

remrras.exe >

replace.exe > replace files 用源目录中的同名文件替换目标目录中的文件。

reset.exe > reset an active section 重置活动部分

rexec.exe > runs commands on remote hosts running the rexec service. 在运行

rexec 服务的远程计算机上运行命令。rexec 命令在执行指定命令前,验证远程计算机

上的用户名,只有安装了 tcp/ip 协议后才可以使用该命令。

risetup.exe > starts the remote installation service wizard. 运行远程安装向导

服务

route.exe > display or edit the current routing tables. 控制网络路由表

routemon.exe > no longer supported 不再支持了!

router.exe > router software that runs either on a dedicated dos or on an os

/2 system. route软件在 dos或者是os/2系统

rsh.exe > runs commands on remote hosts running the rsh service 在运行 rsh 服

务的远程计算机上运行命令

rsm.exe > mounts and configures remote system media 配置远程系统媒体

rsnotify.exe > remote storage notification recall 远程存储通知回显

rsvp.exe > resource reservation protocol 源预约协议

runas.exe > run a program as another user 允许用户用其他权限运行指定的工具和

程序

rundll32.exe > launches a 32-bit dll program 启动32位dll程序

runonce.exe > causes a program to run during startup 运行程序再开始菜单中

rwinsta.exe > reset the session subsystem hardware and software to known ini

tial values 重置会话子系统硬件和软件到最初的值

savedump.exe > does not write to e:winntuser.dmp 不写入user.dmp中

scardsvr.exe > smart card resource management server 子能卡资源管理服务器

schupgr.exe > it will read the schema update files (.ldf files) and upgrade

the schema. (part of adsi) 读取计划更新文件和更新计划

secedit.exe > starts security editor help 自动安全性配置管理

services.exe > controls all the services 控制所有服务

sethc.exe > set high contrast - changes colours and display mode logoff to s

et it back to normal 设置高对比

setreg.exe > shows the software publishing state key values 显示软件发布的国

家语言

setup.exe > gui box prompts you to goto control panel to configure system co

mponents 安装程序(转到控制面板)

setver.exe > set version for files 设置 ms-dos 子系统向程序报告的 ms-dos 版本

sfc.exe > system file checker test and check system files for integrity 系统

文件检查

sfmprint.exe > print services for macintosh 打印macintosh服务

sfmpsexe.exe >

sfmsvc.exe >

shadow.exe > monitor another terminal services session. 监控另外一台中端服务

器会话

share.exe > windows 2000 和 ms-dos 子系统不使用该命令。接受该命令只是为了与

ms-dos 文件兼容

shmgrate.exe >

shrpubw.exe > create and share folders 建立和共享文件夹

sigverif.exe > file signature verification 文件签名验证

skeys.exe > serial keys utility 序列号制作工具

smlogsvc.exe > performance logs and alerts 性能日志和警报

smss.exe >

sndrec32.exe > starts the windows sound recorder 录音机

sndvol32.exe > display the current volume information 显示声音控制信息

snmp.exe > simple network management protocol used for network mangement 简单

网络管理协议

snmptrap.exe > utility used with snmp snmp工具

sol.exe > windows solitaire game 纸牌

sort.exe > compares files and folders 读取输入、排序数据并将结果写到屏幕、文

件和其他设备上

SPOOLSV.EXE > Part of the spooler service for printing 打印池服务的一部分

sprestrt.exe >

srvmgr.exe > Starts the Windows Server Manager 服务器管理器

stimon.exe > WDM StillImage- > Monitor

stisvc.exe > WDM StillImage- > Service

subst.exe > Associates a path with a drive letter 将路径与驱动器盘符关联

svchost.exe > Svchost.exe is a generic host process name for services that a

re run from dynamic-link libraries (DLLs). DLL得主进程

syncapp.exe > Creates Windows Briefcase. 创建Windows文件包

sysedit.exe > Opens Editor for 4 system files 系统配置编辑器

syskey.exe > Encrypt and secure system database NT账号数据库按群工具

sysocmgr.exe > Windows 2000 Setup 2000安装程序

systray.exe > Starts the systray in the lower right corner. 在低权限运行syst

ray

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, deletes, 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. Micros

oft讲述人

nbtstat.exe > Displays protocol stats and current TCP/IP connections using N

BT 使用 NBT(TCP/IP 上的 NetBIOS)显示协议统计和当前 TCP/IP 连接。

nddeapir.exe > NDDE API Server side NDDE API服务器端

net.exe > Net Utility 详细用法看/?

net1.exe > Net Utility updated version from MS Net的升级版

netdde.exe > Network DDE will install itself into the background 安装自己到后

netsh.exe > Creates a shell for network information 用于配置和监控 Windows 2

000 命令行脚本接口。

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转向器

nwscript.exe > runs netware scripts 运行Netware脚本

odbcad32.exe > ODBC 32-bit Administrator 32位ODBC管理

odbcconf.exe > Configure ODBC driver's and data source's from command line 命

令行配置ODBC驱动和数据源

taskman.exe > Task Manager 任务管理器

taskmgr.exe > Starts the Windows 2000 Task Manager 任务管理器

tcmsetup.exe > telephony client wizard 电话服务客户安装

tcpsvcs.exe > TCP Services TCP服务

.exe > Telnet Utility used to connect to Telnet Server

termsrv.exe > Terminal Server 终端服务

tftp.exe > Trivial FTP 将文件传输到正在运行 TFTP 服务的远程计算机或从正在运行

TFTP 服务的远程计算机传输文件

tftpd.exe > Trivial FTP Daemon

themes.exe > Change Windows Themes 桌面主题

tlntadmn.exe > Telnet Server Administrator Telnet服务管理

tlntsess.exe > Display the current Telnet Sessions 显示目前的Telnet会话

tlntsvr.exe > Start the Telnet Server 开始Telnet服务

tracert.exe > Trace a route to display paths 该诊断实用程序将包含不同生存时间

(TTL) 值的 Internet 控制消息协议 (ICMP) 回显数据包发送到目标,以决定到达目标

采用的路由

tsadmin.exe > Terminal Server Administrator 终端服务管理器

tscon.exe > Attaches a user session to a terminal session. 粘贴用户会话到终端

对话

tsdiscon.exe > Disconnect a user from a terminal session 断开终端服务的用户

tskill.exe > Kill a Terminal server process 杀掉终端服务

tsprof.exe > Used with Terminal Server to query results. 用终端服务得出查询结

tsshutdn.exe > Shutdown the system 关闭系统

unlodctr.exe > Part of performance monitoring 性能监视器的一部分

upg351db.exe > Upgrade a jet database 升级Jet数据库

ups.exe > UPS service UPS服务

user.exe > Core Windows Service Windows核心服务

userinit.exe > Part of the winlogon process Winlogon进程的一部分

usrmgr.exe > Start the windows user manager for domains 域用户管理器

utilman.exe > This tool enables an administrator to designate which computers automatically open accessibility tools when Windows 2000 starts. 指定2000启动时自动打开那台机器

verifier.exe > Driver Verifier Manager Driver Verifier Manager

vwipxspx.exe > Loads IPX/SPX VDM 调用IPX/SPX VDM

w32tm.exe > Windows Time Server 时间服务器

wextract.exe > Used to extract windows files 解压缩Windows文件

winchat.exe > Opens Windows Chat 打开Windows聊天

winhlp32.exe > Starts the Windows Help System 运行帮助系统

winlogon.exe > Used as part of the logon process. Logon进程的一部分

winmine.exe > windows Game 挖地雷

winmsd.exe > Windows Diagnostic utility 系统信息

wins.exe > Wins Service Wins服务

winspool.exe > Print Routing 打印路由

winver.exe > Displays the current version of Windows 显示Windows版本

wizmgr.exe > Starts Windows Administration Wizards Windows管理向导

wjview.exe > Command line loader for Java 命令行调用Java

wowdeb.exe > . For starters, the 32-bit APIs require that the WOWDEB.EXE tas

k runs in the target debugee's VM 启动时,32位API需要

wowexec.exe > For running Windows over Windows Applications 在Windows应用程序

上运行Windows

wpnpinst.exe > ?

write.exe > Starts MS Write Program 写字板

wscript.exe > Windows Scripting Utility 脚本工具

wupdmgr.exe > Starts the Windows update Wizard (Internet) 运行Windows升级向导

xcopy.exe > 复制文件和目录,包括子目录