├── .gitignore ├── WMIAttempt.sln └── WMIAttempt ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── WMIAttempt.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/.gitignore -------------------------------------------------------------------------------- /WMIAttempt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt.sln -------------------------------------------------------------------------------- /WMIAttempt/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt/App.config -------------------------------------------------------------------------------- /WMIAttempt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt/Program.cs -------------------------------------------------------------------------------- /WMIAttempt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WMIAttempt/WMIAttempt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt/WMIAttempt.csproj -------------------------------------------------------------------------------- /WMIAttempt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EspressoCake/DefenderPathExclusions/HEAD/WMIAttempt/packages.config --------------------------------------------------------------------------------