-
How to find your mac address / How to get your mac address into a variable using a batch file or the command line in Windows XP
In a batch file : for /f “tokens=3 delims=,” %%a in (‘”getmac /v /fo csv | findstr Local”‘) do set mac=%%a Value of mac address is now accessible in %mac% From the normal command line: for /f “tokens=3 delims=,” %a in (‘”getmac /v /fo csv | findstr Local”‘) do set mac=%a Value of mac address…
-
How to convert .MTS files to .AVI in Ubuntu using ffmpeg
Just a quick post. If you want to bulk convert .MTS files (from JVC or Sony HD camcorders) then you can use the below script: You’ll need csh and ffmpeg installed: sudo apt-get install csh ffmpeg Make a new file called convert (I use joe but you can use nano or whatever you prefer) joe…
-
CAP
I’m in the throws of writing a little two part application for work that allows users to see what computers are avaiable for work and allows us, the administrators to see who is and more importantly who was logged on when and where. The technical details of proposed implementation can be found here. The client…