Monthly Archives: March 2017

SharePoint – how to install a dll?

You need to set-alias to the gacutil first: Set-Alias Name: Gacutil Value: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe Then you can run these commands to install/uninstall dll: Gacutil /i “E:\mydir\myassembly.dll” Gacutil /u myassembly

Posted in Uncategorized | Leave a comment

Grails cannot start app because of error ClassNotFoundException

If you get this error when you try to start your grails app: Caused by: java.lang.ClassNotFoundException: sun.tools.native2ascii.Main Copying %Java_Home%/lib/tools.jar to %Java_Home%/jre/lib/ext/tools.jar fixed this problem. (a better approach is to set up JRE path to the directory JDK, but Oracle is … Continue reading

Posted in Uncategorized | Leave a comment

Windows 10 print with CUPS

Windows 10 sucks. I have a Brother HL2240 printer and it is connected to my Raspberry Pi2. I installed CUPS on it and I can print from my Mac and iPhone, iPad, etc. I tried to make it work with … Continue reading

Posted in Uncategorized | 2 Comments