Sunday, May 26, 2013

How to Repair Msi.Dll


1. Open your web browser. Install and save the Windows Installer update (InstMsiA.exe) to your desktop.
2. Click 'Start' and choose 'Shut Down.'
3. Select 'Restart in MS-DOS mode' and click 'OK.'
4. Type the following commands, individually, in the prompt, and press 'Enter' after each command:Cd systemRen msi.dll msi.oldRen msihnd.dll msihnd.oldRen msiexec.exe msiexec.oldExit
5. Reboot your system. Hold down the 'SHIFT' key to load your system into safe mode.
6. Open the 'InstMsiA.exe' update file, and follow the prompts to complete the update.
7. Reboot your system once the update is complete.
Read more ►

Thursday, May 23, 2013

How to Reset ActiveX to Allow Viewing


1. Launch Internet Explorer and click the "Tools" menu on the top of your browser. Scroll down the pop-up menu and click "Internet Options."
2. Click the "Advanced" button and click "Reset." Select the "Delete personal settings" box if you want to remove browsing history. Click "Reset" again in the "Reset Internet Explorer Settings" dialog box. Internet Explorer resets ActiveX controls and other components and restores the default settings on your browser.
3. Click "Close" when the reset process completes and restart your web browser. Re-enable ActiveX controls. To do so, click the "Tools" menu again and click "Internet Options." Click the "Security" tab and click the "Custom Level" button to launch the Security Settings dialog box.
4. Scroll down to the "Internet ActiveX Controls and Plugins" section. Click the "Enable" radio button under each of the following options:
Run ActiveX Controls and Plugins
Script ActiveX Controls Marked Safe for Scripting
5. Click "OK" to save the changes and click "OK" again to close Internet Options.
Read more ►

How to Run a Dll As an App Rundll32.Exe


1. Click 'Start' if using a version of Windows prior to Vista. Click 'Run' and type 'cmd' in the 'Open' box then press 'Enter.' Click the Windows orb if using a version of Windows from Vista forward. Type 'cmd' in the search box and press 'Shift,' 'Ctrl' and 'Enter' at the same time to open an elevated command prompt.
2. Input the command 'RUNDLL.EXE <dll_name>,<entry_point> <optional_arguments>' where '<dll_name>' is the name of the DLL file with a function that can be run by the Rundll32 executable, '<entry_point>' is the function in the DLL that Rundll32.exe can access and '<optional_arguments>' are any additional parameters required by the function inside the DLL. Press 'Enter.'
3. Ensure that no error messages are returned and that any functions you wanted to call successfully execute. Type 'exit' at the command prompt to close the window once you are finished running DLL files.
Read more ►

Wednesday, May 22, 2013

How to Remove Ieframe.dll


1. Click on the 'Start' menu, then click 'Run.'
2. Type 'cmd' (without the quotation marks) into the open box and click 'OK.' The Command Prompt window will open.
3. Type 'regsvr32 /u Ieframe.dll' (without the quotation marks) into the Command Prompt and press the 'Enter' key.
Read more ►

Tuesday, May 21, 2013

How to Use Control Characters With Oracle SQL


Find Decimal Value
1. Open the ASCII table. Here you will find the comprehensive list of decimal values for each control character at http://ascii-table.com/ascii.php.
2. Find the decimal value of the desired control character from the ASCII table.
3. Input that decimal value of the control character into the CHR function. This will make Oracle print the control character in Oracle SQL*Plus, as well as in PL/SQL.
Example 1
4. Open the ASCII table. You will find the comprehensive list of decimal values for each control character at http://ascii-table.com/ascii.php.
5. Find the decimal value for the control character corresponding with Line Feed (^J). Looking at the table, you'll see that the corresponding decimal value is 10.
6. Input integer value 10 into the CHR function. The following SQL will print a line feed between the two strings in sqlplusSQL> select 'test'||chr(10)||'abc' from dual;'TEST'||--------testabc
Example 2
7. Open the ASCII table. You will find the comprehensive list of decimal values for each control character at http://ascii-table.com/ascii.php.
8. Find the decimal value for the control character corresponding with Backspace (^H). Looking at the table, you'll see that the corresponding decimal value is 8.
9. Input 8 into the CHR function. The following SQL will print a backspace after printing the first string, wiping out the last character of the first string, before printing the second.SQL> select 'test'||chr(8)||'abc' from dual;'TEST'||--------tesabc
Example 3
10. Open the ASCII table. You will find the comprehensive list of decimal values for each control character at http://ascii-table.com/ascii.php.
11. Find the decimal value for the control character corresponding with Horizontal Tabulation (^t). Looking at the table, you'll see that the corresponding decimal value is 9.
12. Input 9 into the CHR function. The following SQL will print a horizontal tab after printing the first string, before printing the second string.SQL> select 'test'||chr(9)||'abc' from dual;'TEST'||--------test abc
Read more ►

Monday, May 20, 2013

How to Restore DLL Files in Windows 98


1. Insert the Windows 98 Startup disk that came with your PC. Reboot your computer.
2. Use the arrow keys to select 'Start Computer With CD-ROM Support' during startup.
3. Type the following command without the quotes '<CDDRIVE>: cd tools\sysrec pcrestor' and press 'Enter.' Replace '<CDDRIVE>' with the drive letter of your CD-ROM drive.
4. Remove the Startup disk when you see the Windows 98 Setup menu.
5. Select the 'Next' button when you see 'System Recovery' wizard. Enter your name and the name of your organization and select 'Next.'
6. Select 'Finish.' You will see a new wizard for Microsoft Backup.
7. Select 'Restore Backed Up Files' and hit 'OK.'
8. Follow the on-screen prompts to select the path where you saved your backup. Choose 'Select the most recent full system backup' when prompted for backup sets.
9. Select the system drive (typically the C drive) for what to restore. Choose the original location as the location where the DLL files along with other lost system files will be restored.
10. Click the option 'Always replace the file on my computer.' Click 'Start' to restore your lost DLL files.
Read more ►

Sunday, May 19, 2013

How to Fix Msvcrt.dll Errors


Windows XP
1. Insert your Windows XP installation disk. Restart the computer.
2. Click on the key prompted on-screen to 'Enter the BIOS setup.' The BIOS key varies according to the BIOS manufacturer and motherboard model. Consult your computer's documentation if you are unsure of how to access the BIOS.
3. Navigate to the 'Advanced Boot Options.' Select your CD/DVD drive as your primary boot disk, followed by the hard disk. 'Save and exit' the BIOS.
4. Press any key to boot from the Windows XP installation disk.
5. Press the 'R' button to access the 'Recovery Console.'
6. Highlight your Windows XP installation, then press the 'Enter' key.
7. Type your administrator password, then press the 'Enter' key. Leave this field blank and press the 'Enter' key if you do not have an administrator password.
8. Press the 'Enter' key after typing each command:
cd system32
ren msvcrt.dll msvcrt.old
d: or your CD/DVD drive letter
d: or your CD/DVD drive letter\i386
expand msvcrt.dl_ c:\windows\system32
exit
9. Remove the Windows XP installation disk.
Earlier Versions of Windows
10. Insert your Windows installation disk.
11. Exit any auto-run screens.
12. Click on 'Start,' then 'Find.' Click on 'Files or Folders.'
13. Type 'msvcrt.dll' in the 'Name' box, and select 'C:' in the 'Look in' box. Press the 'Enter' key.
14. Right-click on the 'Msvcrt.dll' file in the search results. Left-click 'Rename.' Delete 'dll' and type 'xxx.' Press the 'Enter' button.
15. Click on 'Start,' then 'Run.' Type 'sfc' and press 'Enter' on Windows 95 and 98 computers. Type 'msconfig' and press 'Enter' on Windows ME computers.
16. Click 'Extract one file from installation disk' in Windows 95 and 98. Select the 'General' tab, then click 'Extract File' in Windows ME.
17. Type 'c:\windows\i386\msvcrt.dll' in the 'Specify the system file you would like to restore' field.
18. Click 'Start,' then 'Browse.' Navigate to and double-click your installation disk's 'msvcrt.dll' file. (This file should be inside the 'Win9x' folder.)
19. Follow the on-screen prompts to complete the process.
Read more ►

How to Kill a Bootuery.Dll


Manual removal
1. Click 'Start' and then 'Computer.' Click 'Local Disk (C:).'
2. Click the 'Windows' folder, and click the 'System32' folder.
3. Search for Bootuery.dll and delete the file.
Antivirus Software
4. Check for updates to your antivirus software and install any you find.
5. Run the antivirus software, and scan all files on your hard drive.
6. Quarantine or delete Bootuery.dll and any other potential hazards found.
Windows Updates
7. Click 'Start,' 'Control Panel,' and then 'Systems' followed by 'Security' and 'Windows Update.'
8. Click 'Check for Updates.' Then click the 'Important Update' link.
9. Check 'Windows Malicious Software Removal Tool,' and then click 'OK.'
10. Click 'Install Updates.' Restart your computer after the update is installed.
Read more ►

Saturday, May 18, 2013

How to Fix the Svchost.exe Application Error in Windows XP


Verify and Configure your Windows Update Service Settings
1. Click on the Start button at the bottom left-hand corner of your desktop. Once the Start menu opens, click Run and then type 'services.msc' in the text field. Click OK when you are done.
2. Navigate to the Automatic Updates service in the right-hand pane and then double-click on it. Select the Log On tab. Make sure that Local System Account is selected as the default logon account.
3. Uncheck the option 'Allow service to interact with desktop.' Now go to the Hardware Profile section, also found under the Log On tab. Enable this service.
4. Click on the General tab. Verify that the start-up type is set to Automatic. If not, use the drop-down menu to select this option.
5. Go to the Service Status section. Click on the Start button to enable this service. Do the same thing for the Background Intelligent Transfer Service (or BITS).
Reconfigure Your Windows Update DLLs
6. Click the Start button and then click Run. Type 'cmd' into the text field. Click OK.
7. In the Command Prompt, type in REGSVR32 WUAPI.DLL and hit Enter.
8. Wait until you receive a message reading 'DllRegisterServer in WUAPI.DLL succeeded.'
9. Repeat this process for each of the following commands; type in each command and hit Enter after each line:REGSVR32 WUAUENG.DLLREGSVR32 WUAUENG1.DLLREGSVR32 ATL.DLLREGSVR32 WUCLTUI.DLLREGSVR32 WUPS.DLLREGSVR32 WUPS2.DLLREGSVR32 WUWEB.DLL
Delete the Corrupted Windows Update Files
10. Type the following command into the command prompt and press Enter: net stop WuAuServ. Type in: cd %windir% and hit Enter.
11. Now type in: ren SoftwareDistribution SD_OLD. This will rename the SoftwareDistribution folder.
12. Restart the Windows Update service by inputting the following command: net start WuAuServ.
13. Type in: Exit and then hit Enter to close the Windows Command Prompt.
14. Reboot your PC. When you restart Windows, you shouldn't receive this error message anymore. If you do, download the two Windows Updates listed below.
Read more ►

How to Use a DLL Internet Explorer Script


1. Check where it came from and if you do not remember downloading it you should delete it as it could be a virus.
2. Use a search engine and search for the full file name of the DLL file. Some viruses and malware are distributed in DLL files. An Internet search should be able to tell you any additional information about the file.
3. Check an Internet search result for the DLL to tell you where that file belongs. DLL files are typically stored in Windows system folders, but if you have downloaded one it will not be there by default. Find out where it should go and then move it to the new location.
4. Search your computer for the file name. If you are replacing an old DLL with a new one, you can search your computer for the old file and paste the new one in its place.
Read more ►

Friday, May 17, 2013

How to Enable ActiveX in Internet Explorer 8


1. Launch Internet Explorer 8, click the "Tools" menu and choose "Internet Options."
2. Click the "Security" tab and select "Internet" in the zone box. Click the "Custom Level" button to launch the Security Settings window.
3. Scroll down the Security Settings window to the "ActiveX Controls and plug-ins" section. Select "Enable" under each of the options in the section. Click "OK" to save the changes and close the Internet Options console.
Read more ►

Thursday, May 16, 2013

How Do I Get D3drm.Dll Fileboggle?


1. Press the 'Windows' button and then press the 'R' button to bring up your 'Run' box.
2. Type 'sfc /scannow' into the 'Run' box and then press 'Enter.'
3. Wait for the scan tool to scan your computer. The time it takes to complete will vary depending on the size of your hard drive.
4. Exit the software window when the tool has finished scanning.
5. Click the 'Restart' option when prompted.
Read more ►

Wednesday, May 15, 2013

How to Fix Error 678


1. Check your Internet connection to ensure that you are connected. Click 'Start' on the desktop, click 'Control Panel,' then click 'Network and Internet Connections.' Click 'Network Connections' to check you Internet Connection.
2. Ensure that your Internet adapter is enabled. Click the desktop's 'Start' button and click the 'Run' icon, then type 'ncpa.cpl' (without quotes) into the 'Run' text field box. Click 'OK' and then click the 'Internet Connections' option to ensure that it is enabled. If the adapter is not listed, restart the adapter.
3. Reset your Internet modem by unplugging it from the power source, leaving it unplugged for about five minutes. Plug it back into the power source.
4. Remove the modem, then reinstall the modem through the 'Device Manager.' Click the desktop's 'Start' button and right-click 'My Computer.' Select the 'Hardware' tab, then click the 'Device Manager' button. In the 'Device Manager' list, right-click your modem and select 'Uninstall.' Unplug the Internet modem from the computer and reboot. While the computer is running, plug the modem into the computer. Your computer will recognize the new hardware and will prompt you to install. Click this prompt and follow the installation steps. This should remove the 678 error.
Read more ►

How to Fix the Missing File Mshtml.dll


1. Download the Mshtml.dll file.
2. Right click the saved DLL file and click 'Copy.' Go to the 'Start' menu, click 'Computer,' double-click the 'C:' drive, double-click the 'Windows' folder and then the 'System32' folder. Right click anywhere in a blank space and click 'Paste.'
3. Go to the 'Start' menu, type 'Run' in the 'Start Search' box and press 'Enter.' Type Regsvr32 'C:\Windows\System32\mshtml.dll' in the search field and hit 'Enter' to register the DLL. Click 'Yes' in the pop-up window to confirm the registration.
4. Restart your computer.
Read more ►

Monday, May 13, 2013

How to Fix a Rundll.exe File


Through Service Management
1. To stop the error through the computer's 'Services Management,' identify the program causing the rundll error. Look at the last file name that ends in 'dll' when the error appears.
2. Click the 'Start' button and select 'Run' from the Start menu. Type 'services.msc' in the Run window.
3. Search for the program identified as the source of the 'dll' error in the 'Services Management' window that appears. Right-click the program and click 'Stop.'
Through Registry Editor
4. To fix the errors through the registry editor, click the Start button and select Run from the Start Window. Type 'regedit' to bring up the registry editor.
5. Navigate to 'HKEY_LOCAL_MACHINE> SOFTWARE> Microsoft> Windows> CurrentVersion> RUN.'
6. Find the corresponding registry key with the program causing the 'dll' error. Delete this and reboot the computer.
Read more ►