-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f75436
commit 6ed91e6
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |