Unsolved
This post is more than 5 years old
16 Posts
0
31225
July 14th, 2009 11:00
DSIA and Windows 2000
I'm attempting to install the latest version of the Dell OpenManage Inventory Agent on a Windows 2000 server (DSIA_R222376.msi). The documentation states that if the server has the WMI redistributable components installed, it should work and it's supported. That installed through the latest ConfigMgr 2007 client, which is installed and running on the server. The DSIA MSI installs successfully, but when it runs, it fails and puts a warning in the event log, along with a message in the lastrun.log file stating "OS is not supported". Do I need to use an older version of DSIA for Windows 2000 servers, and if so, where would I find it? Thank you.


DELL-Greg R
118 Posts
0
July 14th, 2009 20:00
johnnyc121
16 Posts
0
July 22nd, 2009 17:00
DELL-Greg R
118 Posts
0
July 22nd, 2009 20:00
Greg
johnnyc121
16 Posts
0
July 27th, 2009 10:00
johnnyc121
16 Posts
0
July 28th, 2009 16:00
-- Download DSIA.msi dated 10/24/2008 from the FTP site.
-- Manually install it on the W2K server, try to stop the service once it's installed, but if it doesn't, the invcol.exe process will eventually fail and the service will stop anyway.
-- Once the service is stopped, download the InvCol_R188301.exe file from the FTP site. This appears to be the next lowest version of InvCol.exe (2.8.0.22 vs. 5.5 on the DSIA.msi install)
-- Replace the invcol.exe on the server with the downloaded one.
-- Run the service again, this time there are no warnings/errors in event viewer.
-- Force server to re-scan for updates in Config Manager control panel. Eventually the dialog box will appear with Dell updates if you have a deployment set up.
It would be convenient to have the older InvCol.exe already in a DSIA.msi, then I could deploy it through Config Mgr instead of installing it manually, which is what I did for this particular install ...
Dell-Yong C
20 Posts
0
July 30th, 2009 10:00
Your above workaround could eliminate the error message, but we don't recommend it. Since the latest invcol.exe within DSIA may include new features, improvement, as well as some bug fixes if we have.
johnnyc121
16 Posts
0
July 30th, 2009 12:00
johnnyc121
16 Posts
0
July 30th, 2009 13:00
SELECT * FROM Win32_ComputerSystem WHERE (Manufacturer >= 'Dell' AND Manufacturer
.. and according to the MSDN documentation, the LIKE operator is not available, so the query fails. Is there a substitute query I can use that will work with Windows 2000, then I could use the package there as well?
johnnyc121
16 Posts
0
July 30th, 2009 13:00
Dell-Yong C
20 Posts
0
July 30th, 2009 13:00
You can try to remove the previous dsia manually, then start a scan to see whether it shows applicable or not.
P.S. I manually tested upgrade dsia from 10/24/2008 version to the latest one dsia_R229373.msi, which is defined in the latest Dell SDP catalog. Upgrade works.
johnnyc121
16 Posts
0
July 30th, 2009 14:00
===========================================
SASDUPIE.exe - Entry point not found
The procedure entry point RegDeleteKeyExA could not be located in the dynamic link library ADVAPI32.dll
===========================================
Is that related to the Broadcom issue, or is this something else altogether?
Dell-Yong C
20 Posts
0
July 30th, 2009 16:00
Dell has dropped Win2K support, so you may encounter some issues during inventory and update.
Dell-Yong C
20 Posts
0
July 30th, 2009 16:00
Technically, there is a workaround. The query could be modified as:
SELECT * FROM Win32_ComputerSystem WHERE (Manufacturer >= 'Dell' AND Manufacturer 'PowerEdge') AND (Model = 'PowerVault') AND (Model
Dell-Yong C
20 Posts
0
July 30th, 2009 17:00