##How to install Grunt
sudo npm uninstall -g grunt
sudo npm install -g grunt-cli
Prepare package.json file
npm init
Add grunt server dependency
npm install grunt --save-dev --no-bin-links
(no-bin-links tells npm to not create any symbolic links. There isn't a way - to my knowledge - of translating symlinks to a windows share)