Andreas Jordan

Results 390 comments of Andreas Jordan

@george-palacios-sb - are you able to further analyse the problem with the code I provided?

Looking at the code, I don't see an easy way to do that. The code is working with methods of the ad objects, not creating some kind of script. Maybe...

I see this clearly out of scope of dbatools and will not work on this issue.

Thanks for reporting this and thanks for the detailed report and the linked issues. I will have a look in the next days.

Just opened a pull request to fix the issue with the get command. I don't have enought time to have a deeper look into the set command, so I leave...

This is not a problem with the AG command itself. It is not a problem with the parameters for backup and restore. It is a problem within the command `Format-DbaBackupInformation`...

To add "cross platform support" for `Format-DbaBackupInformation`, we would have to eliminate `[System.Io.FileInfo]` and replace it by some code that takes the full path and returns the following properties (examples...

I think this will work: ``` $PathSep = '\' $PhysicalName = 'D:\Some\Dirs\File.bak' $lastPart = $PhysicalName.Split($PathSep)[-1] $RestoreDir = $PhysicalName.Substring(0, $PhysicalName.Length - $lastPart.Length - 1) $extension = '.' + $lastPart.Split('.')[-1] $baseName =...

I'm very busy the next days, but I can try to have a look at the weekend.

I can reproduce the issue, but I'm not sure how to solve it. The parameter "-CreateFolder" currently does two things: * Adding the dbname at the end of the path...