From 2681b259093c4dfa7d83d4224fb31beb2027b758 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 26 Jul 2016 17:46:58 +1000 Subject: [PATCH 1/9] Updated script formatting --- DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 | Bin 11544 -> 11638 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 b/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 index 365c173099affae21643152b5eb06647ee5d8f32..7ee8c21e389536b407145fba79cd9f6f270fd018 100644 GIT binary patch delta 1179 zcmbOc^(|_{0Y>p~h75*Oh9V%=W$_ zW>lX%S4kd7?p5-fJcmgS$oi-Z5*6eWo-D;20po98&&QF zzNjudd7feq+5WVhe1k({vYc`h%x_@77O=2PUdO2d7jqO#o;*RtX!8;-4MtXV1}k82 zUF6;gl&)>daw00wR_Lq0<(Fg%ihp`ic_iwXu8pqMidy8^>0jKLE~t4|J;^_{Gs z#xdEC*MJP&Z+Y)>1_RB{0pjGzXO(0pSBbR19ceA9IC+5>3o!hJCaI|aDX+;2TtSoH zarI4Z;P!z#TX*s*agZi*oDMRcT&EwM>?b0E*ZJ9#FR8=R7(5;zevq2HPwW8H5B4(3 zV2=)jKYAsm;uav84Umc delta 989 zcmewsH6v=n0Y*mq$(>4?yh;pi44DiS45bKLX-7aUHFw492t@jDke9w=3^0)-z>-G$Eb{HpbpSbR0A9pZ6_-z1rgy9+sQ1P z8iE*Rg1r>LX@=xQ@yT~IR3QAxMIu6z{WM=pekV{eIYE_W@)~X*ptr4n!St7VCs565 zUT0Ay1_cIPhG2$#hEiYvBm=##0F>wF6$Q%Al=YpwfrVpo6|VsiswMgEvVwvyXYxZ1 z;mI=mEf7~QDs8^Ye~}SxvF_vtf*>hkELRXVAws1j-_gk(A|lu=pL~~J5gLm|7_kLP z5$M6^rx`T)fU4AFHt_>cH=h Date: Tue, 2 Aug 2016 01:40:57 +1000 Subject: [PATCH 2/9] adding pester tests --- DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 | Bin 11638 -> 11698 bytes LICENSE.MD | 21 ++++++ Tests/xDSCSEPVIE.Tests.ps1 | 54 ++++++++++++++++ appveyor.yml | 81 ++++++++++++++++++++++++ 4 files changed, 156 insertions(+) create mode 100644 LICENSE.MD create mode 100644 Tests/xDSCSEPVIE.Tests.ps1 create mode 100644 appveyor.yml diff --git a/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 b/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 index 7ee8c21e389536b407145fba79cd9f6f270fd018..56e80a838e903fa9e552c0eba1899d875b89d174 100644 GIT binary patch delta 51 zcmewswJCao5bGpXmdR(d6ejnv*i9~Bm6^OwOKS22bqgS0ZSp- Date: Tue, 2 Aug 2016 01:42:07 +1000 Subject: [PATCH 3/9] Create README.md --- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..eb3ed2f --- /dev/null +++ b/README.md @@ -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" + } From 8627199d4e2bb7f6985817fb9cb3ecf5ff9fa555 Mon Sep 17 00:00:00 2001 From: Anthony Waye Date: Tue, 2 Aug 2016 01:43:17 +1000 Subject: [PATCH 4/9] Update appveyor.yml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index c011721..c01461d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ skip_commits: #---------------------------------# # environment configuration # #---------------------------------# -version: '1.6.{build}' +version: '2.6.{build}' os: WMF 5 pull_requests: do_not_increment_build_number: true From 62884c85a88dda743ec23310339e652871674eda Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 8 Aug 2016 19:49:27 +1000 Subject: [PATCH 5/9] Updating pester --- DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 | Bin 11698 -> 13416 bytes Tests/xDSCSEPVIE.Tests.ps1 | 105 ++++++++++++++++++------ 2 files changed, 80 insertions(+), 25 deletions(-) diff --git a/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 b/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 index 56e80a838e903fa9e552c0eba1899d875b89d174..d3e21e194212e658c4e5646cefdd16fb4ce78e80 100644 GIT binary patch literal 13416 zcmeHOZBH9V5Z=#~`X5fnD$vGhtA2}AsR^Mi5+tZb;R8gKV;e$c8|pIz)aI|ZeV$p5 zXZK#r8FH~HmWA2d-J6-6_t{R^ood-@4nv zoS_@LGkjm7f8BlQzQEi|na6&PC+-)Fja}0nxHh1j%F}Q7PBDIo9>V0Cf5~@(H;w>% z;JU6ab6*ICu6&=m4Y%pu1~Xp+#@JoR_kp`XtA{y9u7!4rkscsD64^n##zWjj}`Ig}MXUL(CHpg4&9pU*x#!P;m&fme`mok2Z*(w{t=(#@u zYh7SnjVb7(6?-4h!n_1e*Pw*-r+}}py&ib1-U4=@hZj@cZ3#Vu{HazJVm=W(Jy6>b zZf-!Yj30?`j=JXQ3wc7iW4^FQB^5$>8bI{k%3B84MC&E|*aFMm$l@=ifxYv|Xf4pc z1UeLIJ2?__rJOp_7fN|8k}~PyhdyHr%Nfbqe=6Xj&fLa~RAyR4@zI8HhjAs=BYp2< z4sX7P{((?T%k}NNR5`LZj?!|yUml`G4{JQGgTv3^J@3a~W({EqoNAAjlFyjPjU zovfd^UGs`GuACpXI^Xi&^e_1grv<6imEl~#e~s|B{29m-vCPl|A0aj{Zk@qPGNv(> zlT#b8?X0aoL0>G5FwdivW^=k(IZ`NVrD&BIJ)F!)Wo9uqlqjRC=8#!E3gc+(g%sAJ zGA-(GOc8rD|M>j*5wRELNMXKWSyI@WMj0gG@RMH~dzI^P9#ocRP_jM}YWC!_v$FZ2 zw3Uu>S~xOqETWg82ljRDDIoazD?!gWKCDDM7n2|tWIa=D#j5Ec^=yA75Q=L()(h33 zC+-`-Sx2qlv;HRd%iNt+4x)oW(4x}C95{waUk65 z$y+VZu|JWkpScYP#5Y1rvK@m2I9UCXe`EZ=k$r`552S3pq1G+$nprP%H9OGc#QosD z!{>XE3B51(E^dN4eg}PC^9Q0yy5Ezp6W73B*7+T9pBhK#YDKIi+u$mz0p`EuT4%Le zab`@biLD~6*t7P)UQ!$pjWa^Kqp+AXtY{|p?KFuPc*kU7CxgWV-^mt74hz0t3CFJw>8zUx~ep@NS-n7NIf`! zUDkEhNyz@D!U=r92;Sfss>Bo2UwTHwU5HOp?VHEjknr?#A=J z$MC`4;#!@du5Op{lz}G?^X^OULihD1n`RzbCpM7d6jz+9^V4~5&M9AYPon;c*Cbfw zyp7rJa-5v5$r)wUbIMIQQMS8Jshf4iGlHgb_k{OQvo~wA63S=dD!by0Tu1YnxsHSx z)$JMjUHG8)o`yIZs&Xfclr`Wn@?5bxry5@@?h|JGRLrkDpXQ;&Fj!0RnC6%Hu7|x_ zwz~Ndo}|)qEz`}9#oDd@PN16A(pJ@K;{65nS$Qkfk@~&aeZ2be_^%>~n9uSpm6my~ z*eB~gfA~8PlUFPwzG*k9?G43Yxbu>q4Jpr456jjNpQr308|_N8?a9gVKz@NSg3j^R PAlYC0e2w1Q>cIa1$dA9m delta 923 zcmaEnu_>DA|G$kcdl)AxaLX`OPkzWGJUND`jI^WYYG8vP21rak z$F2l4<-#9R>%6>dAj4 zRkf{wL68c>wm@7B#O^>|2{3?M7!tujrN96RSV-W?i!22@;)AXQ*nbW(HXuGB$7~i9 zD`lpF<&D5NkeKWz?FJ4RP)reaz(pBIXiVR{K=v3j$kljU3sYxiYKjw;D{%q$$qRHlh0`@f#M5jPz)Z6c?F~=H|SIlsnWsFYjTX9*yIa9a~%}b ofN7);hZ_i`6_C9ShHXUJ+n{5EV(%BDrpa~2PCzU-`I&JO0FaaMjsO4v diff --git a/Tests/xDSCSEPVIE.Tests.ps1 b/Tests/xDSCSEPVIE.Tests.ps1 index 36a447e..828fc7b 100644 --- a/Tests/xDSCSEPVIE.Tests.ps1 +++ b/Tests/xDSCSEPVIE.Tests.ps1 @@ -1,19 +1,58 @@ Import-Module -Name .\DSCResources\xDSCSEPVIE\xDSCSEPVIE.psm1 +$Global:DSCModuleName = 'xDSCSEPVIE' +$Global:DSCResourceName = 'xDSCSEPVIE' + InModuleScope -ModuleName xDSCSEPVIE -ScriptBlock { - $VIELocation = 'C:\Temp\vie.exe' + $VIELocation = 'C:\Temp\doesntmatter.exe' - Describe -Name 'Testing if functions return correct objects' -Fixture { + $global:mockedVolume = [pscustomobject] @{ + FileSystemLabel = 'myLabel' + DriveLetter = 'C' + } + $global:mockedCSVSuccess = [pscustomobject] @{ + DriveLetter = 'C' + DateScanned = (Get-Date -Format dd/MM/yyyy) + } + $global:mockedCSVFailure = @() + $global:mockedCSVFailure += [pscustomobject] @{ + DriveLetter = 'C' + DateScanned = (Get-Date -Format dd/MM/yyyy) + } + $global:mockedCSVFailure += [pscustomobject] @{ + DriveLetter = 'D' + DateScanned = (Get-Date -Format dd/MM/yyyy) + } + + Describe -Name 'Testing mocks' -Fixture { + Mock -CommandName Import-CSV -MockWith { + $global:mockedCSVSuccess + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } Mock -CommandName Test-Path -MockWith { - { - return $true - } + return $true + } + It -name 'import-csv' -test { + (Import-Csv).driveletter | Should Be 'C' + } + It -name 'get-volume' -test { + (Get-Volume).driveletter | Should Be 'C' + } + It -name 'test-path' -test { + Test-Path -Path C:\windows\temp\VIEDrives.csv | Should Be 'true' } + } + Describe -Name 'Testing if functions return correct objects' -Fixture { Mock -CommandName Import-CSV -MockWith { - [PSCustomObject]@{ - DriveLetter = 'C' - DateScanned = (Get-Date) - } + $global:mockedCSVSuccess + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true } It -name 'Get-TargetResource returns a hashtable' -test { Get-TargetResource -VIELocation $VIELocation | Should Be 'System.Collections.Hashtable' @@ -24,31 +63,47 @@ InModuleScope -ModuleName xDSCSEPVIE -ScriptBlock { } } - Describe -Name 'Testing Get-TargetResource present/absent logic' -Fixture { - Mock -CommandName Test-Path -MockWith { - { - return $true - } - } + Describe -Name "Testing $($Global:DSCResourceName)\Get-TargetResource present/absent logic" -Fixture { Mock -CommandName Import-CSV -MockWith { - [PSCustomObject]@{ - DriveLetter = 'C' - DateScanned = (Get-Date) - } + $global:mockedCSVSuccess + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true } - It -name 'Get-TargetResource should return present' -test { (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'Present' } Mock -CommandName Import-CSV -MockWith { - [PSCustomObject]@{ - DriveLetter = 'GG' - DateScanned = (Get-Date) - } + $global:mockedCSVFailure } It -name 'Get-TargetResource should return absent' -test { (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'Absent' } - + } + + + + Describe -Name "Testing $($Global:DSCResourceName)\Test-TargetResource logic" -Fixture { + Mock -CommandName Import-CSV -MockWith { + $global:mockedCSVSuccess + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true + } + It -name 'Test-TargetResource should return true' -test { + Test-TargetResource -VIELocation $VIELocation -Ensure Present | Should Be 'True' + } + Mock -CommandName Import-CSV -MockWith { + $global:mockedCSVFailure + } + It -name 'Test-TargetResource should return false' -test { + Test-TargetResource -VIELocation $VIELocation -Ensure Absent | Should Be 'True' + } } } From 2aa1cb96c6e7036a48e93fc69f36ae252144bdba Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 9 Aug 2016 12:46:26 +1000 Subject: [PATCH 6/9] Updated pester tests and resource logic --- DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 | Bin 13416 -> 13548 bytes Tests/xDSCSEPVIE.Tests.ps1 | 143 ++++++++++++------------ 2 files changed, 74 insertions(+), 69 deletions(-) diff --git a/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 b/DSCResources/xDSCSEPVIE/xDSCSEPVIE.psm1 index d3e21e194212e658c4e5646cefdd16fb4ce78e80..44c22273f1e6a1fb7b6f1098e5887dc16016c2b3 100644 GIT binary patch delta 94 zcmaEn@g{SE-ee^~g^hMBY?JrsicQ|5BQe=Qk#CYH%j9=DQj;gJPMGXq$T7K!T?;5} x0F;uLtjEze*-cMl@)~2V$sWc*lLOd9CZA&$ncTo8Gucm(3n;I(c@M`LZ2&JcAM*eJ delta 74 zcmaEp`66S2-bOnSw#mCVlqM(eb4I>*GR`t>03nqd8~^|S diff --git a/Tests/xDSCSEPVIE.Tests.ps1 b/Tests/xDSCSEPVIE.Tests.ps1 index 828fc7b..74241d8 100644 --- a/Tests/xDSCSEPVIE.Tests.ps1 +++ b/Tests/xDSCSEPVIE.Tests.ps1 @@ -9,44 +9,21 @@ InModuleScope -ModuleName xDSCSEPVIE -ScriptBlock { $global:mockedVolume = [pscustomobject] @{ FileSystemLabel = 'myLabel' DriveLetter = 'C' + DriveType = 'Fixed' } - $global:mockedCSVSuccess = [pscustomobject] @{ + $global:mockedCSV = @() + $global:mockedCSV += [pscustomobject] @{ DriveLetter = 'C' DateScanned = (Get-Date -Format dd/MM/yyyy) } - $global:mockedCSVFailure = @() - $global:mockedCSVFailure += [pscustomobject] @{ - DriveLetter = 'C' - DateScanned = (Get-Date -Format dd/MM/yyyy) - } - $global:mockedCSVFailure += [pscustomobject] @{ - DriveLetter = 'D' + $global:mockedCSV += [pscustomobject] @{ + DriveLetter = 'GG' DateScanned = (Get-Date -Format dd/MM/yyyy) } - Describe -Name 'Testing mocks' -Fixture { - Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVSuccess - } - Mock -CommandName Get-Volume -MockWith { - $global:mockedVolume - } - Mock -CommandName Test-Path -MockWith { - return $true - } - It -name 'import-csv' -test { - (Import-Csv).driveletter | Should Be 'C' - } - It -name 'get-volume' -test { - (Get-Volume).driveletter | Should Be 'C' - } - It -name 'test-path' -test { - Test-Path -Path C:\windows\temp\VIEDrives.csv | Should Be 'true' - } - } Describe -Name 'Testing if functions return correct objects' -Fixture { Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVSuccess + $global:mockedCSV } Mock -CommandName Get-Volume -MockWith { $global:mockedVolume @@ -64,46 +41,74 @@ InModuleScope -ModuleName xDSCSEPVIE -ScriptBlock { } Describe -Name "Testing $($Global:DSCResourceName)\Get-TargetResource present/absent logic" -Fixture { - Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVSuccess - } - Mock -CommandName Get-Volume -MockWith { - $global:mockedVolume - } - Mock -CommandName Test-Path -MockWith { - return $true - } - It -name 'Get-TargetResource should return present' -test { - (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'Present' - } - Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVFailure - } - It -name 'Get-TargetResource should return absent' -test { - (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'Absent' + foreach ($drivetest in $global:mockedCSV ) + { + if ($drivetest.driveLetter -in $global:mockedVolume.driveLetter) + { + Mock -CommandName Import-CSV -MockWith { + $drivetest + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true + } + It -name "Get-TargetResource should return present for drive letter ($($drivetest.driveletter))" -test { + (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'Present' + } + } + else + { + Mock -CommandName Import-CSV -MockWith { + $drivetest + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true + } + It -name "Get-TargetResource should return absent for drive letter ($($drivetest.driveletter))" -test { + (Get-TargetResource -VIELocation $VIELocation).Values | Should Be 'absent' + } + } } } - - - Describe -Name "Testing $($Global:DSCResourceName)\Test-TargetResource logic" -Fixture { - Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVSuccess - } - Mock -CommandName Get-Volume -MockWith { - $global:mockedVolume - } - Mock -CommandName Test-Path -MockWith { - return $true - } - It -name 'Test-TargetResource should return true' -test { - Test-TargetResource -VIELocation $VIELocation -Ensure Present | Should Be 'True' - } - Mock -CommandName Import-CSV -MockWith { - $global:mockedCSVFailure - } - It -name 'Test-TargetResource should return false' -test { - Test-TargetResource -VIELocation $VIELocation -Ensure Absent | Should Be 'True' - } - } -} + Describe -Name "Testing $($Global:DSCResourceName)\Get-TargetResource present/absent logic" -Fixture { + foreach ($drivetest in $global:mockedCSV ) + { + if ($drivetest.driveLetter -in $global:mockedVolume.driveLetter) + { + Mock -CommandName Import-CSV -MockWith { + $drivetest + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true + } + It -name "Test-TargetResource should return true for drive letter ($($drivetest.driveletter))" -test { + Test-TargetResource -VIELocation $VIELocation -Ensure Present | Should Be 'True' + } + } + else + { + Mock -CommandName Import-CSV -MockWith { + $drivetest + } + Mock -CommandName Get-Volume -MockWith { + $global:mockedVolume + } + Mock -CommandName Test-Path -MockWith { + return $true + } + It -name "Test-TargetResource should return false for drive letter ($($drivetest.driveletter))" -test { + Test-TargetResource -VIELocation $VIELocation -Ensure Absent | Should Be 'True' + } + } + } + } +} \ No newline at end of file From a70b23feb732e0934d4d69740e452dc57079b458 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 9 Aug 2016 12:48:24 +1000 Subject: [PATCH 7/9] updated readme.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index eb3ed2f..b5ade54 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +# 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 ## From ab104ac9f227e517dbb81820496f6512d267d3e8 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 9 Aug 2016 12:53:19 +1000 Subject: [PATCH 8/9] Updated appveyor yaml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index c01461d..bd4c6ae 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -49,7 +49,7 @@ deploy_script: Write-Verbose -Message 'Creating project artifact' -Verbose $stagingDirectory = (Resolve-Path -Path ..).Path $manifest = Join-Path -Path $pwd -ChildPath '*.psd1' -Resolve - (Get-Content $manifest -Raw).Replace('1.6', $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest + (Get-Content $manifest -Raw).Replace('2.6', $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest $zipFilePath = Join-Path -Path $stagingDirectory -ChildPath "$env:APPVEYOR_PROJECT_NAME-$env:APPVEYOR_BUILD_VERSION.zip" Add-Type -AssemblyName System.IO.Compression.FileSystem [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFilePath) From fb658a304a731378615e42af6eae43e6c308619c Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 9 Aug 2016 13:11:33 +1000 Subject: [PATCH 9/9] Updated metadata --- xDSCSEPVIE.psd1 | Bin 6564 -> 6974 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/xDSCSEPVIE.psd1 b/xDSCSEPVIE.psd1 index bf8018de7f250078f6a9b5c20954f0750a6ea82b..442fe66fd992cf3ce38b89c52edc0bb97a2331b6 100644 GIT binary patch delta 460 zcmZ9I!AiqG5Qaz67bs{!5ZSvWMFbDtq!#g{DA@Cwu4yD~BuSg})Q89ec<}**+`afB zzKGyAYq3z4NoM~2=bwM}{p|DnV?XF#%3MmBO2&UBM#k-7@U_=`caGQhvH&aqmEib4 zK$(g4Elwhk5&1-3X-_Rm-%<{5hIuN^}Tk%KH5r6w)1x>O4FLwB@vPN;V^LhgqDlde_BNez9* zhAFwWE{TN7%F_nZp$3NT{Q^t(Hds;%PQv!5bJA`4y`$SHKnbys3mI_Yjmrg6A#E9h i1~BxoRaD(p3|fKKa>erxi4jlipR;*8IBn}*KllZRlv{WJ delta 65 zcmdmIw#0aY2s3LULl#5%W>x0HjFTNW*(R5gSUMsRY2C<|`@LlHwh UP+2NNGDFGa`(pN+g(P&C0ZkDR0ssI2