Skip to content
Michael Arranaga edited this page Oct 1, 2019 · 11 revisions

Requirements

Requirement Version
McAfee ePolicy Orchestrator (ePO) 5.3+
PowerShell 5.0+

Purpose

In order to easily manage and query systems through McAfee's ePO services, we needed to create a way of utilizing the existing built in services. Since that requires formulating unique URLs for each function, we've created functions that assist.

Quick Setup

  1. Import the ePOwerShell module
  2. Set your server settings
  3. Run your commands
Install-Module ePOwerShell
Import-Module ePOwerShell

$ePOwerShellServer = @{
    Server = 'https://your-epo-server.domain.com'
    Port = 1234
    Credentials = (Get-Credential)
}

Set-ePOConfig @ePOwershellServer

Help

ePOwerShell is built to work along side of McAfee's ePO.

If you are experiencing an issue with the code, please check the Issues first, to see if the issue is already known. If not, submit a New Issue.

All of the docs are not linked from this page, check out all of the additional pages to see if you can find a solution in there!

Contribution

Contribution is always welcome. Please read our contribution page to see how.

Clone this wiki locally