Thursday, October 3, 2013

How to Fix MSIExec


1. Click 'Start' then click 'Run.'
2. Type 'regedit' in the box and click 'OK.'
3. Browse to the following path using the left side of the window: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer.
4. Double-click 'ImagePath' on the right side of the window and modify the value to 'C:\Windows\System32\msiexec.exe /V.' Replace 'C' with your system drive's letter.
5. Exit the registry editor and restart your computer.
6. Press F8 just before the Windows loading logo appears and select 'Safe Mode' from the list of start-up options.
7. Repeat Step 1, type 'msiexec /regserver' and click 'OK.' Restart your computer.
Read more ►

Wednesday, October 2, 2013

How to Fix the I/O for a Laptop


1. Click 'Start' and then 'Run.'
2. Enter 'sysdm.cpl' in the 'Open' text box.
3. Go to the 'Hardware' tab and click 'Device Manager.'
4. Find the Plug and Play device and 'right-click' on the device to be fixed.
5. Select 'Properties' dialog box and then go to the 'General' tab.
6. Click 'Enable' under 'Device usage' if the device is disabled and then click 'OK.' Otherwise proceed to Step 7.
7. Follow steps 1 through 5 above, and then click 'Troubleshoot' under Device Status. Follow the suggested recommendations to resolve the problem with the installed I/O device and laptop connection.
Read more ►

How to Get Rid of Error Safe


End Processes
1. Press \"Ctrl\" + \"Alt\" + \"Delete.\"
2. Click on the \"Task Manager\" and then click on the \"Processes\" tab.
3. End the following processes. To end a process, right-click on it and select \"End Process.\"<br /><br />\"errorsafescannerinstall_de.exe\"<br />\"errorsafescannersetup2222.exe\"<br />\"df_kme.exe\"<br />\"ers.exe\"<br />\"sr.exe\"<br />\"install.exe\"<br />\"unins000.exe\"<br />\"unins001.exe\"
Delete Registry Values
4. Hold down the Windows key and press \"R.\" The Run box opens.
5. Type \"regedit\" into the Run box and click \"OK.\" The Registry Editor opens.
6. Locate the following registry values in the right pane of the Registry Editor and delete them. To delete a registry value, right-click on it and select \"Delete.\" If you are having trouble locating a registry value, click on \"Edit,\" and then \"Find,\" and then type the name of the registry value into the box. <br /><br />\"c033567c-68fe-419b-bcc4-135db7faf8eb\"<br />\"c85a4afd-ff76-4661-b76a-3e9bb2ce2dab\"<br />\"e73e3959-fb15-44d7-acb9-3a75377006fc\"<br />\"HKEY_CLASSES_ROOT\\esdf_fixer.esfixer\"<br />\"HKEY_CLASSES_ROOT\\esdf_fixer.esfixer.1\"<br />\"HKEY_CLASSES_ROOT\\flfxr5.flfixer5\\clsid\"<br />\"HKEY_CURRENT_USER\\software\\errorsafe\"<br />\"HKEY_CURRENT_USER\\software\\errorsafe\\errorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\errorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\runerrorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\uninstall\\ers_is1\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\uninstall\\ersu_is1\"<br />\"HKEY_LOCAL_MACHINE\\system\\currentcontrolset\\enum\\root\\legacy_erssdd\"<br />\"HKEY_LOCAL_MACHINE\\system\\currentcontrolset\\services\\erssdd\"
Delete DLL Files
7. Hold down the Windows key and press \"R.\" The Run box opens.
8. Type \"cmd\" into the Run box and click \"OK.\" The Command Prompt opens.
9. Type the following into the Command Prompt. Be sure to press \"Enter\" after each line. <br /><br />“regsvr32 /u strres.dll” <br />“regsvr32 /u mmfix.dll” <br />“regsvr32 /u ftrec.dll” <br />“regsvr32 /u flfxr5.dll” <br />“regsvr32 /u ffwraper.dll” <br />“regsvr32 /u esspcheck.dll” <br />“regsvr32 /u espcheck.dll” <br />“regsvr32 /u df_fixer.dll” <br />“regsvr32 /u ecc.dll”
Delete Files
10. Click on the \"Start\" menu.
11. Click on \"Search Programs and Files.\"
12. Search for and delete the following files. To delete a file, right-click on it and select \"Delete.\"<br /><br />\"errorsafescannerinstall_de.exe\"<br />\"errorsafescannersetup2222.exe\"<br />\"df_kme.exe\"<br />\"ers.exe\"<br />\"sr.exe\"<br />\"install.exe\"<br />\"unins000.exe\"<br />\"unins001.exe\"<br />\"strres.dll\"<br />\"mmfix.dll\"<br />\"ftrec.dll\"<br />\"flfxr5.dll\"<br />\"fixcore.dll\"<br />\"ffwraper.dll\"<br />\"esspcheck.dll\"<br />\"espcheck.dll\"<br />\"df_fixer.dll\"<br />\"ecc.dll\"<br />\"df_proxy.dll\"<br />\"lapv.dat\"<br />\"license.rtf\"<br />\"lock.dat\"<br />\"template.dbx\"<br />\"trace.log\"<br />\"unins000.dat\"
Read more ►

Tuesday, October 1, 2013

How to Delete System32.DLL


1. Power down your computer, wait 30 seconds, then power it back on.
2. As your computer is booting up, tap the F8 key on your keyboard until you are prompted to chose a boot-up option.
3. Choose to boot up into 'Safe Mode' by pushing Enter on your keyboard while 'Safe Mode' is highlighted on your screen. Booting up into 'Safe Mode' will allow you the ability to delete the 'system32.DLL' file.
4. Click the 'Start' menu located on your desktop and then click 'Search.'
5. Choose to search 'All Files and Folders'.
6. Type 'System32.DLL' into the search box and press 'Search.' This will cause the 'Syste32.DLL' file to be displayed in the right-hand window pane.
7. Right click on 'system32.DLL' and choose 'Delete.' Close the search box by clicking the red 'X' in the top right-hand corner.
8. Right click on the 'Recycle Bin' shortcut located on your desktop and choose 'Empty Recycle Bin.' The System32.DLL file is now deleted.
Read more ►

How to Call a Javascript From Visual Basic


1. Open your Visual Basic application. When the application loads, double-click the web form that has the Javascript you want to run. After it opens, right-click the form and select 'Code View.' This displays the Visual Basic code.
2. Enter the code below in your code-behind file:Page.ClientScript.RegisterStartupScript (Me.GetType(), 'alert', 'alertMe();')The 'Me.etType()' returns Javascript. The 'alert' entry is used to give your Javascript function an internal name for the application. Finally, the 'alertMe()' is the name of your Javascript function.
3. Save the file and press the F5 key. This starts the web application in your web browser. Instead of errors, your Javascript function will run as expected.
Read more ►

Update Error 80073712 in Internet Explorer


Run the System Updates Readiness Tool
1. Go to Microsoft’s website and download the System Update Readiness Tool. Locate your computer’s operating system and click on the “Download” link next to it.
2. Install System Update Readiness Tool by clicking “Open” (or “Run”) then clicking “OK” at each step to progress through the installation. Click “Close” when the dialogue box reads “Installation complete.”
3. Restart your computer. Attempt to download any updates interrupted by error message 80073712. If you still receive this error message, try installing Windows Service Pack 1.
Install Windows Service Pack 1
4. Go to Microsoft’s website and download Windows Vista Service Pack 1, which contains a fix for error message 80073712. Click the “Download” button. Please note that SP1 is a very large file (over 500 MB) and may require several hours to download.
5. Click “Save” and then select “Desktop” in the “Save To” option. Click "OK" to begin the download.
6. Run SP1 by double clicking the SP1 icon on your desktop. Click “Next” or “OK” to proceed through each step of the installation. Click “Finish” or “Close” to complete the installation.
7. Restart your computer. Attempt to download any updates interrupted by error message 80073712. If you still receive this error message, perform a repair installation.
Perform a Repair Installation
8. Restart your computer. Open your computer’s DVD drive and insert your Windows Vista DVD. Close the drive to let Windows automatically detect the DVD. Click “Go online to obtain the latest updates for installation” from the list of installation options.
9. Type your product key into the boxes provided. You can find your 25-digit Windows Vista product key on a sticker on the base of your laptop or on one of the sides of your desktop computer’s tower.
10. Read the licensing agreement and click “OK.” Then click “Upgrade” when asked “Which type of installation do you want?”
11. Restart your computer after it has finished downloading and installing all the updates. Attempt to download any updates interrupted by error message 80073712.
Read more ►

Saturday, September 28, 2013

How to Delete All OCX


Delete OCX Files
1. Click on 'Start,' 'Search.'
2. Type in the OCX file you wish to remove, such as 'flash.ocx' or 'swflash.ocx,' and press 'Enter.' Select to search 'All Files and Folders' if prompted.
3. Right-click on the OCX file found and select 'Delete.'
4. Restart the computer.
Remove OCX from Internet Explorer
5. Open up Internet Explorer.
6. Click on 'Tools' and select 'Internet Options.'
7. Click on the 'Programs' tab and select 'Manage Add-ons.' A new window will open.
8. Click on the object or plugin you wish to remove. All installed plugins will display in alphabetical order.
9. Click on the 'Delete' button. The selected object will disappear from the list. Keep clicking on OCX objects and deleting until all are removed.
Read more ►

How to Unload a DLL File


1. Back up your registry. Because you will be tampering with files, you run the risk of crashing your computer if something goes wrong. Backing up your registry will let you restore it to normal.
2. Install the AlwaysUnloadDLL file (free download) into your registry by double clicking the file and confirming your desire to merge it into the registry. This way you won't have to go into the registry and potentially cause even more problems for yourself. You can download the AlwaysUnloadDLL file from GilsMethod.com.
3. From the 'Start' menu, click 'Run,' then type in 'regedit' and hit 'Enter.' The registry editor will open.
4. Follow these keys to confirm that the AlwaysUnloadDLL file is there: HKEY_LOCAL_MACHINE > Software > Microsoft > Windows > CurrentVersion > Explorer > AlwaysUnloadDLL.
5. Click once on AlwaysUnloadDLL, and one key should appear to the right. Double click this. Where it says 'Default,' switch to '1,' then hit OK.
6. Close out of the registry editor and restart your computer.
Read more ►

How to Fix a Non


1. Turn off the computer using the computer power switch. Eject the disk from the floppy drive.
2. Turn on the computer. Wait for the Windows 95 start screen to come up. The error should be gone and you can insert the floppy disk again.
3. Double-click 'My Computer.' Select the 'A:' drive to read the contents of the floppy disk.
Read more ►

Friday, September 27, 2013

How to Repair Windows Root System32 Hal .Dll


Repair the Boot.ini File
1. Place a bootable Windows XP CD into your CD-ROM drive. Restart your computer and allow it to boot from the CD.
2. Press 'R' at the 'Welcome to Setup' dialog in the text-based setup program. Choose the Windows installation that you need to fix. Type in the Administrator's password if you set one during the installation of Windows XP. Just push 'Enter' without entering a password if you did not set an Administrator password during setup.
3. Enter the three commands below at the command prompt. Type each line one at a time. Press 'Enter' after typing in each command:'ATTRIB -H -R -S C:\BOOT.INI''DEL C:\BOOT.INI''BOOTCFG /REBUILD FIXBOOT'
4. Type 'exit' and press 'Enter' to close the Recovery Console. Restart the computer and attempt to boot into Windows.
Expand a New Copy of Hal.dll
5. Put a Windows XP CD into your computer. Boot the computer into the Recovery Console in the same manner as you did to repair the Boot.ini file.
6. Enter the command 'EXPAND D:\I386\HAL.DL_ C:\WINDOWS\SYSTEM32\HAL.DLL' at the Command Prompt. Press the 'Enter' key.
7. Remove the Windows XP CD from the drive. Type 'exit' to quit the Recovery Console and boot the computer system back into Windows.
Read more ►

Thursday, September 26, 2013

How to Register Dll Files to Fix a Windows Update


1. Go to the 'Start' menu, type 'run' in the 'Start Search' box and press 'Enter.'
2. Type 'Regsvr32 'C:\Windows\System32\wuapi.dll' in the search field and press 'Enter.' Click 'OK' in the confirmation pop-up to register the DLL.
3. Repeat Step 2 for 'wuaueng.dll,' 'wups.dll,' 'wups2.dll,' 'wuwebv.dll,' 'wucltux.dll' and 'wudriver.dll.'
4. Restart your computer.
Read more ►

Wednesday, September 25, 2013

How to Fix the Flash Cards on a Toshiba Laptop Computer


1. Place the SD card into the Toshiba laptop's SD drive.
2. Click the blue button in the bottom left corner. Select 'Control Panel.'
3. Click 'System and Security.' Click 'Administrative Tools.' Double-click 'Computer Management.'
4. Click 'Disk Management.' Right-click the SD card. Left-click 'Format.'
5. Click the 'OK' button to format the SD card.
Read more ►

Tuesday, September 24, 2013

How to Re


1. Click 'Start,' type 'cmd' in the dialog box and click 'OK.' This opens the Command Prompt.
2. Copy and paste the following commands one at a time in the prompt and press 'Enter:'regsvr32 softpub.dllregsvr32 wintrust.dllregsvr32 initpki.dllregsvr32 dssenh.dllregsvr32 rsaenh.dllregsvr32 gpkcsp.dllregsvr32 sccbase.dllregsvr32 slbcsp.dllregsvr32 cryptdlg.dllYou can right-click and paste at a prompt, but you cannot use the 'Ctrl' and 'V' keyboard shortcut.
3. Click 'OK' when the DllRegisterServer prompt appears.
4. Exit the Command Prompt. Reboot your computer system. Open IE7 to ensure that it is running correctly.
Read more ►

How to Solve the Svchost


1. Run a virus scan to look for and remove viruses. Certain viruses try to mimic the svchost by installing a file with the same name in a different folder than the legitimate file.
2. Right-click the 'My Computer' icon on your desktop. Click 'Properties' and choose the 'Automatic Updates' tab. Select the option to turn off automatic updates. Reboot your computer.
3. Click the 'Start' button. Go to 'Programs' and 'Windows Update.' Run Windows update to download and install updates. When the updates are finished, turn automatic updates back on.
4. Select 'Change Settings' on the sidebar on the Windows update website. Check the box that says 'Disable Microsoft Update software and let me use Windows Update only.' Click 'Apply.'
5. Rename the DataStore folder located in the folder 'Software Distribution' in the Windows root folder.
6. Hit the 'Start' button and click 'Run.' In the 'Open' box, type 'cmd.' At the prompt type 'net stop wuauserv' and hit enter. Open 'My Computer' and browse to the Windows folder on the C: drive. Delete the 'WuTemp' folder and the 'Catroot2' folder under System32. Rename the 'SoftwareDistribution' folder 'SoftwareDistributionOLD.'
7. Rename the 'Wuweb.dll,' 'Wuapi.dll,' 'Wuauclt.exe,' 'Wuaucpl.cpl,' 'Wuaueng1.dll,' 'Wuaueng.dll,' 'Wuauserv.dl,' 'Wucltui.dll,' 'Wups2.dll,' and 'Wups.dll' files by changing the .dll extension to a .old extension. Reboot the computer.
Read more ►

How to Fix a Ntoskrnl EXE Error


End Processes
1. Press 'Ctrl' + 'Alt' + 'Delete' or 'Ctrl' + 'Shift' + 'Escape' to open the Task Manager.
2. Click the 'Processes' tab of the Task Manager.
3. Click the 'Show Processes From All Users' button.
4. End the following processes. To end a process, right-click the process name (located under the 'Image Name' heading) and select 'Delete.'xpantivirusupdate.exentoskrnl.exentoskrnl.exe.md5explorer.exe.md5ntoskrnl.exexpantivirus.exe
5. Close the Task Manager.
Delete Registry Values
6. Click 'Start' and type 'regedit' into the 'Search' box and press 'Enter.' The Registry Editor opens.
7. Delete each of the following registry values from the left pane of the Registry Editor. To delete a registry value, right-click the registry value and select 'Delete.'HKEY_CURRENT_USER\software\microsoft\windows\currentversion\run xp antivirusHKEY_CURRENT_USER\software\xp antivirus\options lastscanHKEY_CURRENT_USER\software\xp antivirus\options afterregisterurlHKEY_CURRENT_USER\software\xp antivirus\options autoscanonstartupHKEY_CURRENT_USER\software\xp antivirus\optionsHKEY_CURRENT_USER\software\xp antivirus\firstrunHKEY_CURRENT_USER\software\xp antivirus\options helpurlHKEY_CURRENT_USER\software\xp antivirus\options labelurlHKEY_CURRENT_USER\software\xp antivirus\options minimizetotrayHKEY_CURRENT_USER\software\xp antivirus\options offsiteurlHKEY_CURRENT_USER\software\xp antivirus\options programversionHKEY_CURRENT_USER\software\xp antivirus\options startwithwindowsHKEY_CURRENT_USER\software\xp antivirus\options totalscansHKEY_CURRENT_USER\software\xp antivirus\options transactionkeyHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter displaynameHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter errorcontrolHKEY_CURRENT_USER\software\xp antivirus\options firstrunminimizeHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 inno setup: userHKEY_CURRENT_USER\software\xp antivirus\options billingurlHKEY_CURRENT_USER\software\xp antivirus\options enableantirootkitHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 urlupdateinfoHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilterHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 displaynameHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 helplinkHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 inno setup: app pathHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 inno setup: icon groupHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 inno setup: setup versionHKEY_CURRENT_USER\software\xp antivirus\options firstrunurlHKEY_CURRENT_USER\software\xp antivirus\options billingurlapprovedHKEY_CURRENT_USER\software\microsoft\windows\shellnoroam\muicache c:\program files\xpantivirus\xpantivirus.exeHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 publisherHKEY_CURRENT_USER\software\xp antivirus\options updateurlHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter imagepathHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter startHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter typeHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\enumHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\enum countHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 nomodifyHKEY_CURRENT_USER\software\xp antivirus\options affHKEY_CURRENT_USER\software\xp antivirus\options registerurlHKEY_CURRENT_USER\software\xp antivirus\options startminimizedHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\enum initstartfailedHKEY_CURRENT_USER\software\xp antivirus\options enablesysbackupHKEY_CURRENT_USER\software\xp antivirusHKEY_CURRENT_USER\software\xp antivirus\options checkhiddenHKEY_CURRENT_USER\software\xp antivirus\options enableadvancedHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 norepairHKEY_CURRENT_USER\software\xp antivirus\options versionurlHKEY_CURRENT_USER\software\xp antivirus\registerHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 quietuninstallstringHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 uninstallstringHKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\uninstall\xp antivirus_is1 urlinfoaboutHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\enum nextinstanceHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\securityHKEY_LOCAL_MACHINE\system\currentcontrolset\services\xpantivirusfilter\security securityHKEY_CURRENT_USER\software\microsoft\windows\currentversion\run xp antivirus
8. Close the Registry Editor.
Unregistery DLLs
9. Click 'Start' and type 'cmd' into the 'Search' box and press 'Enter.' The Command Prompt opens.
10. Type 'regsvr32 /u wininet.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
11. Type 'regsvr32 /u shlwapi.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
12. Close the Command Prompt.
Delete Files
13. Click 'Start' and click the 'Search' box.
14. Search for and delete each of the following files. To delete a file, click on the file name (located in the 'Results List') and select 'Delete.'xpantivirusupdate.exentoskrnl.exentoskrnl.exe.md5explorer.exe.md5ntoskrnl.exexpantivirus.exewininet.dllshlwapi.dll
15. Restart your computer.
Read more ►