Powershell Learn In 24 hours

Hello, I have been working through a book to learn Powershell in 24 hours. When I got to the part that introduces Snap-in’s and Modules I found that I did not have any of the modules to perform the exercises. I am trying to do this in Windows 10. Does Windows 10 have the resources to learn Powershell in a book like this, or do I need to do this on a server? Any input would be appreciated.

You should be able to do it all on Windows 10. I’d start here:

Help Install-Module -online

Hi

You can try get-module -listavailable which will list out all the module available in (C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules)

you can then use import-module “Name of the moudle” to work with . Thanks.

Thank you. I will try that.

Thanks. I will try and import the modules I need as you suggested.