- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Where the PowerShell Modules are stored?
PowerShell modules are stored in their module path. Module paths can be retrieved using an environmental variable $env:PSModulePath. To get a better view, we will split the variable path with a semicolon.
$env:PSModulePath -split ';' C:\Users\Administrator\Documents\WindowsPowerShell\Modules C:\Program Files\WindowsPowerShell\Modules C:\Windows\system32\WindowsPowerShell\v1.0\Modules
You can see the 3 paths above. Each path has Modules stored as per their scopes.
Documents Path: Modules are stored in this path when you provide the scope – CurrentUser while installing the module.
Program files path: Modules are stored in this path when AllUsers Scope is provided.
System32 path: It is the default path for the module. Whenever Microsoft updates any PowerShell version or module, it is installed on this location.
- Related Articles
- Where are the python modules stored?
- Where are JavaScript variables stored?
- Where are iOS simulator screenshots stored?
- Where are the app cookies stored on the iPhone?
- Where are static variables stored in C/C++?
- How (where) are the elements of an array stored in memory?
- Where objects, methods and variables are stored in memory in Java?
- Where is VKORG stored in SAP
- What are Perl Modules?
- Where is the MySQL table data stored in Windows?
- Where will be the uploaded files stored in JSP?
- What are the most interesting Python modules?
- What are modules in JavaScript?
- Ways to use Where-Object in PowerShell
- What are the modules of Triple DES Algorithm?

Advertisements