/// <summary>
        /// verify and found all match of dll
        /// </summary>
        /// <returns></returns>
        public bool FindAllMatch()
        {
            RecordResultLog("Operation : Find All matching only mode (no modification)");

            var mainService = new MainService(this);
            var registryDataList = mainService.FindAllMatchingRegistryData();

            RecordResultLog(string.Format("Number of matched registry item found : {0}", registryDataList.Count), false);

            return true;
        }