Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theonlyway/xdscsepvie
Custom DSC resource to execute the Symantec VIE tool against all drives on a node
https://github.com/theonlyway/xdscsepvie
dsc dsc-resources powershell sep symantec symantec-vie windows
Last synced: 27 days ago
JSON representation
Custom DSC resource to execute the Symantec VIE tool against all drives on a node
- Host: GitHub
- URL: https://github.com/theonlyway/xdscsepvie
- Owner: theonlyway
- License: mit
- Created: 2016-05-19T07:41:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-03T05:07:39.000Z (almost 8 years ago)
- Last Synced: 2024-09-28T04:22:11.649Z (about 1 month ago)
- Topics: dsc, dsc-resources, powershell, sep, symantec, symantec-vie, windows
- Language: PowerShell
- Size: 13.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# Builds
|Master | Development |
|:------:|:------:|:-------:|:-------:|
[![Build status](https://ci.appveyor.com/api/projects/status/i6plr1mrpa1pl6xx/branch/master?svg=true)](https://ci.appveyor.com/project/theonlyway/xdscsepvie/branch/master)|[![Build status](https://ci.appveyor.com/api/projects/status/i6plr1mrpa1pl6xx?svg=true)](https://ci.appveyor.com/project/theonlyway/xdscsepvie)|# 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"
}