5. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/9/2018 12:16:34 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

5.1 Files compared

# Location File Last Modified
1 RAMS-2.3.0.zip\RAMS-2.3.0\ps\misc GetSpecificFeatureInfo.ps1 Wed Aug 22 16:02:02 2018 UTC
2 RAMS-2.3.0.zip\RAMS-2.3.0\ps\misc GetSpecificFeatureInfo.ps1 Thu Nov 8 21:18:20 2018 UTC

5.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 66
Changed 2 4
Inserted 0 0
Removed 0 0

5.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

5.4 Active regular expressions

No regular expressions were active.

5.5 Comparison detail

  1   <#
  2   .SYNOPSIS
  3       Utilit y and Test ing script  to retrie ve Feature  informati oni for a  specific f eature
  4  
  5   .DESCRIPTI ON
  6       Loop t hrough all  Webs to f ind a spec ific featu re and rep ort the fe ature info rmation to  the scree n. The Fea tureName 
  7       is har d coded in  the scrip t. 
  8  
  9   .EXAMPLE
  10       #when  run from t he powersh ell comman d prompt.
  11       .\GetS pecificFea tureInfo.p s1
  12  
  13   #>
  14   #Get-SPSit e "https:/ / DNS . URL /sites/IRB Applicatio ns" | Get- SPWeb -Lim it ALL |%{  Get-SPFea ture -Web  $_ } | Sel ect Displa yName,ID - Unique | S ort Displa yName
  15  
  16   #| Where $ _.DisplayN ame -match  "manage p ersonnel n otificatio n workflow
  17  
  18  
  19   #$site = G et-SPSite  "https:// DNS . URL /sites/IRB Applicatio ns"
  20   #$webs = G et-SPWeb - Limit All 
  21  
  22   Get-SPSite  -Limit Al l | % {$we bs += $_.A llwebs}
  23   if($webs.c ount -ge 1 ){
  24       foreac h($web in  $webs){
  25           $f eatures =  Get-SPFeat ure -Web $ web 
  26           #|  Where $_. DisplayNam e -match " manage per sonnel not ification  workflow"
  27           fo reach ($fe ature in $ features)  {
  28                if ($fea ture.Displ ayName -ma tch "manag e personne l notifica tion workf low") {
  29                    $fea ture | ft  -AutoSize 
  30                    #Wri te-Host "$ ($feature. DisplayNam e)" -Foreg roundColor  Yellow
  31                    #Wri te-Host "$ ($feature) " -Foregro undColor W hite
  32                }
  33           }
  34       }
  35    }