Shawn Melton

Results 191 comments of Shawn Melton

The Extensions Terminal (no longer called Integrated Terminal) does not automatically load any module without being told to do so. There are two things that will trigger a module import...

> I do not understand fully the ramifications of private vs shared assemblies In PowerShell this does not exists. An assembly or library is loaded , it will not allow...

Yeah primary intent was to copy logins from a primary to secondary replicas to keep them in sync. Can't say I've heard of it being used to clone logins on...

If you spawn another session and then kill the original you lose control over that spawned session/process. This is the way modules with client libraries work, any session on the...

It is trying to solve an issue that is "by design" with PowerShell (Windows and Pwsh). Everyone manages that part of their environment differently (I use DSC in some to...

Can you expand on what you mean by this statement with exact repo steps? > If I run the command out side of DBA tools, it returns the results as...

Since you are using sqlserver module are you doing these test in separate processes? Meaning a new process to test dbatools and a new process to test sqlserver module? Can...

I don't see the dot net versions. GitHub truncates emails being sent. Please perform your test in a process that doesn't have sqlserver module loaded.

You will need to install .NET 4.6 for it to likely work. It is a required version of .NET for the module and SMO version we have.

No, minor versions are not backward compatible in .NET. Compiled libraries for 4.7 don't work with 4.6 as being compiled in 4.6 won't with under 4.7. We are dependent on...