Saturday, February 9, 2013

How to Install ActiveX EXE


1. Open your Internet browser and navigate to the ActiveX.exe application download (see link in 'Resources').
2. Click 'Download Now' and ActiveX.exe begins to download directly to your computer.
3. Double-click the downloaded file and a prompt window appears, asking if you are sure you want to download the file. Select 'Yes' and the installation wizard appears on the screen.
4. Click 'Next' on the welcome page, then choose 'Accept' when presented with the end-user agreement.
5. Select 'Next' to leave the installation name and location as is. Click 'Install' and the ActiveX.exe download installs directly onto your computer.
Read more ►

How to Reinstall MSHTA


1. Click 'Start,' 'All Programs,' 'Accessories,' then right-click 'Command Prompt,' and select 'Run as Administrator.' The Command Prompt opens.
2. Type 'regsvr32 mshta.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
3. Click 'Y' to confirm the command.
4. Close the Command Prompt by clicking the 'X' in the top right. Alternatively, you can type 'Exit' (without the quotation marks) and press 'Enter.'
Read more ►

Thursday, February 7, 2013

How to Set ActiveX With Internet Explorer 7


1. Launch Internet Explorer and click the 'Tools' menu. Scroll down the list of options and click 'Internet Options' to launch the 'Internet Options' dialog box.
2. Click the 'Security' tab and click the 'Custom Level' button to launch the 'Security Settings' dialog box.
3. Select the 'Enable' radio button next to each of the following options under 'ActiveX controls and plug-ins':Automatic prompting for ActiveX controlsBinary and script behaviorsRun ActiveX controls and plug-insScript ActiveX controls marked safe for scripting
4. Select the 'Prompt' radio button next to each of the following options:Download signed ActiveX controlsDownload unsigned ActiveX controlsPrompt Initialize and script ActiveX controls not marked safe
5. Select the 'Enable' radio button next to each of the following options under 'Downloads':Automatic prompting for file downloadsFile Download
6. Click 'OK' to save your changes, and then click OK' again to close the 'Internet Options' dialog box.
Read more ►

How to Retrieve a Lost .dll File


1.
Run the program that uses the missing .dll file. The error message will list the name of the missing file. Note the name of the file.
2.
Visit DLL_Download.net. DLL-Download.net is a website that archives popular and generic .dll files.
3.
Type the name of the .dll file into the field next to '.DLL,' then click 'Find DLL.'
4.
If the missing .dll file is listed, download the file. If you do not find the correct .dll file, then try DLL-Files.com. The .dll file will be in a .zip archive file, and should not take long to download.
5.
Move the new .dll file into the directory of the missing .dll file. If necessary, use WinZip to extract the .dll file. WinZip is a file compression tool that reduces file size, and is particularly useful in compressing numerous files into one archive.
If you do not remember or know where the .dll file is supposed to go, search the folders for the program the .dll file belongs to and look other .dll files. When programs are installed, their .dll files are typically gathered in one folder. Find the folder with other .dll files and replace the missing .dll file.
Read more ►

Wednesday, February 6, 2013

How to Remove Mcshield.exe


1. Press 'Ctrl,' 'Alt,' and 'Delete' together on your computer to access the Windows Task Manager. Click the 'Processes' tab.
2. Click 'mcshield.exe' and click 'End Process.' This will terminate this program's currently running process.
3. Click the Windows 'Start' button and click 'Run' or 'Start Search' (Windows Vista users).
4. Type 'services.msc' (without quotes) and press 'Enter' to open the services window.
5. Click the 'Services' button on the left panel. Scroll down the left panel and double-click 'MCShield.'
6. Click the 'General' tab and select 'Disabled' on the 'Startup Type' window. Click 'OK' to save the changes and close the Services window. This action will remove mcshield.exe from startup and prevent it from running.
Read more ►

How to Fix a Generic Host for Win32 amp; Svchost EXE Errors


1. Click the Start menu and select 'Run.' In Windows 7, you will need to manually type 'run' without the quotes and press 'Enter.'
2. Type 'regedit' (without the quotes) in the 'Run' tool and press the 'Enter' key. This will launch your Windows Registry Editor.
3. Navigate to the following registry in the left pane: 'HKEY_LOCAL_MACHINE'/'SYSTEM'/'CurrentControlSet'/'Services'/'Browser'/'Parameters.'
4. Double-click 'IsDomainMaster' in the right pane.
5. Type to set 'False' under 'Value data.'
6. Close Registry Editor. Reboot your computer to end task.
Read more ►

How to Use Kernel32


1. Log-in to the Windows operating system using your user name and password.
2. Click 'Start,' 'Run,' type 'command' (without the quotation marks) into the dialog box, and click 'OK.'
3. Type 'regsvr32 kernel32.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
4. Type 'Y' if asked whether you are sure you want to execute the command.
5. Close the Command Prompt. To do this, either click the 'X' in the top right corner or type 'Exit' (without the quotation marks) and press 'Enter.'
Read more ►

Saturday, February 2, 2013

How to Fix Rundll Errors for Free


1. Run Windows in Safe Mode. Restart the computer. At reboot, press the 'F8' key repeatedly. Keep tapping 'F8' until the Windows Advanced Options menu appears. From that menu, select 'Safe Mode No Networking' and press 'Enter.'
2. Run antivirus and antispyware scans. This may take several minutes, depending on the size of your hard drive. Delete any malicious programs that are discovered. Reboot the computer.
3. Insert the Windows system CD or OEM system recovery CD after Windows has loaded.
4. Replace your old rundll32.exe file. Click the 'Start' menu and select 'Run.'
5. Type in the 'Run' dialog box (without quotation marks):'expand X:\i386\rundll32.ex_ c:\windows\system32\rundll32.exe' with 'X' being the letter of your CD drive. This will install the original rundll32.exe file that came with your Windows software. Reboot.
Read more ►

How to Run Programs Without a Valid Digital Signature


1. Open 'Internet Explorer' and bring up the 'Internet Explorer Menu Toolbar' by holding down the 'ALT' key.
2. Navigate to the 'Tools' menu by pressing 'T' on your keyboard or clicking on 'Tools.'
3. Select 'Internet Options' and navigate to the 'Advanced' tab.
4. Scroll down and check off 'Allow software to run or install even if the signature is invalid.' This will allow any downloaded program to run even if there is no valid digital signature.
Read more ►

How to Read MP3 File Information With VFP


1. Launch the VFP application.
2. Enter the following code into the command prompt and press 'Enter:'oPlayer = createobject('WMPlayer.OCX.7')loItems = oPlayer.MediaCollectionloSong= loItems.add('c:\what time is it.mp3')? loSong.duration? loSong.getItemInfo('Artist')? loSong.getItemInfo('Title')? loSong.getItemInfo('Album')This will display the information of the MP3 files.
3. Enter the following code to control the music play and press 'Enter:'oPlayer.Controls.Play && Play the songYou have now read MP3 file information with VFP.
Read more ►

How to Fix Mscoree.dll


1. Download the Mscoree.dll file.
2. Right-click the saved DLL file and select '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\mscoree.dll' in the search field and press 'Enter' to register the DLL. Click 'Yes' in the pop-up to confirm the registration.
4. Restart your computer.
Read more ►

Friday, February 1, 2013

How to Troubleshoot Rundll32 EXE Not Responding


1. Click "Start," then "Run," or click "Start," "All Programs," "Accessories," then "Run," depending on your operating system. Type "msconfig" into the dialogue box, then hit "Enter" to launch System Configuration.
2. Select the "Startup" tab. Expand the "Command" field and search for "rundll32.exe."
3. Uncheck the box next to any startup item in the list containing "rundll32.exe" in its Command field.
4. Click "OK." Press "Esc," "Shift" and "Ctrl" simultaneously. Select the "Processes" tab when Windows Task Manager appears.
5. Click the "Description" tab, then search for a process with the same name as the startup item you disabled previously.
6. Right-click the item, then select "End Process." Click "End Process" again. Restart your computer.
7. Press "F8" before the OS startup screen appears, then select "Safe Mode" from the list of options. Hit "Enter" to enter Windows Safe Mode.
8. Run your antivirus and a registry repair software to remove any viruses, malware or registry errors from your PC. Restart your computer.
9. Relaunch System Configuration. Check the box next to all of the startup items you disabled. Click "OK" and restart your computer.
Read more ►

Monday, January 28, 2013

How to Register Flash9F OCX


1. Open a 'Command Prompt' with administrative privileges. Click the Windows logo to open the 'Start' menu, then pick 'All Programs' in Windows Vista or a newer version of Windows. Select 'Accessories' and right click on 'Command Prompt.' Choose 'Run as Administrator.' Click on 'Start' and then 'Run' in Windows XP or an older version of Windows. Type 'cmd' in the 'Open' dialog and press 'Enter.'
2. Enter the command 'regsvr32 %SystemDirectory%/Flash9f.ocx' where %SystemDirectory% is the full path to the Windows system directory. (For example, on a typical Windows XP system this directory is 'C:\Windows\system32.') Press 'Enter.'
3. Wait for the system to confirm that the file is registered. Close the 'Command Prompt' window.
Read more ►

Sunday, January 27, 2013

How to Repair Outlook Express in Windows XP


Using the System File Checker Wizard
1. Click 'Start,' click 'Run,' type 'sfc /scannow' and click 'OK.'
2. The 'System File Checker Wizard' opens. Follow the directions.
3. Restart your computer when complete.
Using Internet Explorer
4. Open Internet Explorer. Internet Explorer is closely related to Outlook Express, so problems with temporary Internet files stored under Internet Explorer can be affecting the operation of Outlook Express.
5. Click 'Tools' and click 'Internet Options.'
6. Click 'Delete' under 'Browsing history,' select the 'Temporary Internet Files' option and click 'OK.'
Re-registering Libraries
7. Click 'Start,' then 'Run.'
8. Type 'regsvr32 urlmon.dll' into the Run box and click 'OK.' Click 'OK' on the 'DllRegisterServer succeeded' dialog box.
9. Type 'regsvr32 mshtml.dll' into the Run box and click 'OK.' Click ' OK' on the 'DllRegisterServer succeeded' dialog box.
10. Type 'regsvr32 shdocvw.dll' into the Run box and click 'OK.' Click ' OK' on the 'DllRegisterServer succeeded' dialog box.
11. Type 'regsvr32 browseui.dll' into the Run box and click 'OK.' Click ' OK' on the 'DllRegisterServer succeeded' dialog box.
12. Type 'regsvr32 msjava.dll' into the Run box and click 'OK.' Click ' OK' on the 'DllRegisterServer succeeded' dialog box.
Reinstalling Outlook Express
13. Click 'Start,' then 'Run.'
14. Type '%systemroot%\inf' and click 'OK.' The 'Windows\inf' folder opens.
15. Look for 'MSOE50.inf,' right-click on the file and then select 'Install.' This process is going to reinstall Outlook Express on your system. You may need your Windows XP disc.
Read more ►

Saturday, January 26, 2013

How to Uninstall the SQLDumper Library amp; Then Reinstall It


1. Click on 'Control Panel' from your Start menu.
2. Click 'Add or Remove Programs' or 'Programs and Features.'
3. Select 'Microsoft SQL Server.'
4. Click 'Remove' or 'Uninstall.' Then confirm your desire to remove the program.
5. Restart your computer.
6. Download a new copy of SQL Server from the Microsoft link in Resources.
7. Double-click the downloaded file to install.
8. Install the latest service pack from the Microsoft link. This fixes many issues, including ones involving SQLDumper.
Read more ►