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 中删除所有导入的模块?
谢谢
这应该这样做:
get-module | Remove-Module
这也删除了$profile.
$profile
更多关于这个