|
26933062
银牌会员
    
积分 2268
发帖 879
注册 2006-12-19
状态 离线
|
『楼 主』:
批处理自动登陆邮箱
使用 LLM 解释/回答一下
请问批处理可以自动登陆邮箱吗? 就以163.com为例吧.
要求自动输入用户名和密码.
Can batch processing automatically log in to an email? Take 163.com as an example. It requires automatically entering the username and password.
|
|
2007-5-16 03:23 |
|
|
bjsh
银牌会员
    
积分 2000
发帖 621
注册 2007-1-1
状态 离线
|
|
2007-5-16 08:56 |
|
|
chenall
银牌会员
    
积分 1276
发帖 469
注册 2002-12-23 来自 福建泉州
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
试试下面的批处理吧.
- @echo off
- set "username=用户名"
- set "password=密码"
- start "163邮箱登录中" "https://reg.163.com/logins.jsp?username=%username%&password=%password%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"
chenall 发表于: 2007-05-16 10:23
Try the following batch processing.
- @echo off
- set "username=Username"
- set "password=Password"
- start "Logging in to 163 Email" "https://reg.163.com/logins.jsp?username=%username%&password=%password%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"
Posted by chenall on: 2007-05-16 10:23
|

QQ:366840202
http://chenall.net |
|
2007-5-16 10:26 |
|
|
26933062
银牌会员
    
积分 2268
发帖 879
注册 2006-12-19
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
chenall 高手的方法非常不错,想请问一下是怎么实现的?是通过注册表吗?好像比vbs版的要好,vbs的在登陆期间不能开其他的窗口,这个好像无所谓,是这样的吗?
还有请问这句可以分几行写吗?一行太长了.
start "163邮箱登录中" "https://reg.163.com/logins.jsp?username=%var%&password=%num%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"
chenall The expert's method is very good. I want to ask how it is implemented? Is it through the registry? It seems better than the VBS version. The VBS one can't open other windows during login, but this one seems okay, is that right?
Also, may I ask if this sentence can be written in several lines? It's too long in one line.
start "163邮箱登录中" "https://reg.163.com/logins.jsp?username=%var%&password=%num%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"
|
|
2007-5-16 12:13 |
|
|
bjsh
银牌会员
    
积分 2000
发帖 621
注册 2007-1-1
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
chenall
的做法是通过构造 url地址来实现的;
The approach of chenall is to achieve it by constructing the URL address;
|
|
2007-5-16 12:47 |
|
|
26933062
银牌会员
    
积分 2268
发帖 879
注册 2006-12-19
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
哦,这我就太不懂了,都没听过.
Oh, I really don't understand this at all, I've never even heard of it.
|
|
2007-5-16 12:49 |
|
|
chenall
银牌会员
    
积分 1276
发帖 469
注册 2002-12-23 来自 福建泉州
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
Originally posted by 26933062 at 2007-5-16 12:13 PM:
chenall 高手的方法非常不错,想请问一下是怎么实现的?是通过注册表吗?好像比vbs版的要好,vbs的在登陆期间不能开其他的窗口,这个好像无所谓,是这样的 ...
如版主所说,通过给URL加参数,相当于输入用户名和密码后再按回车的效果.
但是这种方式还是有一定的局限性的.
这个登陆会调用IE打开上面的地址.
这个是一个URL地址,不可以分开写
Originally posted by 26933062 at 2007-5-16 12:13 PM:
chenall's method is very good. I want to ask how it is achieved? Is it through the registry? It seems better than the vbs version. The vbs one cannot open other windows during login, but this one seems not to matter, so ...
As the moderator said, by adding parameters to the URL, it is equivalent to the effect of entering the username and password and then pressing Enter.
But this method still has certain limitations.
This login will call IE to open the above address.
This is a URL address and cannot be written separately
|

QQ:366840202
http://chenall.net |
|
2007-5-16 14:04 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
如果密码中含有特殊字符,用这个方法就无法登录,比如 & 等,需要转换成16进制的形式。
If the password contains special characters, this method cannot be used to log in. For example, & and so on, which need to be converted into hexadecimal form.
|
|
2007-5-16 14:36 |
|
|
cain
中级用户
  
积分 201
发帖 72
注册 2005-11-20
状态 离线
|
|
2007-5-16 14:43 |
|
|
suntb
高级用户
   
积分 581
发帖 277
注册 2006-12-23
状态 离线
|
|
2007-5-16 15:23 |
|
|
26933062
银牌会员
    
积分 2268
发帖 879
注册 2006-12-19
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
请问 局限性 是指什么?哪方面的?
What does "limitation" refer to? In which aspects?
|
|
2007-5-16 16:10 |
|
|
kennyfan
中级用户
  
积分 259
发帖 112
注册 2006-9-18
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
呵呵..又学习一样好咚咚了!
Heheh.. learned another good thing again!
|
|
2007-5-16 19:30 |
|
|
cain
中级用户
  
积分 201
发帖 72
注册 2005-11-20
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
分析了许久,始终不知 www.yeah.net这个网易邮箱具体的如何写,敬请各位高手指教。
After analyzing for a long time, I still don't know how to specifically write the NetEase mailbox at www.yeah.net. I sincerely ask all experts for guidance.
|
|
2007-5-16 20:19 |
|
|
xswdong
中级用户
  
积分 216
发帖 129
注册 2007-2-14
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
很好用, 126的怎么做,我试了一下,还是做不出来.网易邮箱具体的如何写,请高手帮忙
It's very useful. How to do it for 126? I tried it and still couldn't make it. How to specifically write for NetEase mailboxes? Please help, experts.
|
|
2007-5-16 23:07 |
|
|
chenall
银牌会员
    
积分 1276
发帖 469
注册 2002-12-23 来自 福建泉州
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
126和YEAH的登录方式是一样的.和163的不同.
具体看以下批处理
- @echo off
- ::设置登录邮箱名为yeah或126
- set mail=126
- ::设置用户
- set user=username
- :设置密码
- set pass=password
- ::yeah登录URL
- set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::126邮箱登录URL
- set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::登录
- cmd /c start "" "%%%mail%%%"
chenall 发表于: 2007-05-17 16:48
Last edited by chenall on 2007-5-18 at 07:57 AM ]
The login methods of 126 and YEAH are the same. Different from that of 163.
Specifically, see the following batch processing
- @echo off
- ::Set the login email name as yeah or 126
- set mail=126
- ::Set user
- set user=username
- :Set password
- set pass=password
- ::YEAH login URL
- set "yeah=http://entry.yeah.net/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::126 email login URL
- set "126=https://entry.mail.126.com/cgi/login?&bCookie=&user=%user%&pass=%pass%"
- ::Login
- cmd /c start "" "%%%mail%%%"
chenall posted on: 2007-05-17 16:48
Last edited by chenall on 2007-5-18 at 07:57 AM ]
|

QQ:366840202
http://chenall.net |
|
2007-5-17 16:50 |
|