François-Xavier Cat

Results 46 comments of François-Xavier Cat

As mentioned by @lxlechat there is some new capabilities in .Net Core 3: https://docs.microsoft.com/en-us/dotnet/api/?view=netcore-3.0&term=direct To investigate

Thanks for checking @JM2K69 what do you see if you do `[System.DirectoryServices.ActiveDirectory]|gm -static`

Could this help ? Looks like some people wrote similar code * https://github.com/zloeber/PSAD/blob/master/src/public/Get-DSObjectACL.ps1 * https://github.com/edemilliere/ADSI/blob/master/Grant-ADPermission.ps1

Thanks @LxLeChat @Stephanevg for looking at this! These are some good ideas. Here are my thoughts for this function: ### Scope I think this function should cover "Account" types, which...

As discussed on the chat, we can also try to rely on `Compare-Object` and `Get-ADSIObject` instead of reinventing the wheel 😄 ```powershell function Compare-ADSIObject {param($ReferenceObject,$DifferenceObject,$Property) # possibly use @PSBoundParameters ?...

@Stephanevg 👍 this was what i had in mind as a step two 😄 Thanks guys for your help!

Thanks for your work @LxLeChat @christophekumor ! Feel free to PR if you notice any gaps

Hi @julienbassin ! Indeed, we do have replication cmdlets did you look at these ? Else feel free to take a stab at them :smile_cat:

Thanks @vexx32 for the quick reply! Not sure i can help with the c# but I'm available if you need me to test it out 😄

Nice work @PrzemyslawKlys ! I don't use this script since i left one of my previous employer but I support it if anyone is stuck. There are multiple ways to...