- 论坛徽章:
- 0
|
当时讨论这个帖子http://bbs2.chinaunix.net/viewth ... page%3D3&page=1的时候,我提出用windows自身的命令来完成客户端的登录调用,几经试验,终于找到了所需要的cmd命令,特分享出来:
1、结束资源管理器:由于存在其他用户已经打开了服务器的连接的情况,新用户登录前需要结束打开的窗口,用命令:
- ntsd -c q -pn explorer.exe
复制代码
2、检查资源管理器是否被重新自动打开:
- tasklist /fi "imagename eq explorer.exe" | find "explorer.exe"
复制代码
3、结束所有打开的网络连接:
4、重新打开到smb服务器的连接:
将以上的4点作成一个批处理命令后,就可以打包成一个可执行文件了,批处理文件:
- ntsd -c q -pn explorer.exe
- :waitexplorer
- tasklist /fi "imagename eq explorer.exe" | find "explorer"
- if errorlevel 1 goto waitexplorer
- net use * /delete /y
- explorer /root,\\FileServer
复制代码
使用:waitexplorer是等待资源管理器重新启用后再执行下一步命令。
附上我已经打包好的可执行文件,如果你的服务器名为FileServer,就可以直接使用这个运行文件了。
[ 本帖最后由 i770880 于 2007-2-25 12:38 编辑 ] |
|