Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 bash 脚本的帮助下更改我的 Outlook Web 应用程序客户端密码?如果是,那么请建议如何。我的公司实施了一项政策,每 21 天更改一次我的密码。我厌倦了这个。
为自己准备一个 Firefox 网络浏览器并安装扩展“LiveHTTPHeaders”。它可以记录在您的网络浏览器和您的公司服务器之间发送的所有标头。然后你启动 wget--save-cookies cookie_file并尝试与你的服务器重复通信。从您使用的第一次呼叫开始--load_cookies cookie_file,服务器就知道您是谁。您可以在此处了解有关 wget 的更多信息。
--save-cookies cookie_file
--load_cookies cookie_file
如果您可以使用 perl/ruby/python,我建议您使用mechanize,它是一个解析器,可以帮助您找到网页中的所有链接。