Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.09 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.09 KB

Build status version downloads

Quick Start

Import-Module ePOwerShell

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

Set-ePOConfig @ePOwershellServer

From here, you're able to use the rest of the functions:

$Computer = Get-ePOComputer $env:ComputerName

The rest of the functions are detailed further in the wiki.

Tips and Tricks

Save ePO Config

If you don't want to do Set-ePOConfig every time you load powershell, try Save-ePOConfig.