标签: .net powershell module
我想在导入之前删除所有导入的模块,以便通过覆盖内存中的模块来获取新模块。
如何在PowerShell中删除所有导入的模块?
由于
答案 0 :(得分:9)
这应该这样做:
get-module | Remove-Module
这也删除了$profile中导入的模块。
$profile
More about this