Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
VertigoRay committed Apr 3, 2016
1 parent 4c88580 commit 3af2122
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This *PowerShell Class* allows you to easily connect to and work with your McAfee ePO Server in PowerShell 5.0+.
This [PowerShell Class](https://technet.microsoft.com/en-us/library/dn820211.aspx) allows you to easily connect to and work with your McAfee ePO Server in PowerShell 5.0+.

If you've got a script that's using this, feel free to use a `settings.json` file to store your ePO settings. You can use the [settings_SAMPLE.json](settings_SAMPLE.json) as a guide.

Expand All @@ -15,4 +15,4 @@ Now you can do something, like search for your current computer in ePO:
$ePO.SystemFind($env:ComputerName)
```

See the wiki for more details.
See [the wiki](../../wiki) for more details.
6 changes: 3 additions & 3 deletions ePOwerShell.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ePO {
}


[PSCustomObject] CoreHelp([string] $SearchText) {
[PSCustomObject] CoreHelp() {
return $this.Request('core.help')
}

Expand All @@ -85,7 +85,7 @@ class ePO {
}


[PSCustomObject] SystemFindComputerName([string] $SearchText) {
return $this.SystemFind($SearchText) | ?{ $_.'EPOComputerProperties.ComputerName' -eq $SearchText }
[PSCustomObject] SystemFindComputerName([string] $ComputerName) {
return $this.SystemFind($ComputerName) | ?{ $_.'EPOComputerProperties.ComputerName' -eq $ComputerName }
}
}

0 comments on commit 3af2122

Please sign in to comment.