SP3 OS On Dell

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

Tuesday, May 7, 2013

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)

Posted on 11:22 PM by Unknown


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 TB SATA Hardisk (3 Gb/s interface, 32 MB buffer), 4 GB RAM], Windows 7 login will hang/freeze and did not shown the desktop environment. I restarted the pc and press the [F8] key repeatly in order to boot into the Windows 7 Safe Mode environment. Then, I issued the below chkdsk command to check the hardisk:

# chkdsk c: /f

At "CHKDSK is verifying indexes (stage 2 of 3)...", chkdsk found errors and try to recover some of the system .dll files. However, at certain particular sectors number, chkdsk will hang for more than 45 minutes without any further process. Hence, the Windows 7 hang problem was caused by the faulty hardisk where some of the system files are corrupted and bad sectors are presented in the hardisk.

After backup all the users data in the Western Digital 1 TB SATA Hardisk, I deleted all the partitions inside the hardisk and the format failed error as shown below confirmed that the hardisk was faulty:

# format f: /fs:ntfs
The type of the file system is NTFS.
Enter current volume label for drive F: WD_1TB

WARNING, ALL DATA ON NON-REMOVABLE DISK
DRIVE F: WILL BE LOST!
Proceed with Format (Y/N)? y
Verifying 953867M
Creating file system structures.
The first NTFS boot sector is unwriteable.
All NTFS boot sectors are unwriteable.  Cannot continue.
Format failed. 



For Acer Aspire X5900 pc, if you just want to restore only the Windows 7 OS partition from the Acer Hidden Recovery Partition (Unknown partition, 13.67 GB) that contains the original factory installation image, you can press [ALT] [F10] upon power on to run the Acer eRecovery Management. Kindly select the "Restore system to factory default" option to restore your Windows 7 OS partition. Please backup your data before trying the Acer eRecovery Management.



I replaced the faulty Western Digital 1 TB SATA hardisk with the Seagate Barracuda 1 TB SATA3 7200 rpm hardisk (6 Gb/s interface, 64 MB buffer). I restored the Windows 7 Home Premium x64 OS from my earlier Acronis True Image Home backup copy but did not included the Acer Hidden Recovery Partition in the Seagate hardisk.

When I try to use the Windows Update to check for Windows update patches, it will show a “Windows Update cannot currently check for updates, because the service is not running. You may need to restart your computer” error. Restart the Acer Aspire X5900 pc does not solve the problem because it will still shown the same Windows Update error.

Both the Background Intelligent Transfer Service (BITS) and Windows Update (wuauserv) services are already running (both the services startup type were set as "Automatic (Delayed Start)" in the Computer Management -> Services and Applications -> Services).

I had also checked the Windows 7 Home Premium x64 OS registry under
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\BITS
,
and all the BITS and sharedAccess services registries were already existed.


In my previous blog on 'Solved "Windows Update cannot currently check for updates, because the service is not running. You may need to restart your computer" error in Windows 7 Professional SP1 OS', the “Windows Update cannot currently check for updates, because the service is not running. You may need to restart your computer” error is solved by updating the Windows Defender signature file. However, the updating of the Windows Defender signature file in Acer Aspire X5900 pc failed with an "ERROR: Signature Update failed with hr=800106BA" despite that the Windows Defender service (WinDefend) was already started:

# cd %programfiles%\windows defender

# mpcmdrun -signatureupdate 
Signature update started . . .
ERROR: Signature Update failed with hr=800106BA



Solution

The main difference between the spoilt Western Digital 1 TB SATA Hardisk (3 Gb/s interface, 32 MB buffer) and the Seagate Barracuda 1 TB SATA3 hardisk (6 Gb/s interface, 64 MB buffer) is the SATA interface. Under the "Device Manager" -> "IDE ATA/ATAPI controllers", the Acer Aspire X5900 pc has an "Intel 5 Series or 3400 Series SATA AHCI Controller".

To solve the Windows Defender "ERROR: Signature Update failed with hr=800106BA", we need to install the Intel Rapid Storage Technology (Intel RST) RAID Driver v12.5.0.1066 or higher version. The Intel RST v12.5 is designed to provide functionality for the following Storage Controllers:
  • Intel 8 Series/C220 Series Chipset Family SATA AHCI/RAID Controller
  • Intel 7 Series/C210 Series Chipset Family SATA AHCI/RAID Controller
  • Intel 6 Series/C200 Series Chipset Family SATA AHCI/RAID Controller
  • Intel 5 Series/3400 Series SATA AHCI/RAID Controller
  • Intel X79 Express Chipset

After installing the Intel RST by running the SetupRST.exe and restart the pc after the installation, the “Windows Update cannot currently check for updates, because the service is not running. You may need to restart your computer” and the Windows Defender "ERROR: Signature Update failed with hr=800106BA" errors automatically disappeared.


Reference

[1] Intel Rapid Storage Technology (Intel RST) RAID Driver v12.5.0.1066 Read Me

[2] Acer Support Frequently Asked Questions

Read More
Posted in | No comments

Friday, May 3, 2013

Automatically open multiple tabs in Firefox browser from DOS command line with URL in incremental sequence numbering (Rev: 1.1)

Posted on 12:42 AM by Unknown


To easily read online comics, I use the Firefox browser add-on, AutoPager that will automatically loads the next comic page of a site inline when you reach the end of the current comic page for infinite scrolling of the comic content. However, AutoPager did not work on some of the comics sites. Hence, I have created a .bat file,
0_openMultipleTabsInFirefox_fromCommandLine.bat
(1157 bytes. MD5 checksum: 9ebefed48915a157d23dcab3a60420df)

to automatically open multiple tabs in Firefox browser from DOS command line with URL in incremental sequence numbering.

For example, if a comic website, www.abc.com has a comic with title xxx with
page 2 URL as http://www.abc.com/comic/xxx/01/?2,
page 3 URL as http://www.abc.com/comic/xxx/01/?3, and so on until
page 34 URL as http://www.abc.com/comic/xxx/01/?34

By opening a command prompt in Windows XP SP3 x86 Operating System (OS), and enter the below command:

0_openMultipleTabsInFirefox_fromCommandLine.bat http://www.abc.com/comic/xxx/01/?


The Firefox browser will automatically open multiple tabs with URL in incremental sequence numbering from http://www.abc.com/comic/xxx/01/?2 to http://www.abc.com/comic/xxx/01/?34. After finish reading a comic page, I will use Firefox browser keyboard shortcut, [CTRL] w to close that page tab.


----- Start 0_openMultipleTabsInFirefox_fromCommandLine.bat --------------------

@echo off
rem Automatically open multiple tabs in Firefox browser from DOS command line
rem with URL in incremental sequence numbering
rem For reading online comics that has URL page number in incremental sequence numbering
rem Command usage is as shown below:
rem %BATFILE% URL
rem JackNg, Rev: 1.1

SET BATFILE=0_openMultipleTabsInFirefox_fromCommandLine.bat

rem For Windows x86 OS only
SET FFOX="C:\Program Files\Mozilla Firefox\firefox.exe"
rem For Windows x64 OS only
rem SET FFOX="C:\Program Files (x86)\Mozilla Firefox\firefox.exe"

SET STARTPAGE=2
SET STEPAMOUNT=1
SET ENDPAGE=34

IF "%1" == "" GOTO NOURL

rem /L = Logic. Numbers increment start from 2 to 34 with step amount of 1
FOR /L %%i IN (%STARTPAGE%,%STEPAMOUNT%,%ENDPAGE%) DO %FFOX% -new-tab "%1"%%i
GOTO EXIT


:NOURL
echo No URL specified in the command line.
echo Command usage is as shown below:
echo ------------------------------------
echo %BATFILE% URL
echo ------------------------------------
echo Exiting...
echo.


:EXIT
set BATFILE=
set FFOX=
SET STARTPAGE=
SET INCREMENT=
SET ENDPAGE=

----- End 0_openMultipleTabsInFirefox_fromCommandLine.bat --------------------


Reference:

[1] Open multiple tabs in Firefox from a file containing urls
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...
  • 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...
  • Solved Windows 7 x64 OS hibernation failed problem due to VgaSave on Dell Precision T7600 workstation (Rev: 1.3)
    The Dell Precision T7600 workstation [2 x Intel Xeon E5-2687W (8 cores) 3.1 Ghz CPU, 256 GB RAM] has a Nvidia Quadro 5000 video card [ defa...

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