18:52 < Kula> check your divx codecs
18:52 < Kula> and i’d recommend unregistering shmedia.dll
18:58 < Kula> to unregister that dll, do regsvr32 -u shmedia.dll
18:59 < Kula> its the thing that tells u length, does you nice little thumbnails, etc…. with certain codecs it can stop u deleting files cos it says they’re in use.
Archive for February, 2006
Explorer crashes when opening folders with videos
Wednesday, February 22nd, 2006Do not display the login screen in windows
Wednesday, February 22nd, 2006Start > Run > control userpasswords2
and uncheck the box at the top
when you press ok it’ll then ask you for the automatic user login details
calling batch files in batch files
Tuesday, February 14th, 2006Something I learned today:
When you want a dos batch file to run a few commands and some of them are also batch files, use “call” to start them, or else your script will stop after having called the first batch file.
Example:
file=test1.bat:
echo hi
file=test2.bat
call test1.bat
call test1.bat
output:
hi
hi