-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Michael Arranaga edited this page Aug 30, 2019
·
11 revisions
Requirement | Version |
---|---|
McAfee ePolicy Orchestrator (ePO) | 5.3+ |
PowerShell | 5.0+ |
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.
- Import the ePOwerShell module
- Set your server settings
- 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
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!