public UnattendAuditInstaller(ILogging loggingInstance, string deploymentCachePath)
        {
            logger = new Logging(loggingInstance);
            var sourceroot = Path.GetFullPath(Environment.ExpandEnvironmentVariables(deploymentCachePath));

            ZipInfo = ServiceControlAuditZipInfo.Find(sourceroot);
        }
        public ServiceControlAuditInstanceInstaller()
        {
            var appDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

            ZipInfo = ServiceControlAuditZipInfo.Find(appDirectory);
        }