Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot install Powershell Snap-in

When executing iis7psprov_x64.msi I immedialy receive a message saying:

The PowerShell snap-in is part of Windows Operating System. Please install it via 'Programs and Freatures' or 'Server Manager'

Extracting the msi and attempting to run it that way also yields the same message.

I am installing on Win7(64bit) with IIS 7.0.

like image 708
ChiliYago Avatar asked Aug 31 '10 21:08

ChiliYago


People also ask

How do you install Windows PowerShell snap-in?

To install IIS PowerShell Snap-in: The IIS PowerShell Snap-in is available as x86 and x64 version. Download the 32-Bit version or 64-Bit version. Run the MSI file to install the IIS PowerShell Snap-in.

How do I install PowerShell exe?

To install PowerShell on Windows, use the following links to download the install package from GitHub. Once downloaded, double-click the installer file and follow the prompts. The installer creates a shortcut in the Windows Start Menu.


1 Answers

As the error suggests, it should already be installed as part of your Windows 7 operating system.

You may need to execute (or add to your profile) the following statement to load the module:

import-module WebAdministration
like image 53
kbrimington Avatar answered Oct 03 '22 20:10

kbrimington