How do I get missing PowerShell modules?

KatzWo

Member
I have written many scripts I am trying to run and use, however sadly every single time I attempt to do so, PowerShell tells me that the selected modules aren't installed.
I have PowerShell v5.1. I have already looked for them on PowerShellGallery.com but I can't find the ones I need, for example: "EventTriggers" module because my script contains it.
 
We can't help find any missing PS modules. But if you wanted to add PS modules to a mounted image:

1. Export named module with Save-Module –Name MyModule –Path C:\MyFolder
2. Copy C:\MyFolder to the loaded image's \Program Files\WindowsPowerShell\Modules
3. Unload image, while saving changes.
 
Back
Top