Today one of our SharePoint guys messaged me over Lync with a need to setup social web parts in SharePoint. What he noticed was that he was looking for the note board, organization browser, tag cloud , etc. It seems that somewhere in the past this feature was lost. Possibly during the SharePoint upgrade from 2007 […]
Category: How-To
To check the local domain controller for a computer or server simply type the following in the command prompt: echo %logonserver% What this does is print the value of the environment variable giving you the machine name of the domain controller being used.
I have run into a little issuing while using Microsoft’s Lync 2010. It all started when I logged into a test workstation. After my testing of this awesome product I signed out. What I noticed was that my log-on info was still there and I was able to log into Lync. I would like to stop this […]
Some of us may have looked for this, most of us have found it. Simply change directory to /opt/vyatta/etc/config to find the Vyatta router config.boot
I recorded a mp4 video file and I would like to strip away the audio because i just don’t need it. Using ffmpeg in ubuntu made this task a very simple one. Simply run the following command: ffmpeg -i file-in.mp4 -vcodec copy -an file-out.mp4 As you see, a very quick helpful solution.