常用windows运行命令
mstsc---远程桌面连接regedit.exe---打开注册表services.msc---打开服务管理器rsop.msc---组策略结果集taskmgr---任务管理器eventvwr---事件查看器gpedit.msc---本地组策略编辑器osk---打开屏幕键盘calc---启动计算器write---打开写字板notepad---打开记事本winver---查看windows版本msconfig.exe---系统配置实用程序devmgmt.msc---打开设备管理器mspaint---画图板lusrmgr.msc---本机用户和组fsmgmt.msc---共享文件管理器logoff---注销计算机dcomcnfg---打开系统组件服务secpol.msc---打开本地安全策略compmgmt.msc---计算机管理perfmon.msc---计算机性能监测程序cleanmgr---打开磁盘清理工具diskmgmt.msc---磁盘管理器hostname---查看主机名ipconfig---查看IP配置信息dvdplay---DVD播放器tsshutdn----60秒倒计时关机命令shutdown -s -t 600 ---10分钟后关闭计算机(-s表示关闭,-t时间,-r重启,-l注销) shutdown -a 取消刚才的操作
=========================
net user---查看当前系统有哪些用户net user 用户名---查看用户属性net start---查看开启了哪些服务net time \\目标IP---查看指定IP时间net share ---查看本地开启的共享 netstat -an ---相关开启了哪些窗口及连接情况 netstat -s ---查看正在使用的所有协议的使用情况……
========================文件及目录操作命令dir ---查看当前目录,类似linux下的ls命令。md 目录名----创建目录cd ---进入目录C:\Users\Administrator\Desktop>cd /d e: ---进入E盘,使用CD命令要加参数/D。 可者如下直接输入e:回车即可。C:\Users\Administrator\Desktop>e:E:\>c: ----要进入某一磁盘,直接输入盘符加冒号,回车即可。C:\Users\Administrator\Desktop>cd /d d:/appd:\app>push f:\share ----使用pushd命令直接到f:\share目录下。tree c:\ ----以tree方式显示驱动器或路径目录结构
tree c:\test /F ---显示每个文件夹中文件的名称type c:\test.txt ---显示文件的内容====================Microsoft Windows [版本 6.1.7600]版权所有 (c) 2009 Microsoft Corporation。保留所有权利。C:\Users\Administrator>cd /d E:E:\>dir--------------------查看当前目录内容 驱动器 E 中的卷没有标签。 卷的序列号是 0006-5BAA E:\ 的目录2014/11/19 23:22 <DIR> DB2
2014/11/19 23:03 <DIR> LDAP资料2014/11/19 23:26 <DIR> linux资料……E:\>md test-------------------------创建test目录E:\>cd test---------------------进入test目录
E:\test>dir--------------------显示test目录下的内容
驱动器 E 中的卷没有标签。 卷的序列号是 0006-5BAAE:\test 的目录
2014/11/23 16:14 <DIR> .
2014/11/23 16:14 <DIR> .. 0 个文件 0 字节 2 个目录 89,755,025,408 可用字节E:\test>echo this is a test of dos cmd to > testCreateFile.txt -------------------使用echo命令利用管道把内容输出到文件。
DOS下没有提供直接创建文件的命令,但可以使用管道操作来创建文件,比如: dir>a.txt 此命令将dir的执行结果写入并保存到文件a.txt中。E:\test>echo test2 > test2.txt
E:\test>echo test3 > test3.txt
E:\test>dir
驱动器 E 中的卷没有标签。 卷的序列号是 0006-5BAAE:\test 的目录
2014/11/23 16:33 <DIR> .
2014/11/23 16:33 <DIR> ..2014/11/23 16:33 8 test2.txt2014/11/23 16:33 8 test3.txt2014/11/23 16:23 31 testCreateFile.txt 3 个文件 47 字节 2 个目录 89,755,025,408 可用字节E:\test>type test2.txt ---------------------使用type命令查看文件内容
test2E:\test>md testdir -------------------------创建目录testdir
E:\test>tree /f --------------------------以tree方式显示每个文件夹中文件的名称
文件夹 PATH 列表卷序列号为 0006-5BAAE:.│ test2.txt│ test3.txt│ testCreateFile.txt│└─testdir----------------------------返回上一目录及进入指定目录
E:\test>E:\test\testdir>e:
E:\test\testdir>cd ..
E:\test>cd ..
E:\>cd test/testdir
E:\test\testdir>
-------------------------------使用pushd命令或是/d参数进入指定目录E:\test\testdir>pushd f:F:\>cd /d c:
C:\Users\Administrator>cd /d e:/test
e:\test>
e:\test>rd testdir-----------------------使用rd删除空目录,不能删除非空目录,不能删除当前子目录。
e:\test>copy test2.txt e:\test\testdir2\ --------------------使用copy命令复制文件
已复制 1 个文件。e:\test\testdir2 的目录
2014/11/23 16:46 <DIR> .
2014/11/23 16:46 <DIR> ..2014/11/23 16:33 8 test2.txt2014/11/23 16:45 14 test32014/11/23 16:46 5 test4.txt 3 个文件 27 字节 2 个目录 89,755,025,408 可用字节e:\test\testdir2>del test3 test2.txt ----------------------使用del命令删除文件
e:\test\testdir2>dir
驱动器 E 中的卷没有标签。 卷的序列号是 0006-5BAAe:\test\testdir2 的目录
2014/11/23 16:46 <DIR> .
2014/11/23 16:46 <DIR> ..2014/11/23 16:46 5 test4.txt 1 个文件 5 字节 2 个目录 89,755,025,408 可用字节 e:\test\testdir2>ren test4.txt testtest.txt -------------------使用ren命令重命令文件e:\test\testdir2>dir
驱动器 E 中的卷没有标签。 卷的序列号是 0006-5BAAe:\test\testdir2 的目录
2014/11/23 16:48 <DIR> .
2014/11/23 16:48 <DIR> ..2014/11/23 16:46 5 testtest.txt 1 个文件 5 字节 2 个目录 89,755,025,408 可用字节e:\test\testdir2>
e:\test>xcopy testdir3 e:\test\testdir2\ --------------使用xcopy命令复制目录及其目录下所有文件
testdir3\test111.txt复制了 1 个文件e:\test>move test2.txt testdir2\ ---------------使用move命令来移动文件(剪切)
移动了 1 个文件。===================
C:\Users\Administrator>pushd f:\music
f:\music>cd /d c:\Users\Administrator
c:\Users\Administrator>
-----------------------
c:\Users\Administrator>netstat -an | find "3389"
TCP 192.168.1.100:58878 192.168.1.202:3389 ESTABLISHED