Is there a way to change my outlook web app client password with the help of a bash script? If yes, then please suggest how. My company has implemented a policy to change my password every 21st day. I’m tired of this.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Grab yourself a Firefox web browser and install the extension “LiveHTTPHeaders”. It can log all the headers that are sent between your web browser and your companies server. Then you fire up wget with the
--save-cookies cookie_fileand try to repeat the communication with your server. From the first call on you use--load_cookies cookie_fileso the server knows who you are. You can find out more about wget here.In case you can use perl/ruby/python I would recommend mechanize which is a parser that helps you find all links in a webpage for example.