Anonymous
My feedback
1 result found
-
197 votes
Since the ability to schedule reports has been included for a while now and with the upcoming feature to automatically export reports into a SP library (see: https://feedback.sharegate.com/forums/912880/suggestions/17768698), I was wondering if this suggestion will still be needed?
What are your thoughts on this?
An error occurred while saving the comment Anonymous supported this idea ·
Do you have a sample Powershell script to iterate over a subsite (and any child sites) and list out all the Groups with access and their members? This capability would be similar to the Permissions Matrix but the PermMatrix and it's output isn't very readable for average users. I was tryign something like this (not working)
##PRE-CONFIG STEPS
##REQUIRES IMPORT OF SHAREGATE MODULES
Import-Module Sharegate
$site = Connect-Site -Url https://toplevelsitecoll/subsite1/subsite2
##$web = $site.OpenWeb()
$groups =Get-Group $site
foreach ($grp in $groups) {
"Group: " + $grp.name;
$groupName = $grp.name
write-host "Group: " $groupName -foregroundcolor green
foreach ($user in $grp.users) {
"User: " + $user.name
write-host "User " $user.UserLogin -foregroundcolor red
}
}
Feedback sent from the Explorer view.