
- You need version 10.1 of Adobe Flash (currently only available as beta software), you will find it here; http://labs.adobe.com/downloads/flashplayer10.html
- The box is generally good at recognizing your video and music files (even series etc), BUT if it does not recognize the media file (it does so from the naming of the file) it wont show it :-/ thus you will need to rename it to a naming convention it understands which seem silly and acquad. From what I can tell it will be getting the data (including photos) from IMDB.
- I had some issues getting it to accept a share on a Windows 2003 server, I could ‘bypass’ this by mapping the share as a drive letter on my Win 7 machine where I ran Boxee but I am still puzzled as to why it did not seem to accept a simple Windows Share.
- A further cause of concern is, what data is reported back to the producers of this software!? Do they get the complete list of my music, video etc. archives? Sadly I don’t know which concerns me as you have to register to run the software 😐


- Adobe Flash 10.1
- H.264 (MKV, MOV)
- VC-1
- WMV
- MPEG-1
- MPEG-2
- MPEG-4
- AVI
- Xvid
- Divx
- PCM/LPCM
- VOB
- MP3
- WMA
- WAV
- AIFF
- FLAC
- AAC
- DTS
- Dolby Digital
- Ogg Vorbis
- JPEG
- TIFF
- BMP
- PNG
So if you want to be totally up-beat or perhaps are testing out Boxee then you will want to install the latest Adobe Flash Player (Boxee actually seem to require this), but no worries you can get it right here;
http://labs.adobe.com/downloads/flashplayer10.html
Among other things this version will add HW acceleration, neat for Netbooks as compatible GFX cards now can assist in playing video and thus perhaps adding HD playback to your otherwise slow Atom processor (however this DO require a compatible GFX card to work like the Nvidia ION and others).
Here is how to start and stop a service via WMI calls from a .vbs;
'Start Service strServiceName = "Alerter" Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") Set colListOfServices = objWMIService.ExecQuery ("Select * from Win32_Service Where Name ='" & strServiceName & "'") For Each objService in colListOfServices objService.StartService() Next
'Stop Service strServiceName = "Alerter" Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") Set colListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name ='" & strServiceName & "'") For Each objService in colListOfServices objService.StopService() Next