How to reinstall broken VBScript support on Windows XP SP3?

30

Try to repair the WMI. Do this:

Open a command promt (cmd) and run the following commands, one by one.

rundll32 wbemupgd, UpgradeRepository
cd /d %windir%\system32\wbem
for %i in (*.dll) do RegSvr32 -s %i
for %i in (*.exe) do %i /RegServer

Reboot computer.

http://windowsxp.mvps.org/repairwmi.htm

Share:
30

Related videos on Youtube

Ivan
Author by

Ivan

Updated on September 18, 2022

Comments

  • Ivan
    Ivan over 1 year

    I am working on a small HTML project, and there will be quite a few pages. I want each of them to have an title at the top with two pictures besides it.it looks like this.

    <table align="center">
    <td><img src="picture.jpg" width="200"></td>
    <td><h1 class="pagetitle">TITLE OF PAGE</h1></td>
    <td><img>src="picture.jpg" width="200"></td>
    </table>
    

    I would prefer to do this using only HTML or CSS. If it is not possible, please explain how to do it in another language.

    • ippi
      ippi almost 9 years
      If you are running on apache, SSI has to be mentioned. You should be able to simply add <!--#include virtual="insertthisfile.html" --> in your file.
  • Ivan
    Ivan over 11 years
    Excuse me, colleagues, but even though I accept the solution, I can't testify that ti works. Unfortunately I can't remember whether or not it had helped me but tend to believe it had.