Skip to content
Rob Sewell edited this page Jan 17, 2018 · 6 revisions

FAQ

Here's a FAQ

Module-related questions

Q: I want to unload the dbatools module but it's complaining about a dbachecks requirement. What do I do?

image

A: Just add Remove-Module dbatools -Force and it'll unload all related modules in memory.

Q. When I try to import or update the module I get an error about The required module 'Pester' with version '4.1.1' is not loaded

error

A: If you have already installed the module and you update it, you may be required to update the Pester or the PSFramework modules before it will import. To resolve this

````Import-Module Pester -Force

You may need to do the same thing for the PSFramework or dbatools modules also
Clone this wiki locally