SP3 OS On Dell

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Monday, June 14, 2010

Unpleasant website subscription encounter with Network Solutions (Rev: 1.0)

Posted on 7:24 PM by Unknown


I subscribed to Network Solutions (charge US$89.62 for 1 year plan) to setup a website on 23/4/2010. From 23/4/2010 (Friday) to 24/4/2010 (Saturday), I had problem securely transferring my files (using Ws_FTP Pro and Adobe Dreamweaver CS4) to their server using the Secure File Transfer Protocol (SFTP) . Hence, I decided to cancel my subscription on 25/4/2010 (Sunday) by login to their website to submit my request (request no: #1-462076725).




Bernadeth001 from Network Solutions responded to my cancellation request on 28/4/2010 (Wednesday) requesting me to submit a pre-authenticated service request that required me to login to their website to submit the cancellation request again.



I did it on 28/4/2010 or 29/4/2010 (if I remember this date correctly as I successfully submitted online but did not received their acknowledgement email for that submission ?). I was still charged US$89.62 for the Network Solutions subscription on my credit card bill. Interest charge was imposed because I did not pay for the Network Solutions subscription on my credit card bill.

As I received no response from the Network Solutions, I email Network Solutions on their email address customerservice@networksolutions.com on 7/5/2010 to ask about my cancellation status but the email failed because it is not an active email address. I realized that the only way to communicate with Network Solutions is either to login to their website and submit their online form, or call their support number which I did not try because of the oversea call charges.

Hence, I login to Network Solutions website again on 7/5/2010 to send my request for the update status of my cancellation request. 1 month plus had passed, I still received no response from Network Solutions.

"Our Customer Service Specialists will investigate your inquiry and send you a response within 1 business day." This "...response within 1 business day" promise from their acknowledge email seems like a joke to me.


Another unpleasant experience was that Network Solutions keeps sending their advertisement email to me despite that I had send my unsubscribe request online (http://www.networksolutionsunsubscribe.com/) twice to them.
Read More
Posted in | No comments

Wednesday, May 26, 2010

Solved "BOOTMGR is missing" error in Windows 7 OS (Rev: 1.0)

Posted on 6:28 PM by Unknown


After the Dell Optiplex GX620 pc with Windows 7 Enterprise x86 Operating System (OS) was powered on and had completed the Power On Self Test (POST), the "BOOTMGR is missing. Press Ctrl+Alt+Del to restart" error message appeared. I performed the below to solve the "BOOTMGR is missing" error:

  1. Booted up the Dell Optiplex GX620 pc from the Windows 7 Enterprise DVD. When the "Press any key to boot from CD or DVD" message appeared, simply press any key. After Windows 7 had finished loading files, it will start Windows. Kindly click "Next" when it prompt the 'Enter your language and other preferences and click "Next" to continue'.

  2. Clicked the "Repair your computer" options. At the "System Recovery Options" dialog box, I chose the "Windows found problems with your computer's startup options. Do you want to apply repairs and restart your computer ?" and clicked the "Repair and restart" button. After a while, the pc restarted but it still had the "BOOTMGR is missing" error.

  3. Hence, I boot the pc from the Windows 7 Enterprise DVD again. I clicked the "Repair your computer" options. At the "System Recovery Options" dialog box, I chose the "Use recovery tools that can help fix problems starting windows. Select an operating system to repair. If your operating system isn't listed, click Load Drivers and then install drivers for your hard disks", select the "Windows 7 Enterprise (recovered)" OS and clicked "Next".

  4. At the "System Recovery Options" dialog box, I clicked "Startup Repair" -> "Automatically repair". After a while, I restarted the computer to complete the repairs by clicking the "Finish" button. The Dell Optiplex GX620 pc boot up Windows 7 Enterprise OS normally without showing the "BOOTMGR is missing" error.

    Notes:

    At the "Click here for diagnostic & repair details",

    Session details
    ---------------
    System Disk = \Device\Harddisk0"
    Windows directory = c:\windows
    AutoChk Run = 0
    Number of root causes = 1

    Boot caused found:
    ------------------
    Boot manager is missing or corrupt.
    Repair action: File repair
    Result: Completed successfully. Error code = 0x0
Read More
Posted in | No comments

Wednesday, May 19, 2010

Using shsurdrv.exe to create a ramdrive in MSDOS on pc with memory greater than 2 GB (Rev: 1.1)

Posted on 2:37 AM by Unknown


I created a MSDOS boot CDROM disc to run ghost.exe so that I can backup or restore computer. I used WinZip to compress ghost.exe as ghost.zip in order to reduce the ghost file size. Then, I used xmsdsk.exe v1.9I (a ramdrive application) to create a ramdrive in MSDOS so that I can unzip the ghost.zip to the ramdrive as shown below in the autoexec.bat (no need to configure xmsdsk.exe in the config.sys):

autoexec.bat
---------------
set ramdrv=r:
rem To create a 16 MB ramdrive at r drive
rem on top of the XMS memory
(/t)
xmsdsk.exe 16384 %ramdrv% /y /t
if exist ghost.zip pkunzip.exe -e ghost.zip %ramdrv%


However, xmsdsk.exe does not function correctly on computer with memory greater than 2 GB because it will produce a "XMS get free mem error". On computer with less than or equal to 2 GB of RAM, xmsdsk.exe runs OK without the "XMS get free mem error". Removing the /t parameter (top of the XMS memory) in xmsdsk.exe also has the same "XMS get free mem error".


Hence, I removed xmsdsk.exe and try using another ramdrive application, shsurdrv.exe v1.11 in MSDOS. I added shsurdrv.exe in the config.sys (no need to add shsurdrv.exe in the autoexec.bat) as shown below:

config.sys
------------
files=40
buffers=30
lastdrive=z
dos=high,umb
device=himem.sys
device=emm386.exe
rem Create a 16 MB ramdrive quietly at r drive
install=shsurdrv.exe 16384K,R: /Q
SHELL=COMMAND.COM /E:4096 /P

However, I encountered the "too big for memory" error when running shsurdrv.exe in MSDOS on a Dell Optiplex 755 or Optiplex 960 computer with 4 GB memory. On computers (eg: Dell Optiplex GX620 with 1 GB RAM or Dell Optiplex GX270 with 2 GB) with less than or equal to 2 GB of RAM, shsurdrv.exe runs OK without showing the "too big for memory" error.

I commented out the running of "device=emm386.exe" in the config.sys and the "too big for memory" error when running shsurdrv.exe in MSDOS on a Dell Optiplex 755 or Optiplex 960 computer with 4 GB memory did not appeared. I have no problem running ghost.exe in the ramdrive (r: drive), except that it is a bit slow (about 4 to 5 seconds) waiting for the ghost program to start.

Hence, you should add shsurdrv.exe in the config.sys and deleted the "device=emm386.exe" as shown below:

config.sys
------------
files=40
buffers=30
lastdrive=z
dos=high,umb
device=himem.sys
rem Create a 16 MB ramdrive quietly at r drive
install=shsurdrv.exe 16384K,R: /Q
SHELL=COMMAND.COM /E:4096 /P

autoexec.bat
----------------
set ramdrv=r:
if exist ghost.zip pkunzip.exe -e ghost.zip %ramdrv%
Read More
Posted in | No comments

Monday, May 3, 2010

现代名句精华 (Rev: 1.0)

Posted on 6:15 PM by Unknown


• 樹多必有枯枝,人多必有白癡。
• 君子報仇,三年不晚。小人報仇,一天到晚。
• 帥有個屁用!到頭來還不是被卒吃掉!
• 騎白馬的不一定是王子,可能是唐僧。
• 帶翅膀的不一定是天使,也可能是 "鳥人"。
• 就算是Believe, 中間還是有個 lie。
• 就算是Friend, 最後還是會有個 end
• 就算是Lover, 最後還是會 over。
• 就算是forget, 也要先 get才行。
• 就算有個wife, 心裡也要假設 if。
• 樹不要皮,必死無疑。人不要臉,天下無敵。
• 人生 (人蔘),不過比當歸長一點。
• 懷才就像懷孕,時間久了才能讓人看出來。
• 上帝給了我們七情六慾,我們卻把它們變成了色情和暴力。
• 最浪漫的三個字不是 "我愛你",而是 "在一起"。
• 前程四緊就是:手頭緊、眉頭緊、衣服緊、時間緊。
• 青春就像衛生紙。看著挺多的,用著用著就不夠了。
• 女人的愛是用說的,男人的愛是用做的。
• 幸福離我們很近,但,我們都忘了靠近。
• 天底下沒有所謂複雜的事情,是人的思維和感情把它複雜化了。
• 福利不是問題,問題是沒福利。錢不是問題,問題是沒錢。
• 今日事今日畢,過了今日就不必。
• 皮夾裡的發票永遠比鈔票多。
• 我不是隨便的人,但我隨便起來不是人。
Read More
Posted in | No comments

Monday, April 5, 2010

Solved unknown devices in Windows 7 Enterprise (x64) OS on Dell Optiplex GX960 pc (Rev: 1.0)

Posted on 3:21 AM by Unknown


After installing Windows 7 Enterprise (x64) Operating System (OS) on the Dell Optiplex GX960 computer with 8 GB DDR2 800 Mhz SDRAM memory, there are 2 unknown devices in the Control Panel -> System -> Hardware -> Device Manager as shown below:

1. PCI Communication Controller
-> Installing the device drivers using Intel AMT HECI (from Chipset category) version 5.2.10.1023 PV, A02 from DELL.

2. PCI serial port
-> Installing the device drivers using Intel AMT SOL/LMS (from Chipset category) version 5.2.10.1023 PV, A02 from DELL.
Read More
Posted in | No comments

Monday, March 29, 2010

Change Roxio Creator DE 10.3 from Chinese interface to English interface (Rev: 1.0)

Posted on 7:33 PM by Unknown


If your Roxio Creator DE 10.3 software installed in your Dell computer or workstation is of Chinese interface, and you want to change the Roxio Creator DE 10.3 software back to English interface, you will find that there is no options in Roxio Creator DE 10.3 software to change the language from Chinese language back to English language. Roxio Customer Care gave the below reply when you asked for their support:

This is just to inform you that when it comes to changing the language of your pc, you will need to contact your computer manufacturer, Dell, for assistance. It's a common and minimal issue our customers were getting and only if they are using Dell PC.


Assume that your computer is running Windows XP Professional SP3 Operating System. Please perform the below steps to change your Roxio Creator DE 10.3 software back to English interface:

1) Kindly click Start → Control Panel → Add or Remove Programs. Select "Roxio Creator DE 10.3" and click the "Change/Remove" button to uninstall the Roxio Creator DE 10.3 software.

2) Kindly click Start → Control Panel → Regional and Language Options. Click the "Advanced" tab. Change the "Language for non-Unicode programs" from "Chinese (PRC)" back to "English (United States)", and click the "Apply" button. When it prompt that the required files are already installed on your hard disk, and whether you like to skip file copying and use the existing files, click "Yes". When it prompt whether you want to restart your computer now, click "Yes" after you have save all your work.

3) After your computer has restarted, insert your "Roxio Creator DE 10.3"CDROM and reinstall the "Roxio Creator DE 10.3"software. The installation process will shown as English interface and your "Roxio Creator DE 10.3"software will be in English interface after you have finished reinstalling it.
Read More
Posted in | No comments

Monday, February 22, 2010

Solved unknown devices in Windows Server 2008 Standard SP1 (x64) OS on Dell Precision T7500 workstation (Rev: 1.0)

Posted on 11:54 PM by Unknown


After installing Windows Server 2008 Standard Service Pack 1 (x64) Operating System (OS) on the Dell Precision T7500 workstation, there are various unknown devices in the Control Panel -> System -> Hardware -> Device Manager as shown below:

1. 3D video controller
-> Using Nvidia Quadro FX580 video card and Nvidia Tesla C1060 GPU card. We have added Nvidia Tesla C1060 GPU card (with 240 of Streaming Processor Cores and 4 GDDR3 memory) in the Dell Precision T7500 workstation. If you did not added the Nvidia Tesla C1060 GPU card, you will only see the Nvidia Quadro FX580 (512 MB) video card. Installing the device drivers using nVidia driver version 8.16.11.9100, A01.

2. Ethernet Controller
-> Using Broadcom NetXtreme 57xx Gigabit Controller. Installing the device drivers using Broadcom 57XX Gigabit Integrated Controller version 14.1.0, A05.

3. SM Bus Controller
-> Using Intel (R) ICH10 Family SMBus Controller - 3A30. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

4. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub GPIO and Scratch Pad Registers - 3422. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

5. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub GPIO and Scratch Pad Registers - 3422. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

6. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub Control Status and RAS Registers - 3423. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

7. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub Control Status and RAS Registers - 3423. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

8. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub System Management Registers - 342E. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.

9. System Interrupt Controller
-> Using Intel (R) 5520/5500/x58 I/O Hub System Management Registers - 342E. Installing the device drivers using the "Chipset -> Intel driver version 9.1.0.1007, A23 (R205428) or higher version" from Dell.
Read More
Posted in | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Solved changing SATA operation mode in BIOS from IDE to AHCI without reinstalling Windows XP x64 OS for ASUS P8H77-M motherboard (Rev: 1.0)
    Before the Windows XP x64 Operating System (OS) installation process on Asus P8H77-M motherboard computer that has Intel H77 Express Chipse...
  • Solved Windows Defender "ERROR: Signature Update failed with hr=800106BA" & "Windows Update cannot currently check for updates because the service is not running" errors in Acer Aspire X5900 pc with Windows 7 Home Premium x64 OS (Rev: 1.0)
    After login to the Windows 7 Home Premium x64 Operating system (OS) of the Acer Aspire X5900 pc [Intel i5-650, 3.20 GHz, Western Digital 1 T...
  • Solved People Express Management Flight Simulator software 16 bit Windows Subsystem error when login as a local user account in Windows XP Professional SP3 x86 OS (Rev: 1.1)
    After installed the People Express Management Flight Simulator (PEMFS) v1.02 on a Windows XP Professional SP3 x86 OS using an administrator ...
  • Photos/Contact Me (Rev: 1.74)
    A brief introduction of myself: Jack Ng Singaporean Diploma in Electrical Engineering Professional Diploma in Management Degree of Bachelor ...
  • Solved syntax error when printing a pdf file to HP Laserjet 8150 printer (Rev: 1.1)
    When printing a pdf file entitled "On the concept of 'tractor beams'" (by S. Sukhov and A. Dogariu*)  to HP Laserjet 8150 ...
  • Remote Desktop Connection (Rev: 1.89)
    Remote Desktop Connection (RDC) is a technology that allows you to sit at a computer/notebook and connect to a remote computer/server in a d...
  • Solved Chinese (PRC) keyboard layout error (Rev: 1.2)
    Situation When I tried to add the " Chinese (PRC) - Chinese (Simplified) - Micosoft Pinyin IME 3.0 " keyboard layout to the Langua...
  • Series RC circuit (Rev: 1.41)
    Diagram 1: Capacitor voltage (V C ) and current (I) waveforms In a capacitor, current (I) flows across the capacitor leads the capacitor v...
  • Set a light green desktop background colour to protect your eyes through long hours of looking at the pc monitor (Rev: 1.0)
    If you spend long hours looking at your pc monitor screen daily, you might want to protect your eyes by changing the background colour of yo...
  • "Fan error" in IBM T42 notebook (Rev: 1.2)
    JackNg updates on 7 January 2010: I have changed to a known good fan from another IBM T42 notebook. The " fan error " is solved as...

Blog Archive

  • ▼  2013 (8)
    • ▼  May (2)
      • Solved Windows Defender "ERROR: Signature Update f...
      • Automatically open multiple tabs in Firefox browse...
    • ►  April (3)
    • ►  March (2)
    • ►  February (1)
  • ►  2012 (26)
    • ►  December (5)
    • ►  October (1)
    • ►  September (3)
    • ►  August (2)
    • ►  July (6)
    • ►  June (2)
    • ►  March (4)
    • ►  February (1)
    • ►  January (2)
  • ►  2011 (13)
    • ►  November (1)
    • ►  October (5)
    • ►  September (1)
    • ►  June (2)
    • ►  May (2)
    • ►  March (1)
    • ►  January (1)
  • ►  2010 (14)
    • ►  December (1)
    • ►  November (2)
    • ►  October (1)
    • ►  June (3)
    • ►  May (3)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2009 (16)
    • ►  December (1)
    • ►  October (1)
    • ►  September (1)
    • ►  August (3)
    • ►  July (1)
    • ►  June (1)
    • ►  May (2)
    • ►  February (5)
    • ►  January (1)
  • ►  2008 (44)
    • ►  December (4)
    • ►  November (7)
    • ►  September (2)
    • ►  August (7)
    • ►  July (3)
    • ►  June (3)
    • ►  May (2)
    • ►  April (1)
    • ►  March (9)
    • ►  February (6)
Powered by Blogger.

About Me

Unknown
View my complete profile