-
-
Notifications
You must be signed in to change notification settings - Fork 145
FAQ
Rob Sewell edited this page Jan 17, 2018
·
6 revisions
Here's a FAQ
Q: I want to unload the dbatools
module but it's complaining about a dbachecks
requirement. What do I do?
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
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