I welcome you to my blog, you will find here the latest information about Microsoft technologies like ASP.NET, C#, .NET framework 2.0,3.0,3.5, WCF, ASMX web services, AJAX, Javascript, SMS and payment gateways available in the market...
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) { "`t `t $($Group.Name) `t `t `t " | out-file "E:\Ulhas\UsersandGroupsRpt.txt" -append #Iterate throu
Comments
Post a Comment