-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcess-ComponentsScannerResults.ps1
75 lines (68 loc) · 2.74 KB
/
Process-ComponentsScannerResults.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[CmdletBinding()]
Param(
[string]$SourceFile = "$($env:USERPROFILE)\Desktop\ComponentsScanner.txt",
[switch]$ExcludeCorruptValueData,
[switch]$ExcludeMissingRegistryKeys
)
## Includes
. .\Write-Log.ps1
## Constants
$cwd = ".\"
If (!(Test-Path $SourceFile -PathType leaf))
{
throw("-SourceFile must specify a file, such as .\ComponentsScanner.txt'")
}
$inFile = $SourceFile
$corruptComponentsFileBaseName = "Corrupt_Components"
$missingComponentsFileBaseName = "Missing_Components"
$dt = (Get-Date).ToString('yyyyMMdd_HHmm')
if (!$ExcludeCorruptValueData) {
# Search "==== Corrupt Value Data ====" section for keys to copy to "Corrupt_Components.txt"
$fromHere = (Select-String -Path $inFile -Pattern '==== Corrupt Value Data ====' | Select-Object LineNumber).LineNumber
$toHere = (Select-String -Path $inFile -Pattern '==== Repair Log ====' | Select-Object LineNumber).LineNumber - 1
$suggested = (Get-Content -Path $inFile | Select-Object -Index ($fromHere..$toHere) | Select-String -Pattern 'Key:')
If ($suggested -ne "")
{
$outFile = "$cwd$corruptComponentsFileBaseName.txt"
$outFileDt = "$cwd$($corruptComponentsFileBaseName)_$dt.txt"
If (Test-Path $outFile -PathType leaf) { Remove-Item $outFile }
$i = 0
# found some
ForEach ($line in $suggested)
{
($line -split "\\")[3] | Out-file -FilePath $outFile -Append
$i++
}
if ($i -ne 0)
{
Write-Log "$i Corrupt Value Data exported to $outFile"
If (Test-Path $outFile -PathType leaf) { Get-Item $outFile | Copy-Item -Destination $outFileDt}
Write-Log "... and to $outFileDt"
Write-Log "Correct corrupt identity values with Run-RegRecover"
}
}
}
if (!$ExcludeMissingRegistryKeys) {
# Search "== Missing Registry Keys ==" for DerivedData keys to copy to "Missing_Components.txt"
$fromHere = (Select-String -Path $inFile -Pattern '== Missing Registry Keys ==' | Select-Object LineNumber).LineNumber
$toHere = (Select-String -Path $inFile -Pattern 'Storing ' | Select-Object LineNumber).LineNumber - 1
$suggested = (Get-Content -Path $inFile | Select-Object -Index ($fromHere..$toHere) | Select-String -Pattern 'DerivedData\\')
If ($suggested -ne "")
{
$outFile = "$cwd$missingComponentsFileBaseName.txt"
$outFileDt = "$cwd$($missingComponentsFileBaseName)_$dt.txt"
If (Test-Path $outFile -PathType leaf) { Remove-Item $outFile }
$i = 0
# found some
ForEach ($line in $suggested)
{
($line -split "\ ")[2] | Out-file -FilePath $outFile -Append
$i++
}
Write-Log "$i Missing Registry Keys exported to $outFile"
If (Test-Path $outFile -PathType leaf) { Get-Item $outFile | Copy-Item -Destination $outFileDt}
Write-Log "... and to $outFileDt"
Write-Log "Correct missing registry keys with Run-SFCFixScriptBuilder and then Run_SFCFix -Script"
}
}
Write-Log 'Completed'