Creating Powershell modules isn't hard, but the task has many nuances, and it can be difficult deciding what information is relevant. My own objective was very simple, and I suspect it's the most common scenario of all. I had a directory of .ps1 scripts, and I simply wanted to turn them into a module, so that I could write something like "Import-Module MyModule", and immediately have access to all the functions I had defined.To do this, here's the most basic set of tasks you need to perform (and ......