How to remove powershell module from my computer?

I installed the Powershell module (posh-git) using PS-Get, but found that it was rather slow. I want to delete it, but using Remove-Module posh-gitonly removes it from my current session, but I would like to make it permanent.

+4
source share
1 answer

This is an open issue for PS-GET: https://github.com/psget/psget/issues/164 :

It must be a function. You must currently remove it manually from the directory C:\Users\[yourUser]\Documents\WindowsPowerShell\modules.

+12
source

Source: https://habr.com/ru/post/1606283/


All Articles