Open Windows PowerShell
To open PowerShell in your Windows system, go to Start Menu —> Type “Windows PowerShell” in Search box —>Select Windows PowerShell —> Right click and Select ” Run as Administrator”.
Install the MVP module
To install MVP module, use the below Cmdlet (Command-let)
Install-Module -name MVP
![MVP]()
Image: Install MVP Module.
View Functions in MVP Module
After installing the MVP module, If you want to look at all the available functions in MVP module, currently there are 15 functions available in this module.
Get-Command -module MVP
![MVP]()
Conļ¬gure Your Connection
Now, to use this MVP module using PowerShell, you must register and get a subscription key from Microsoft. You can do this by just following the below steps.
Step 1 - Sign into Microsoft MVP API Portal
You can sign on to Microsoft MVP API Portal by using the below link (Note: Use your Microsoft MVP site access credentials ).
https://mvpapi.portal.azure-api.net
![MVP]()
Step 2 - Subscribe to the “MVP Production”.
Once you are successfully signed in, click on Products tab —> MVP Production —> click on Subscribe.
Step 3 - Get Subscription Key
After your click on Subscribe in step 2, a request will be submitted and it will take ~2 business days to be processed. Once it gets approved, you will get a subscription key. It can be found by this way -
Right click on your proļ¬le and select “PROFILE” —> On the primary key line. Select “show” and that’s your Subscription Key.
Step 4 - Conļ¬gure your Connection using Set - MVPConļ¬guration.
Set - MVPConfiguration -SubscriptionKey ‘Enter Your SubscriptionKey Here’.
Retrieve an MVP Proļ¬le.
You can retrieve an MVP Proļ¬le using Get-MVPProļ¬le function. For example, you can see the MVP Proļ¬le ID of Francois-Xavier Cat ( A PowerShell MVP).
Get- MVPProfile -ID ‘Enter any Specific MVP Profile ID Here’.
Note
You can ļ¬nd an MVP proļ¬le ID at mvp.microsoft.com. If you search for an MVP and click on his/her proļ¬le, you will see the Proļ¬le ID in the URL.
![MVP]()
Image Source: Francois- Xavier Cat.
This will give you the proļ¬le information of Francois-Xavier Cat.
![MVP]()
![MVP]()
![MVP]()
Image Source: Francois- Xavier Cat.
You can also retrieve your contributions
—> Get-MVPContribution
And, make new contributions
—> New-MVPContribution
and so on....