SFCList [ -l [pattern] ] [ -p <filepath> ] 
		 
		       
		-l [pattern]   List all system file protected through SFC which matches 
		 
                       
		the string pattern (optional) 
		       
		-p <filepath>  Verify if the file is protected by SFC 
		 
		Example: 
		       
		//List all the protected files having text 'win' 
		       
		sfclist -l win 
		 
		        //List all the protected dll files 
		        sfclist -l .dll 
		 
		        //Check if the file is protected by SFC 
		        sfclist -p "c:\windows\system32\kernel32.dll"
		 
		 
		
		 |