Christian Ritter | MVP

Results 9 comments of Christian Ritter | MVP

I have reviewed the `install-DbaMaintenanceSolution` function, and I noticed that when selecting the "HourlyLog" option, it currently calls `New-DbaAgentSchedule` with the following parameters: ```powershell $logparams = @{ SqlInstance = $server...

@andreasjordan you would agree to this?

I probably found the issue, 524 --> $fullschedule = New-DbaAgentSchedule @fullparams gets called, even when there is no Full parameter. So replacing this: ```powershell if ("WeeklyFull" -in $AutoScheduleJobs) { $fullparams...

I’ve successfully implemented the switch in the psm1 file on my local machine. Additionally, I ensured that any pre-existing filters are properly extended to accommodate the new switch without overriding...

@SteveMutungi254 You're very welcome! I would have loved to create a PR, but I'm unsure how to commit my changes to the repo since the parameter section seems to be...

It's kinda related, as -all should be by default 999 in page size. But also for -top the user should be able to specify the -pagesize parameter, to fit the...

@alexandair: Do you do this while having the module already imported? Because importing the module takes ages on my machine (around 1 minute), so MAYBE it is caused by the...

@alexandair @SteveMutungi254 I've been investigating the underlying issue and have made some progress, although I haven't pinpointed the exact cause yet. After some testing, I found that importing the module...

The issue with the Microsoft.Graph.Entra module is that it's not just checking whether the required modules are installed — it’s also importing them. When all the modules are imported together,...