Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在启动时在我的脚本中动态添加了一些模块。
如果模块在导入之前已经导入,我想删除它。
如果已在 Powershell 中导入模块 Foo,如何删除它?
如果你想“重新加载”它,你也可以使用 import-module Foo -force
和之前的回答一样:
get-module Foo | remove-module
或者
remove-module foo -ea silentlycontinue