Why am I not seeing what I just installed? #2931
Unanswered
JaeEmAre67
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I started my morning today by running
get-module -name "PnP.PowerShell" -ListAvailable
and saw what I expected
Directory: C:\Program Files\WindowsPowerShell\Modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 1.7.0 PnP.PowerShell {Add-PnPClientSidePage, Add-PnPClientSide...
Seeing that 1.10 is the current release, I ran
Install-Module -Name PnP.PowerShell -RequiredVersion 1.10.0
and saw the progression likeInstalling package 'PnP.PowerShell'
Unzipping
[oooooooooooooooooooooooooooooooooooooooo
However now running
get-module -name "PnP.PowerShell" -ListAvailable
gives me the same results as before
Directory: C:\Program Files\WindowsPowerShell\Modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 1.7.0 PnP.PowerShell {Add-PnPClientSidePage, Add-PnPClientSide...
So I figured I had to force it. I ran
Install-Module -Name PnP.PowerShell -RequiredVersion 1.10.0 -force
and saw the progression again and yetget-module -name "PnP.PowerShell" -ListAvailable
still give version 1.7 only in the output.
How do I actually upgrade?
Beta Was this translation helpful? Give feedback.
All reactions