-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRun-SFCFix.ps1
50 lines (43 loc) · 1.39 KB
/
Run-SFCFix.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
[CmdletBinding()]
Param(
[string]$Script,
[string]$SysNativeToolsPath = '.\',
)
## Includes
. .\Write-Log.ps1
## Constants
$processName = 'SFCFix.exe'
## Verify before run
$processPath = Join-Path -Path $SysNativeToolsPath -ChildPath $processName
if (!(Test-Path -Path $processPath -PathType Leaf))
{
Write-Log -Level ERROR "PATH_NOT_FOUND: `"$processPath`""
Write-Log "Specify the location of the SysNative tools using -SysNativeToolPath <directory>"
exit
}
if ($Script -ne $null) {
if (!(Test-Path -Path $Script -PathType Leaf))
{
Write-Log -Level ERROR "FILE_NOT_FOUND: `"$Script`""
Write-Log "Specify the script file using -Script <file>"
exit
}
}
## Run
if ($Script -ne $null) {
$argumentList = "`"$Script`""
}
Write-Log "Starting `"$processPath`" $argumentList"
$out = Start-Process -FilePath $processPath -ArgumentList $argumentList -Wait -PassThru -NoNewWindow | Out-File $logFile
if ($out.ExitCode -ne 0) {
Write-Log -Level ERROR "Process returned error $($out.ExitCode)"
exit
}
# Move output file to local directory and make a backup of the results in the current directory
$dt = (Get-Date).ToString('yyyyMMdd_HHmm')
$txtPath = "$($env:USERPROFILE)\Desktop\SFCFix.txt"
$txtPathLocal = ".\SFCFix.txt"
$logPathDt = ".\SFCFix_$dt.log"
Get-Item -Path $txtPath | Move-Item -Destination $txtPathLocal
Get-Item -Path $txtPathLocal | Copy-Item -Destination $logPathDt
Write-Log 'Completed'