27 June 2013

Staff's network drives often get disconnected

The static IP address of file server is in the DHCP IP scope. In the IP lease list, we can see the  IP address was assigned by another machine. When there is a network connection problem with the file server, its IP address was assigned by another machine. When the network connection problem is fixed, there may be an IP address conflict between the another machine and the file server, resulting that

20 June 2013

Add the Administrator’s Account to the Welcome Screen in XP Pro

http://www.petri.co.il/add_the_administrators_account_to_the_welcome_screen_in_xp_pro.htm


To add the administrator's account to the welcome screen in Windows XP:
  1. Open Registry Editor.
  2. In Registry Editor, navigate to the following registry key:
HKEY_LOCAL_MACHINE'SOFTWARE'Microsoft'Windows NT'CurrentVersion'Winlogon'SpecialAccounts'UserList
  1. Create the following entry:
Administrator: REG_DWORD
  1. Assign a value of 1.
  2. Close Registry Editor.

18 June 2013

Laptop computer shuts down automatically

Laptop computer shuts down automatically a few minutes after it is powered on.

Solution:

Clean the inside (especially CPU).

07 May 2013

Not operatable at all when logged on with an account

Symptom: Not operatable at all, e.g. you see nothing or things not relevent when you click Start, etc.

Resolution:
Delete the account, then re-create the account.

06 May 2013

24 April 2013

HTML code to play flash swf in IE, Chrome, and Firefox

<object width="400" height="40"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
< param name="SRC" value="bookmark.swf">
< embed src="bookmark.swf" width="400" height="40">
< /embed>
< /object>

HTML code to play WMV video in IE, Chrome and Firefox

Note: Chrome and Firefox would NOT play .wmv

<object width="100%" height="100%"
type="video/x-ms-asf" url="3d.wmv" data="3d.wmv"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="3d.wmv">
<param name="filename" value="3d.wmv">
<param name="autostart" value="1">
<param name="uiMode" value="full">
<param name="autosize" value="1">
<param name="playcount" value="1">
<embed type="application/x-mplayer2" src="3d.wmv" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed>
</object>