We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I couldn't do the Import-Module command. I generated the report on my AD Server and I tested on my own computer. It appeared the following error:
The specified module 'grouper.ps1' was not loaded because no valid module file was found in any module directory. Line: 1 Character:14
My system: Windows 7 Pro x64
I also tested the importing on the AD Server Powershell Terminal and I got the same error. The only difference was that: ... Line: 1 Character:1 ...
My AD Server system: Windows Server 2012 R2 Standard
The text was updated successfully, but these errors were encountered:
It looks like you've done
Import-Module grouper.ps1
which doesn't tell PS where to find the module file. If it's in the current working directory, you need to do:
Import-Module .\grouper.ps1
otherwise you'll have to tell it the full path:
Import-Module C:\users\administrator\desktop\grouper.ps1
Let me know how you go.
Sorry, something went wrong.
Just realised I typed it wrong in the README. Fixing that now.
problem in documentation - reopen if specifying path properly doesn't fix.
No branches or pull requests
I couldn't do the Import-Module command. I generated the report on my AD Server and I tested on my own computer. It appeared the following error:
The specified module 'grouper.ps1' was not loaded because no valid module file was found in any module directory.
Line: 1 Character:14
My system: Windows 7 Pro x64
I also tested the importing on the AD Server Powershell Terminal and I got the same error. The only difference was that:
...
Line: 1 Character:1
...
My AD Server system: Windows Server 2012 R2 Standard
The text was updated successfully, but these errors were encountered: