Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
theonlyway committed May 19, 2016
1 parent 4f75436 commit 6ed91e6
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# xDSCSEPVIE #

## Overview ##

This custom resource runs the Symentec VIE tool to scan current drives along with newly added drives. The scan result of a drive is outputted to C:\Windows\temp and used to identify if a drive has already been scanned or not.

### Parameters ###

**Ensure**

*Note: This is a required parameter*

- Present - Runs the SEP VIe tool against any drives
- Absent - Removes the CSV file from C:\Windows\Temp


**VIELocation**

*Note: This is a required parameter*

- The physical path on the file system where the Symantec VIE tool is located

### Example ###

File Copytools
{
Ensure = "Present"
Type = "Directory"
Recurse = $true
Sourcepath = "\\fileshare\setups$\Tools"
Destinationpath = "C:\Tools"
MatchSource = $true
Force = $true
}
xDSCSEPVIE RunVIE
{
VIELocation = "C:\Tools\VIE\vietool.exe"
Ensure = "Present"
Dependson = "[File]Copytools"
}

0 comments on commit 6ed91e6

Please sign in to comment.