J jgirone Jan 2, 2010 #1 findstr /C:”Cannot repair member file” C:\windows\logs\cbs\cbs.log >sfcdetails.txt yields: FINDSTR: Cannot open repair FINDSTR: Cannot open member FINDSTR: Cannot open file" PLEASE HELP--AM TOO DUMB TO KNOW WHAT IS SYNTAXED INCORRECTLY
findstr /C:”Cannot repair member file” C:\windows\logs\cbs\cbs.log >sfcdetails.txt yields: FINDSTR: Cannot open repair FINDSTR: Cannot open member FINDSTR: Cannot open file" PLEASE HELP--AM TOO DUMB TO KNOW WHAT IS SYNTAXED INCORRECTLY
Tmagic650 Posts: 17,233 +234 Jan 2, 2010 #2 Try the system file checker - go to start > run and type in sfc /scannow. Note the space between the c and the /...
Try the system file checker - go to start > run and type in sfc /scannow. Note the space between the c and the /...
LookinAround Posts: 6,429 +188 Jan 2, 2010 #3 jgirone said: findstr /C:”Cannot repair member file” C:\windows\logs\cbs\cbs.log >sfcdetails.txt yields: FINDSTR: Cannot open repair FINDSTR: Cannot open member FINDSTR: Cannot open file" PLEASE HELP--AM TOO DUMB TO KNOW WHAT IS SYNTAXED INCORRECTLY Click to expand... Either 1) Put quotes around the full file path findstr /C:”Cannot repair member file” "C:\windows\logs\cbs\cbs.log" >sfcdetails.txt or 2) Use a system variable in the file path findstr /C:”Cannot repair member file” %windir%\logs\cbs\cbs.log >sfcdetails.txt
jgirone said: findstr /C:”Cannot repair member file” C:\windows\logs\cbs\cbs.log >sfcdetails.txt yields: FINDSTR: Cannot open repair FINDSTR: Cannot open member FINDSTR: Cannot open file" PLEASE HELP--AM TOO DUMB TO KNOW WHAT IS SYNTAXED INCORRECTLY Click to expand... Either 1) Put quotes around the full file path findstr /C:”Cannot repair member file” "C:\windows\logs\cbs\cbs.log" >sfcdetails.txt or 2) Use a system variable in the file path findstr /C:”Cannot repair member file” %windir%\logs\cbs\cbs.log >sfcdetails.txt