tabs ↹ over ␣ ␣ ␣ spaces

by Jiří {x2} Činčura

Windows Defender updates automatically from Windows Update

9 Nov 2013 3 mins .NET, C#, Windows Update

Some time during last week I came across this tweet from Peter Ritchie.

Better granularity with @WindowsUpdate would be great, e.g. to be able to say auto install Defender Definition updates while choose others — Peter Ritchie (@peterritchie) November 2, 2013

I had and have exactly same feeling.

Sometimes I need to install the “Defender update” few times a week as it pops-up in updates. But frankly I don’t care about this update. Just go ahead and install it. But I do care about other updates. I’m a control freak. And also because I’m a developer. My machine contains a lot of weird software that may go nosedown after some update. So I want to know what’s going to happen with my machine with other updates. But you cannot say install this “type” of updates and ask for others.

I know. Majority of users are simply going to do either “keep my PC updated” or “do not touch anything” (seen a lot on kiosks and similar machines). Thus this is probably not going be implemented in Windows. But I’m a developer. That should be scriptable. Or some API should be there. Right?

After some quick search I found the API. And created a simple C# application that you can run once a day of after log in or … It checks for all updates, filters only “Defender updates” (though using lame string compare, so it might brake if the name changes), downloads and installs these. With some simple logging and exit statuses.

static int Main(string[] args)
{
	var session = new UpdateSession();
	var searcher = session.CreateUpdateSearcher();
	Log("Searching...");
	var searchResult = searcher.Search("IsInstalled=0 And IsHidden=0");
	var defenderUpdates = searchResult.Updates.Cast<IUpdate>()
		.Where(u => u.Title.IndexOf("Definition Update for Windows Defender", StringComparison.Ordinal) >= 0)
		.ToArray();
	if (defenderUpdates.Any())
	{
		Log("Going to install:");
		var updates = new UpdateCollection();
		foreach (var item in defenderUpdates)
		{
			updates.Add(item);
			Log("\t" + item.Title);
		}

		var downloader = session.CreateUpdateDownloader();
		downloader.Updates = updates;
		Log("Downloading...");
		var downloadResult = downloader.Download();
		Log("Result: {0} [0x{1}]", downloadResult.ResultCode, downloadResult.HResult.ToString("X"));
		if (downloadResult.ResultCode != OperationResultCode.orcSucceeded)
			return -1 * (int)downloadResult.ResultCode;

		var updater = session.CreateUpdateInstaller();
		updater.Updates = updates;
		Log("Installing...");
		var updateResult = updater.Install();
		Log("Result: {0} [0x{1}]", updateResult.ResultCode, updateResult.HResult.ToString("X"));
		if (updateResult.ResultCode != OperationResultCode.orcSucceeded)
			return -1 * (int)updateResult.ResultCode;

		return 0;
	}
	else
	{
		Log("Nothing to install.");
		return 0;
	}
}

static void Log(string message)
{
	Console.WriteLine(message);
	var fileMessage = string.Format("{0}|{1}", DateTimeOffset.Now.ToString(), message);
	File.AppendAllLines(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), "log.log"), new[] { fileMessage });
}
static void Log(string format, params object[] args)
{
	Log(string.Format(format, args));
}

Of course, it needs to run with Administrator privileges so the app.manifest is added to the project. You can find complete code on my GitHub. Feel free to contribute.

Profile Picture Jiří Činčura is .NET, C# and Firebird expert. He focuses on data and business layers, language constructs, parallelism, databases and performance. For almost two decades he contributes to open-source, i.e. FirebirdClient. He works as a senior software engineer for Microsoft. Frequent speaker and blogger at www.tabsoverspaces.com.