I'll preface this by saying I am not an expert powershell user by any means, so I'm probably going about this the wrong way.
I have a module that I am working on regularly and I update / tweak it often. It is stored in C:\Users\-user-\Documents\WindowsPowerShell\Modules if that matters.
Currently I have to close the powershell window and reopen a new one if I want the new / updated methods to be accessible - even when I perform an import in the same window that I am executing commands in.
I have tried doing . $profile but this does nothing. Do I need to add the module to the profile?
Remove-Module moduleName -Force; Import-Module moduleName