It's great!! But so far I haven't found the same options like in the free version, force update and stuff. And also it seems to update it every time even if everything matches up. I thought I triple checked my hash code, maybe I'm wrong.
Viewing post in Advanced Redlabs Update Utility comments
Hi!
There isn't a force update option in the Advanced Update Utility because it didn't feel necessary, it made a lot more sense to have the game just always be up to date.
To fix your always updating issue: sometimes GitHub adds an extra space to the end of your hash, which will make the Update Utility detect an update when there isn't one.
To have the Update Utility ignore the extra space, find this line in the code:
updateHash = client.DownloadString(hashURL.ToAntiCacheURL());
and replace it with
updateHash = client.DownloadString(hashURL.ToAntiCacheURL()).Trim();