Forum Discussion

Dean_Gross's avatar
Dean_Gross
Silver Contributor
Dec 13, 2016
Solved

PnP PowerShell modules

When I run get-module -ListAvailable, I get the following: Script     2.10.16... SharePointPnPPowerShellOnline       {Get-PnPWebTemplates, Get-PnPTimeZoneId, Set-PnPTenantSite, Uninstall-PnPAppInsta...
  • Pieter Veenstra's avatar
    Dec 14, 2016

    Hi Dean_Gross,

     

    it looks like you've got two versions installed.

     

    you might want to try the following:

     

     

    $modules = get-module -ListAvailable | where {$_.Name -eq "SharePointPnPPowerShellOnline"}
    foreach($module in $modules)
    {
       Write-Host $module.Name $module.Path
    }

     

    This should give you the location of the modules.

     

     

Resources