Skip to main content

About Me

My name is Ulhas Morbale, I live in my India.
I've perceived Masters degree from Shivaji University and have 8 years of professional experience in a variety of technologies such as: SharePoint 2013/2010, MOSS 2007, C#.NET, SQL Server, HTML5, jQuery, XHTML, CSS, PHP, JAVASCRIPT, ASP.NET 3.5, WCF,  T-SQL, XML, AJAX, and XSLT etc.

I work in Bangalore, Karnataka, India as a IT Professional for a software firm.

I'm latest technology evangelist and interested in Microsoft technologies like SharePoint, ASP.NET, C#, SQL SERVER 2008, REST etc.

Comments

  1. Great blog and very useful to solve some problems. Congratulations!

    ReplyDelete

Post a Comment

Popular posts from this blog

Permission audit report for site and all sub sites using PowerShell

Use below script to get Permission audit report for site and all sub sites using PowerShell, Add-PSSnapin "Microsoft.SharePoint.PowerShell" $URL="https://intranet.contoso.com/sales/mysite/"      $site = Get-SPSite $URL      #Write the Header to "Tab Separated Text File"         "Site Name`t  URL `t Group Name `t User Account `t User Name `t E-Mail" | out-file "E:\Ulhas\UsersandGroupsRpt.txt"          #Iterate through all Webs       foreach ($web in $site.AllWebs)       {         #Write the Header to "Tab Separated Text File"         "$($web.title) `t $($web.URL) `t  `t  `t `t " | out-file "E:\Ulhas\UsersandGroupsRpt.txt" -append          #Get all Groups and Iterate through            foreach ($group in $Web.groups)         ...