Skip to main content

A list of Exchange Online Command lets

A list of Exchange Cmdlets

https://technet.microsoft.com/en-us/library/jj200780(v=exchg.160).aspx


Deleting messages from Exchange Online

https://support.office.com/en-us/article/Search-for-and-delete-email-messages-in-your-Office-365-organization-3526fd06-b45f-445b-aed4-5ebd37b3762a#step2

The Exchange Web Services API
- When youi need message access and the msonline cmdlets don't get you there.
https://msdn.microsoft.com/en-us/library/office/dd877012(v=exchg.150).aspx


Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.