cancel
Showing results for 
Search instead for 
Did you mean: 

installing EV pre-requisites via PowerShell

Yogibara
Level 3
Partner Accredited

Recently I found a Powershell command to install all the pre-requistes for Exchange 2010.  I was hoping to find a similar script for EV prerequisites.  Anyone have one?

 

Michael

1 ACCEPTED SOLUTION

Accepted Solutions

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified

this discussion talks about install the pre-reqs for EV on a Win 2008 server using an XML

 

https://www-secure.symantec.com/connect/forums/install-ev-prerequisites-windows-2008-server-manager-command-line-tool

 

View solution in original post

4 REPLIES 4

JesusWept3
Level 6
Partner Accredited Certified

I think there is one for Windows 2008 on the forum somewhere but not 2003

https://www.linkedin.com/in/alex-allen-turl-07370146

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified

this discussion talks about install the pre-reqs for EV on a Win 2008 server using an XML

 

https://www-secure.symantec.com/connect/forums/install-ev-prerequisites-windows-2008-server-manager-command-line-tool

 

Yogibara
Level 3
Partner Accredited

Right I'm looking for one to run on a Windows 2008 server before running the Deployment Scanner.  it's a PITA to do it manually.  If someone has one, I won't have to build it myself. smiley

LukeA
Level 3
Partner

The following powershell command(s) will install the prerequisites for Enterprise Vault 9 on Windows 2008 R2:

Import-module ServerManager

Add-WindowsFeature MSMQ-Server, NET-Framework-Core, Web-Server, Web-Static-Content, Web-Default-Doc, Web-Dir-Browsing, Web-Http-Errors, Web-Http-Redirect, Web-Asp-Net, Web-NET-Ext, Web-ASP, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Http-Logging, Web-Log-Libraries, Web-Request-Monitor, Web-Http-Tracing, Web-Basic-Auth, Web-Windows-Auth, Web-Filtering, Web-IP-Security, Web-Stat-Compression, Web-Mgmt-Console, Web-Scripting-Tools, Web-Mgmt-Service, Web-Metabase, Web-WMI, Web-Lgcy-Scripting, Web-Lgcy-Mgmt-Console, RSAT-Web-Server 

Also, if you have the firewall on, these commands will open up the required ports for DCOM access (these are checked for by the deployment scanner); these are not Powershell commands and therefore should work on Windows 2008 as well as 2008 R2:

Netsh advfirewall firewall add rule name=”EVault DCOM-In (TCP)” dir=in protocol=TCP localport=135 action=allow

Netsh advfirewall firewall add rule name=”EVault DCOM-In (UDP)” dir=in protocol=UDP localport=135 action=allow 

 

Hopefully this is of some use to someone.