Loading The Snap-In |
Top Previous Next |
To check if the snap-in is currently installed use the following PowerShell command: Get-PSSnapin -Registered You should then see a list of registered snap-ins. The registration for the Web3 Admin snap-in should appear like this:
Name : Web3Admin If the snap-in is not listed then either the snap-in is not installed or you are using the 32-bit version of PowerShell on a 64-bit machine (the snap-in will only be registered in the 64-bit version of PowerShell on 64-bit machines).
To load the snap-in into the current session so that you can use the cmdlets, use the following command: Add-PSSnapin Web3Admin
|