vote up 0 vote down star

After looking around (for not terribly long I have to admit) I wonder if anyone can point me to a Powershell script that checks if 'IIS Management Scripts and Tools' is enabled and if its not then it enables it like you would from Add Windows features.

I checked poshcode.org and powershell.com and couldnt find one

I never touched Powershell before and I m trying to use this script to run as part of deployment automation

Cheers

flag

1 Answer

vote up 1 vote down check

Would that be for Windows 2008 or Windows Server 2008 R2?

Server 2008R2:

-To query:

PS> get-windowsfeature|where{$_.name -eq "Web-Scripting-Tools"}

Display Name                                            Name
------------                                            ----
        [X] IIS Management Scripts and Tools            Web-Scripting-Tools

The "[X]" indicates it is installed.

-To add:

PS> get-windowsfeature|where{$_.name -eq "Web-Scripting-Tools"}|add-windowsfeature

If you're asking about Server 2008, then you'll have to parse the output from servermanagercmd.exe, which will be a bit tougher, but not impossible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.