AdmX.exe With .net Framework 1.1
Thursday, October 30th, 2008With my new job, I am deep in the MS trenches (I miss you tux). I have been doing some work with Group Policies and wanted to try out this program called AdmX. AdmX allows you to parse through .adm files and export it as a tab delimited file. In trying to get this thing running, it keeps asking me to have .net Framework 1.0.5000 or 1.0.3705. I couldn’t find either, so I went into the config file (admX.exe.config) and just added a supportedRuntime element. It appears to work now, so I figured I would post what I did. Here’s my new config file.
< ?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <requiredruntime imageVersion="v1.0.3705" version="v1.0.3705" /> <supportedruntime version="v1.0.5000" /> <supportedruntime version="v1.0.3705" /> <supportedruntime version="v1.1.4322" /> </startup> </configuration>