Can datasource level settings like enabling/disabling the Recycling bin be done via PWPS_DAB?
I see user attributes, some audit trail, and environment/attribute settings, but nothing else.
Yes you can!
#You can grab the setting through this cmdlet.
Get-PWUserSetting -UserID 32 -UserSettingCategory General
#You can set it like this
Set-PWUserSetting -UserID 32 -UserSettingCategory General -UserSettingName CanAccessDeletedItemsFolder -UserSettingValue 0
I do believe this only works in PowerShell (x86) but you can try both!
Should be able to do this with the pwps_dab module in a 64bit session.
Update-PWUserSetting -InputUsers $pwUser -SettingName General_CanAccessTrashCan -SettingValue 1 -Verbose