Wednesday, May 13, 2015

How to get windows server last reboot time

Windows servers last reboot time can be retrieve using powershell command get-eventlog System | where-object {$_.EventID -eq "6005"} | sort -desc TimeGenerated

Wednesday, May 6, 2015

Sharepoint 2016 Preview


https://sp2016demo.fpweb.net/sites/Documents/_layouts/15/start.aspx#/


SharePoint 2016 Preview Site has been launched

http://sp2016demo.fpweb.net/SitePages/Home.aspx

How to test web service for sharepoint


Many time there is requirement for consuming Sharepoint webservices from other non share point or share point environments . Having tool to quickly use the webservice check various method could be very handy in these type of scenarios . This alloys to consume and test webservice without writing any code and can be very useful for rapid development or administrators

Most of the time I end up with using SoapUI opensource tool from http://www.soapui.org/

Soap UI provide opensource and Pro license version based on your needs.