Archive for the ‘Windows’ Category

Virtual Box

May 11th, 2011

I’ve been trying Virtual Box (currently 4.0.6) out for the past few weeks on Windows 7 x64. I’ve got to say it’s scary to use. Especially after I got some emails from the daily/weekly anacron runs last night which simply state “Segmentation fault” from a test VM that I setup and left running. Ouch! I’ve also observed other random virtual disk corruption…

The only problem here is that the killer feature that no one else “supports” is the raw disk access. I want to use this for my primary file server. Can I trust Virtual Box? Maybe… the file server is running Nexenta with ZFS  over two 1TB disks in a Raid 1 configuration… or I could leave it on real hardware where it has a real chance of working without any problems :)

Posted in Operating Systems, Windows | Comments (0)

Amazing DOS Tricks :)

June 19th, 2008

http://www.dostips.com/DtTipsStringManipulation.php – Lots of String Manipulation tricks…

Posted in Windows | Comments (0)

Functions In DOS!

June 17th, 2008

…Do Stuff Here…

call :MakeShortCut

… Do Stuff Here
Goto End
:MakeShortCut
echo [InternetShortcut]>> “%CreateLinkAt%%NAME%.url”
echo URL=%URL%>> “%CreateLinkAt%%NAME%.url”
GOTO :EOF

:End

Posted in Favorites, Windows | Comments (0)

Store all files in a folder to a text file

April 29th, 2008

Gives a nice list that can be used in excel or your favorite text editor :)

dir /S /B /A-D > theList.txt

Posted in Windows | Comments (0)