http://blog.163.com/lixunhuan@126/blog/static/122060620075124142658/ CMD命令大全 net use \\ip\ipc$ " " /user:" " 建立IPC空链接 net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: \\ip\c$ "密码" /user:"用户名&qu…
设置全屏: To make all bat files fullscreen: reg add HKCU\Console\ /v Fullscreen /t REG_DWORD /d /f To make all bat files not full screen: reg add HKCU\Console\ /v Fullscreen /t REG_DWORD /d /f 还有一种方法可以设置 bat 屏幕的大小: mode con cols=X lines=Y 设置cmd窗口的标题 titl…
windows 文件操作命令 cd 切换文件目录 dir 显示文件目录内容 md 创建文件夹 rd 删除文件夹 copy 拷贝文件 move 移动文件 del 删除文件 replace 替换文件 mklinnk 创建符号链接 attrib 查看或修改文件或目录属性 type 查看文件内容 more 逐屏显示文件内容 系统执行命令 cls 清除屏幕 ver 显示windows系统版本号 winver 弹窗显示当前windows系统信息 time 显示或设置当前时间 net start 查看开启了哪…
比较符号(不能用 < , >) The reason operators like > are not used is because they have special meanings in shell scripts. The > is used to redirect output; < used to redirect input, etc. Operator | Description EQU | equal to NEQ | not equal to LSS |…