EvotecIT / Testimo

Testimo is a PowerShell module for running health checks for Active Directory against a bunch of different tests
MIT License
539 stars 58 forks source link

Cannot install using Install-Module; Another method to run and install? #178

Closed riahc3 closed 1 year ago

riahc3 commented 1 year ago

Hello

The server Im on (2016) for some reason doesnt want to install Testimo using install-module (nuget errors, etc)

Is there a way to run this offline? I tried to download the entire repository but it gives me further errors on cmdlets and functions missing.

Thank you

PrzemyslawKlys commented 1 year ago

Save-Module Testimo -Path "C:\Temp" on your own machine with internet access. Once it downloads locally go to that C:\Temp and copy all the modules that it downloads (it will be like 7 of them) to C:\Program Files\WindowsPowerShell\Modules to make modules available on that server. Remember that Testimo doesn't require server, nor has to be run on DC.

riahc3 commented 1 year ago

Thank you.

This should be added to the documentation

PrzemyslawKlys commented 1 year ago

feel free to make PR. This is standard for any PowerShell module tho