文 库
库中万物皆非宝,临到用时价千斤!
posts - 13,comments - 3,trackbacks - 0

07 2011 档案
【转】系统管理类DOS命令汇总
摘要: 转自:http://zhidao.baidu.com/question/98667271.htmlnet use \\ip\ipc$ " " /user:" " 建立IPC空链接 net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: net use h: \\ip\c$ 登陆后映射对方C:到本地为H: net use \\ip\ipc阅读全文
posted @ 2011-07-27 00:23 Cursorkey 阅读(27) | 评论 (0) 编辑
【转】VPN服务器和客户端配置
摘要: 转自:http://pcranch.blogcn.com/服务器是Windows 2003系统,2003中VPN服务叫做“路由和远程访问”,系统默认就安装了这个服务,但是没有启用。首先我们要做的是保证vpn起用的条件,"一停四开"1.window自带的防火墙(windows firewall/internet connection sharing (ICS) 要停止2.远程注册表服务(Remote Registry)必须开启3.server服务 (Server)必须开启4.route路由服务(Routing and Remote Access)必须开启5.Workstati阅读全文
posted @ 2011-07-27 00:22 Cursorkey 阅读(54) | 评论 (0) 编辑
AutoIt的telnet示例
摘要: ;BEGIN SCRIPT----------------------------------------------;simulates a TELNET connectionGlobal $host, $port, $delay, $user, $pass, $sk, $ack$host = "192.168.1.1"$port = 23; miliseconds to wait before sending/receiving something$delay = 300 ; compensates network/internet delays$user = &quo阅读全文
posted @ 2011-07-22 00:35 Cursorkey 阅读(153) | 评论 (0) 编辑