Monthly Archive: January 2012

Jan 16

How can I disable a plugin in Google Chrome?

To disable a plugin in Google Chrome type chrome://plugins/ in the address bar (sometimes also called omnibox). A page with all plugins will be displayed and you can disable them easily by just clicking the “Disable” link.

Jan 08

Spell Checker in Axosoft OnTime

It seems that Axosoft does not intend to implement spell checker in the Windows client for OnTime Scrum Project Management Software. There is however a solution for the problem: AutoHotkey and "AutoCorrect for English" script. Download AutoHotkey from http://www.autohotkey.com/ Download "AutoCorrect for English" script for AutoHotkey from http://www.autohotkey.com/download/OtherDownloads.htm. Install AutoHotkey. Double click AutoCorrect.ahk file in …

Continue reading »

Jan 06

How can I get information about digital signatures of all files in the folder?

The following PowerShell code snippet allows you to get information about digital signatures of all files in a specific folder: Get-ChildItem *.* | foreach-object {Get-AuthenticodeSignature $_} All you have to do is start PowerShell, go to the folder you want to check and run the command.