From 4c88580c3e4abcf2a3c3775f6c72915320eb377b Mon Sep 17 00:00:00 2001 From: Raymond Piller Date: Sun, 3 Apr 2016 02:53:02 -0500 Subject: [PATCH] Added: CoreHelp --- ePOwerShell.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ePOwerShell.ps1 b/ePOwerShell.ps1 index aac79fd..12b2648 100644 --- a/ePOwerShell.ps1 +++ b/ePOwerShell.ps1 @@ -75,6 +75,11 @@ class ePO { } + [PSCustomObject] CoreHelp([string] $SearchText) { + return $this.Request('core.help') + } + + [PSCustomObject] SystemFind([string] $SearchText) { return $this.Request('system.find', @{'searchText'=$SearchText}) }