<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: unable to install CIM 4.1 on windows server 2003 in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379149#M5932</link>
    <description>So, any ideas?</description>
    <pubDate>Thu, 07 Oct 2004 08:47:22 GMT</pubDate>
    <dc:creator>Alex A. Kibkalo</dc:creator>
    <dc:date>2004-10-07T08:47:22Z</dc:date>
    <item>
      <title>unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379144#M5927</link>
      <description>Hi, &lt;BR /&gt;&lt;BR /&gt;I have a problem installing CIM 4.1 on windows server 2003. When i try to install it I get the follwing error "HP Systems Insight Manager Installer requires Microsoft Data Acces Components (MDAC) 2.7 Service Pack 1 or greater to be installed"&lt;BR /&gt;&lt;BR /&gt;Windows 2003 server runs MDAC 2.8 from birth and cant be downgraded. So if anyone have a solution i would be greatfull. &lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Jesper&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Sep 2004 03:50:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379144#M5927</guid>
      <dc:creator>Jesper Johansen</dc:creator>
      <dc:date>2004-09-15T03:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379145#M5928</link>
      <description>I've done it dozens of times without a problem.  Are there any special policies or security configurations present that may be confusing the installer?</description>
      <pubDate>Wed, 15 Sep 2004 09:52:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379145#M5928</guid>
      <dc:creator>David Claypool</dc:creator>
      <dc:date>2004-09-15T09:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379146#M5929</link>
      <description>I have the same problem.&lt;BR /&gt;Clear install of Windows Server 2003 Enterprise Edition, all hotfixes from Windows Update.&lt;BR /&gt;Clear Installation of SQL Server 2000 Enterprise + SP3a + KB810185-8.00.0859 hotfix&lt;BR /&gt;&lt;BR /&gt;When I start setip process it says that I haven't MDAC 2.71 installed. (Windows 2003 always has it). I tried to repeat after installing MDAC 2.80 but still have same error.</description>
      <pubDate>Mon, 04 Oct 2004 03:05:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379146#M5929</guid>
      <dc:creator>Alex A. Kibkalo</dc:creator>
      <dc:date>2004-10-04T03:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379147#M5930</link>
      <description>The following piece of JavaScript illustrates the test used by the installer to determine the MDAC version.  A similar failure to install was caused by a bad setting for the CommonProgramFiles environment variable which is typically CommonProgramFiles=C:\Program Files\Common Files&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Copy the text between the ===== to a file called checkMDAC.js.  This is the test the installation performs.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;cscript.exe checkMDAC.js&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;wscript.exe checkMDAC.js&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Or double click the file&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;//=================================================&lt;BR /&gt;&lt;BR /&gt;function GetMDACVersion()&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;    var sMsg = "MDAC Version: ";&lt;BR /&gt;&lt;BR /&gt;    try&lt;BR /&gt;&lt;BR /&gt;    {&lt;BR /&gt;&lt;BR /&gt;        var oFS = new ActiveXObject("Scripting.FileSystemObject");&lt;BR /&gt;&lt;BR /&gt;        var oShell = new ActiveXObject("WScript.Shell");&lt;BR /&gt;&lt;BR /&gt;            sVersion = oFS.GetFileVersion(oShell.ExpandEnvironmentStrings("%CommonProgramFiles%") + "\\System\\Ado\\msado15.dll");&lt;BR /&gt;&lt;BR /&gt;        if (null != sVersion)&lt;BR /&gt;&lt;BR /&gt;            {&lt;BR /&gt;&lt;BR /&gt;            sMsg += sVersion;&lt;BR /&gt;&lt;BR /&gt;            }&lt;BR /&gt;&lt;BR /&gt;        else&lt;BR /&gt;&lt;BR /&gt;        {&lt;BR /&gt;&lt;BR /&gt;            sMsg += "Error retrieving file version";&lt;BR /&gt;&lt;BR /&gt;        }&lt;BR /&gt;&lt;BR /&gt;      }&lt;BR /&gt;&lt;BR /&gt;      catch(err)&lt;BR /&gt;&lt;BR /&gt;      {&lt;BR /&gt;&lt;BR /&gt;            sMsg += " ERROR " + err.number + " " + err.description;&lt;BR /&gt;&lt;BR /&gt;      }&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;    return (sMsg);&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;WScript.Echo(GetMDACVersion());&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;//=================================================&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 08:22:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379147#M5930</guid>
      <dc:creator>Joel Rubenstein</dc:creator>
      <dc:date>2004-10-04T08:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379148#M5931</link>
      <description>Hej, it says:&lt;BR /&gt;MDAC Version: ERROR -2147024894</description>
      <pubDate>Mon, 04 Oct 2004 08:27:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379148#M5931</guid>
      <dc:creator>Alex A. Kibkalo</dc:creator>
      <dc:date>2004-10-04T08:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379149#M5932</link>
      <description>So, any ideas?</description>
      <pubDate>Thu, 07 Oct 2004 08:47:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379149#M5932</guid>
      <dc:creator>Alex A. Kibkalo</dc:creator>
      <dc:date>2004-10-07T08:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379150#M5933</link>
      <description>If you open a command prompt and type&lt;BR /&gt;&lt;BR /&gt;echo %COMMONPROGRAMFILES%&lt;BR /&gt;&lt;BR /&gt;it should display something like&lt;BR /&gt;&lt;BR /&gt;C:\Program Files\Common Files&lt;BR /&gt;&lt;BR /&gt;If it does not then this problem needs to e corrected before the install can proceed.</description>
      <pubDate>Thu, 07 Oct 2004 10:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379150#M5933</guid>
      <dc:creator>Joel Rubenstein</dc:creator>
      <dc:date>2004-10-07T10:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: unable to install CIM 4.1 on windows server 2003</title>
      <link>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379151#M5934</link>
      <description>Thanx, Joel!&lt;BR /&gt;The problem was that CommonProgramFiles were mislinked to a network drive which is used as my Home Folder in domain user account properties.&lt;BR /&gt;Removing this property, or setting a constant variable on server solves the problem.</description>
      <pubDate>Thu, 07 Oct 2004 10:49:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/unable-to-install-cim-4-1-on-windows-server-2003/m-p/3379151#M5934</guid>
      <dc:creator>Alex A. Kibkalo</dc:creator>
      <dc:date>2004-10-07T10:49:21Z</dc:date>
    </item>
  </channel>
</rss>

