I\'m learning PowerShell and I\'m trying to build my own module library.
I\'ve written a simple module XMLHelpers.psm1 and put in my folder $home/
XMLHelpers.psm1
$home/
try with below on powershell:
Set-ExecutionPolicy -ExecutionPolicy Unrestricted import-module [\path\]XMLHelpers.psm1
Instead of [] put the full path
Full explanation of this and that