- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- unable to install CIM 4.1 on windows server 2003
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2004 08:50 PM
09-14-2004 08:50 PM
unable to install CIM 4.1 on windows server 2003
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"
Windows 2003 server runs MDAC 2.8 from birth and cant be downgraded. So if anyone have a solution i would be greatfull.
regards
Jesper
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2004 02:52 AM
09-15-2004 02:52 AM
Re: unable to install CIM 4.1 on windows server 2003
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2004 08:05 PM
10-03-2004 08:05 PM
Re: unable to install CIM 4.1 on windows server 2003
Clear install of Windows Server 2003 Enterprise Edition, all hotfixes from Windows Update.
Clear Installation of SQL Server 2000 Enterprise + SP3a + KB810185-8.00.0859 hotfix
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 01:22 AM
10-04-2004 01:22 AM
Re: unable to install CIM 4.1 on windows server 2003
Copy the text between the ===== to a file called checkMDAC.js. This is the test the installation performs.
cscript.exe checkMDAC.js
wscript.exe checkMDAC.js
Or double click the file
//=================================================
function GetMDACVersion()
{
var sMsg = "MDAC Version: ";
try
{
var oFS = new ActiveXObject("Scripting.FileSystemObject");
var oShell = new ActiveXObject("WScript.Shell");
sVersion = oFS.GetFileVersion(oShell.ExpandEnvironmentStrings("%CommonProgramFiles%") + "\\System\\Ado\\msado15.dll");
if (null != sVersion)
{
sMsg += sVersion;
}
else
{
sMsg += "Error retrieving file version";
}
}
catch(err)
{
sMsg += " ERROR " + err.number + " " + err.description;
}
return (sMsg);
}
WScript.Echo(GetMDACVersion());
//=================================================
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 01:27 AM
10-04-2004 01:27 AM
Re: unable to install CIM 4.1 on windows server 2003
MDAC Version: ERROR -2147024894
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 01:47 AM
10-07-2004 01:47 AM
Re: unable to install CIM 4.1 on windows server 2003
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 03:37 AM
10-07-2004 03:37 AM
Re: unable to install CIM 4.1 on windows server 2003
echo %COMMONPROGRAMFILES%
it should display something like
C:\Program Files\Common Files
If it does not then this problem needs to e corrected before the install can proceed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 03:49 AM
10-07-2004 03:49 AM
Re: unable to install CIM 4.1 on windows server 2003
The problem was that CommonProgramFiles were mislinked to a network drive which is used as my Home Folder in domain user account properties.
Removing this property, or setting a constant variable on server solves the problem.