PDA

View Full Version : 2010 Has anyone got AutoCad 2010 to deploy with Group policies? I'm having trouble!



samofawe
2009-04-08, 04:17 AM
I'm trying to deploy several different deployments of CAD 2010 to a large amount of computers in our office, but whenever I try to launch a ACAD deployment that was installed via group policy it doesn't start and I get an error message that 'adui18res.dll not found'. I've had a bit of a read of the network administrator's manual and I suspect the problem may be happening because I'm not rolling out the language pack msi (can anyone confirm that adui18res.dll is a language pack file?). I've tried adding the language pack as a separate software installation pack but when I try to add the two mst files that are specified in the manual (gpo.mst and the one with my deployment's name in it) I get an error message saying 'An error occured accessing the software installation data in the active directory. See the event log for additional details'. The error message in the event log is "Software Installation encountered the following error: SQL query syntax invalid or unsupported.". I'm guessing that there might be something wrong with the AcadLP.msi?? Can anyone provide any advice on how to get it working? I've managed to get Revit 2010 to install via group policies just fine but autocad seems to hate me.

Oh, and for reference the ACAD msi file has the right mst files (one with my deployment name and gpo.mst) added to it in the group policy management console. The ACAD deployment also works fine when I deploy it by starting the shortcut.

Any help would be brilliant.

Thanks!

Norton_cad
2009-04-08, 06:22 AM
I vaigley remember encountering an error message like the one you mention, when creating an MSI for network deployment. It couldn't find a DLL file either. It had something to do with the order it reads DLL files, as the errant file was available on the system.
I forget how I changed the order sequence, and maybe someone else can chime in.

In the meantime attached is a MSI creation guide from a couple of releases ago that might help. Perhaps creating an all in one MSI for Revit/ACAD deployment would be better?

samofawe
2009-04-08, 06:49 AM
Thanks for the reply. I'll take a look at making my own MSI files if I can't get this to work, but for now I'd prefer just to use Autocad's with the mst transform files.

forum1301
2009-04-14, 02:20 AM
Hey what did you ever do about the adui18res.dll problem, I am having the same issue?

samofawe
2009-04-14, 03:14 AM
Sadly, nothing. :(

I'm trying to get it to install via computer startup scripts now and am running into a whole different world of trouble. I'm glad to hear it's not just me though, hopefully autodesk will get their act together and do something.

Let me know if you work it out!

jvedio
2009-04-17, 06:26 PM
Having the same problem myself just doing a stand alone network deployment.

Norton_cad
2009-04-19, 02:54 PM
don't wait for the factory, they are a tad busy I'm sure.
Write your own...
It will be quicker, trust me...

samofawe
2009-04-20, 12:35 AM
For anyone interested, I ended up deploying it with a startup batch file script rather than trying to find what's wrong with deploying it with group policies. It's not ideal, but in some ways it is better as doing it this was is virtually the same as double clicking the deployment yourself which means that all the support programs and files get installed (the C++ and .NET runtimes for example) along with Autocad. This does not happen when you install AutoCad through a group policy, unless you create new software packages for each of the support programs.

In any case, this is a brief run down of how I did it. I'm fairly new to the whole enterprise computing scene so there's probably a few flaws in my method but hopefully it saves someone a bit of time working out what I took a while to. Hopefully it'll help me remember how I did it too!

Bear in my that in my situation I need to push out the deployments to computers rather than users. This is as there are quite a few different types of deployments that we use and users will sometimes log in to other's computers. I imagine it'd be similar if you want to push it out to users rather than computers but I haven't had any experience with that.

Anyway, first, I made a batch file for each of the deployments. They all looked something like this:


@ECHO OFF

rem Computer StartUp Script for the 32 bit SA version of CAD10

IF EXIST "C:/Program Files/AutoCad 2010/acad.exe" GOTO END

start /wait "Installing AutoCAD"

\\server\share\Autocad\Deployments\CAD10_32bit\AdminImage\setup.exe /qb /I \\server\share\installs\Autocad\Deployments\CAD10_32bit\AdminImage\CAD10_32bit.ini /language en-us

ECHO If you are seeing this message please don't press any keys.
PAUSE

END

exit


I think that is fairly self explanatory but basically it checks to see if ACAD is already installed by looking for the acad.exe file, and if it isn't there proceeds to start the deployment. I tried to get it to look for a registry key instead but it was a bit finicky so I just gave up. Also note that the install path in the script is just taken from deployment shortcut's target.

The one problem I found with the script is that, while the /wait command works, it only waits for the setup.exe file to finish running before continuing. What this means is that the setup would initialise but then terminate right after and nothing would install. This is because the setup.exe file calls other executable in the deployment, however the batch file sadly isn't smart enough to know this. I thought of a couple of ways around this such as making it wait for a set time rather than just for setup.exe to terminate but finally decided just to put a pause at the end which means the batch file will just sit there waiting which lets the deployment run its course and install completely. Once it's done the login prompt won't appear for a few minutes before the 'running startup script' box times out. Obviously this isn't ideal but it's a few minutes once a year so it doesn't matter that much.

I added the "ECHO If you are seeing this message please don't press any keys" just in case the script is run visibly (by default it shouldn't but you can change that in the GP) so that the user doesn't prematurely end the install. I should also point out that if you choose to do it my way, any additional startup scripts won't be run after the pause in the CAD install script as the startup script seems to time out and just skip over any other scripts. This isn't really a huge issue as they'll run on the next startup as the script will exit properly as it'll detect that acad is installed.

Each of the deployments need to be put on a network share where domain computers have full access. This is because the batch files are executed before a user is logged on so are executed under the computer account.

Then I made a group policy for each deployment and added the batch file under Computer Configuration > Windows Settings > Scripts > Startup. I think it's important to add the UNC path rather than a path with a mapped share (so something like \\server\share\batchfile.bat rather than X:\share\batchfile.bat) as the script will run before any shares are mapped.

From there it's as simple as assigning OUs or individual computers to the group policy. Acad will begin to install when the user's computer is next rebooted!

Also, one thing that was really confusing for me was that on Vista machines the script would appear not to run, but some time after startup I'd look on the computer and find that it'd magically installed itself. This is because, by default, Vista runs startup scripts asynchronously which means that it allows users to log in even before the script has finished running. This might be a good or bad thing, but for us it is better to have the program installed before the user could log in. You can disable it if you like by going into the group policy and going computer configuration > administrative templates > system > scripts > run logon scripts synchronously. You'll also find options to run the script as visible or not there too.

t.sutton
2009-06-16, 09:47 AM
Greetings all

First post here so be nice.

I've spent the last few days / weeks getting AutoCAD to deploy via GPO and have run into a few issues so thought I'd post the solutions here. This is still development work so please don't take it as gospel just yet! :)

The missing "adui18res.dll" file is because the msi package didn't copy down the file from in admin install point. In my case not only did it miss this but about 500 other files from there. These missing files were also chm's that were preventing the help and "new features workshop" from working.
I wrote an xcopy script to download the extra files like this -
REM check if done previously
if exist “c:\Program Files\AutoCAD 2010\dllsynch.flg” exit else
goto copy

:copy
REM synchronise dll files from install point
start /wait xcopy /d/e/h/c/y “\\domain\dfs\it\Deployment\ACAD2010_Fixed\AdminImage\x86\acad\en-us\Acad\Program Files\Root” “c:\Program Files\AutoCAD 2010\”

REM create dllsynch.flg to prevent rerun.
echo done > “c:\Program Files\AutoCAD 2010\dllsynch.flg”

Exit

I've run into two main issues with sub-applications not being installed by the package. These are the latest version of DirectX and the 2008 C++ Redist package. The C++ package was just a case of grabbing the download from MS and attaching the msi to the deployment GPO. The DirectX update was a bit of a nightmare and I've only got working via a startup script. That looks like this:
REM Check if dxwebsetup.exe exists already
if exist %windir%\system32\DirectX\DXWebSetup.exe exit else

REM make folder and copy down base installer
md %windir%\system32\DirectX

xcopy /c/y \\domain\dfs\it\deployment\directx\dxwebsetup.exe %windir%\system32\DirectX\

REM install DirectX
%windir%\system32\DirectX\DXWebSetup.exe /c:”DXwSetup.exe /windowsupdate” /q /r:n

Exit

After that it has been the ever lovely .NET 3.5 SP1 issue which has cropped up on other applications. In AutoCAD that produces fatal stop errors of which AutoDesk is aware and point you at the MS site to download the SP again. Personally I've had iffy results with the web based setup.exe but downloading the standalone package seems to nail all the tricky ones. Unfortunately this is about 240Mb so it's not exactly something you can just whiz over to people. The only copy I've managed to find so far is here (http://www.mydigitallife.info/2008/11/23/download-microsoft-net-framework-35-sp1-standalone-full-redistributable-setup-installer/) but I hope MS have it on their site too somewhere. If you find it, please let me know and I'll alter this.

Other than those minor issues and getting them to deploy / install in order it has been the usual AutoCAD install, ie: fiddly as hell!! I'm keeping an almost running diary going on my blog (http://graycat.wordpress.com) if anyone wants to keep up with my progress ..... and I will get this working smoothly via GPO! :)

samofawe
2009-06-16, 11:13 AM
Good luck, I admire your persistence and patience!

We're lucky enough to only be a fairly small business so even though the startup scripts that link to the deployments don't work sometimes it's not too much of a big deal as we can just go around and manually fix it up. I'm guessing you're from a bigger company though so you probably don't have that luxury - it's a real shame that autodesk couldn't get it right from the get go (and don't even appear to be trying to rectify it), especially considering that their deployment system works fine!

As for your .NET 3.5 SP1 issue, I think it should be avaliable for deployment via WSUS? I'm not sure if that's an option for you but it'd be an easy way to push it out to your users.

Thanks for the link to your blog too, I've subscribed - it seems to have lots of interesting and relevant stuff!

Good luck with it all, keep us updated just in case autodesk don't have the issue fixed for 2011 CAD and make sure not to do something rash in frustration (I know I nearly did a few times). :P

t.sutton
2009-06-16, 12:55 PM
lol unfortunately we're only about 200-300 people but with a small full time IT team and with a mandate to provide large scale type support so all out major applications are deployed. Normally that's fine but occasionally we run into tricky ones ..... like every recent AutoCAD update! ;)

For some reason 2007 was about the last version that deployed with relative ease. after that I think AutoDesk changed the methodology and it went horribly wrong. We had to give up on 2009 in the end as the group responsible just couldn't get it to work. For some reason 2010 then got kicked to me to sort.

The .Net issue is that I think either MS have updated the original SP1 that was a bit buggy or the machines have not installed it correctly. Either way the result is the same - fatal errors and grey hair.
I'm looking into the WSUS angle to see if it can be removed and the newer more stable update installed. I'll let you know how I get on with that route as it'll affect the entire corporation which is always fun. It may be that I just script the install from a server for those that need it and leave the rest

I've worked out how to get the component parts to install in order now and just have to test it. when that's done, I'll post it up for people.

2011?!? don't even say such things yet! :) lol

Tim/.

Oh, thanks for the comments on the blog. Always nice to know it is at least vaguely useful to someone other than myself.

t.sutton
2009-06-19, 08:33 AM
As I said previously, I've got the installs working in order and here's how I did it.

Separate the deployment into two GPOs. The first one updates DirectX 9 via a startup script whilst the second deploys C++, AutoCAD 2010 and synchronises missing files.

I filter these GPOs by group membership so only machines in the "AutoCAD2010" security group will have it applied. Both GPOs are then linked at the same place in the domain.

To make sure the second GPO does not install before DirectX is update I created a WMI filter to look for a certain folder that only exists after the update (c:\Windows\Microsoft.Net\DirectX for Managed Code). This was applied to the second GPO and all was good.

That's it so far and there's been no major issues since. The minor ones are to do with cui/cuix files but I think that's beyond my area of the project ..... fortunately! :)

feldthaus
2009-06-19, 10:46 AM
I managed to deploy Autocad 2010 by following this guide (page 58 and forward):

http://images.autodesk.com/adsk/files/acad_nag0.pdf

t.sutton
2009-06-23, 09:20 AM
I managed to deploy Autocad 2010 by following this guide (page 58 and forward):

http://images.autodesk.com/adsk/files/acad_nag0.pdf

I think a lot of us have tried to do it that way but failed.

Personally I used that as a basis and then had to do all the troubleshooting of .NET, C++, missing files etc.

Did it work straight through first time with no additions for you?

GTO_300
2009-07-08, 06:00 PM
Hi. From my experience i believe you have tried to installed from the acad.exe which is wrong.

Run setup.exe instead.

If you have an error of the showing installation log file verify location. It means that your computer systems did not set temp string to a temp folder. please go to
1. control panel
2. System tab
3. Advanced system setting
4. Environment variables...

In the both system and user variables make new or edit the current variable to TEMP and TMP. Set value to C:\temp\.

This should solve your installation problem. Cheers!

t.sutton
2009-07-16, 02:38 PM
Hi. From my experience i believe you have tried to installed from the acad.exe which is wrong.

Run setup.exe instead.

If you have an error of the showing installation log file verify location. It means that your computer systems did not set temp string to a temp folder. please go to
1. control panel
2. System tab
3. Advanced system setting
4. Environment variables...

In the both system and user variables make new or edit the current variable to TEMP and TMP. Set value to C:\temp\.

This should solve your installation problem. Cheers!

it's deploying via a group policy and as such works against the msi package and not the executables.

trota
2009-08-01, 01:07 AM
So, I am having the same problems as you are all experiencing in trying to deploy AutoCAD 2010 using the MSI and MST files which were created by the deployment wizard.

I have not seen mentioned on this board that, along with the MSI/MST files, there is a silent installer that is also built when you use the deployment wizard. It is created in the root directory in the folder that you specified as the install directory on the server. If you look in that folder you will find a subfolder called "AdminImage" and a folder called "Tools" Also in this folder is a shortcut to the silent installer. In my case it is called "AutoCAD2010" because that's what I named it when using the deployment wizard. When you run this installer it actually installs AutoCAD quite nicely with the options you specified in the deployment wizard. You can then use SCCM or a batch file or whatever method you choose to run the deployment.

The PROBLEM is that Autodesk never wrote an uninstaller. So while they gave is a way to install AutoCAD silently there is no way to uninstall it. Autodesk's solution (admittedly by design) is to go to each computer and use Add/Remove Programs. That, of course, is not an option at a university with over 1,000 lab computers spread out all over campus. Very frustrating!

So far I have found no viable workaround. Our reseller is opening a case with Autodesk but I suspect it will be versions before we see any fixes.

If anyone has figured out how to do a remote uninstall of AutoCAD 2010 it would be appreciated if you could share your methods.

On Monday I will try to repackage the software with Installshield. Not sure I'll have much success but I'm running out of options. I have to have this software installed in three weeks so I will have to come up with something. If I find a viable way of installing and uninstalling AutoCAD I will post my findings.

rkmcswain
2009-08-01, 03:24 PM
(Autodesk: you FAIL!)

Yes, I (and many others) really wish they would put some effort into this. I guess they figure that anyone large enough to need mass deployment tools will have something else already like Altiris...

esnay
2009-08-03, 09:01 PM
Apologies if this has already been asked, but:

Is it possible to create a Ghost image of a machine on which you've already run deployment installs, then roll it out that way? We have a single license server.

In the Imaging section of the manual they talk about some AdLM folder but the description and instructions were sufficiently vague for me to give up.

Would the cloned machines connect and use the license server appropriately?

rkmcswain
2009-08-03, 09:47 PM
Is it possible to create a Ghost image of a machine on which you've already run deployment installs, then roll it out that way? We have a single license server.

I have not tried this, but I don't see why it wouldn't work for network licensed copies. All a network licensed copy looks for at startup is an unused license on the LM. The first place it looks for the LM location is the environment variable ADSKFLEX_LICENSE_FILE.

Make sure your master copy has this environment variable included.

See this link for more info: http://cadpanacea.com/node/43

trota
2009-08-04, 11:07 PM
Ok. I found some helpful information on how to uninstall AutoCAD 2010 at:

http://www.appdeploy.com/messageboards/tm.asp?m=49488

Here is a quote from one of the posts:

QUOTE

" This did give me one idea, did a search for the acad.msi (rather than setup.exe) in the original installation files rather than on my PC. found it, Ran that with the following code - WORKS PERFECTLY.

c:\windows\system32\msiexec.exe /x {5783F2D7-8001-0409-0002-0060B0CE6BBA} /qn

This is the guid from the original uninstall string. "

UNQUOTE

One note I will add to the above post... Running the above command causes SOME of the application to be uninstalled. However it leaves behind the entire installation folder with all of it's subfolders and files. The good news is that you can just write a short script to delete that folder. Doing so doesn't seem to break anything and the silent installer can be re-run in necessary to reinstall the application.

What I do not know at this point if this type of uninstall will break any other installed Autodesk applications. That still needs to be tested.

So we will probably deploy AutoCAD using the silent installer that the deployment wiwzard creates, via SCCM and then use the above method for the uninstall.

Good luck!

juha.hanninen
2009-10-12, 01:09 PM
How to deploy AutoCAD Plant 3D with GPO (Group Policy)

Not sure if anybody still needs this information.

First of all, a couple of answers to problems expressed here earlier.

'adui18res.dll not found'
- this is because the language pack is not installed

This happens when trying to add a new Package with Windows XP Sp2
"Software Installation encountered the following error: SQL query syntax invalid or

unsupported."

Use Vista or XP Sp3 to create the new Package!

The whole procedure in short ;)

I didn't install Windows installer 4.5, seemed to work anyway.

1. Install .NET 3.5 with WSUS

2. DirectX
- I made a little .msi package to install the two files that AutoCAD looks for that are

missing from the original DirectX installation. DirectX gets new .dll's every second

month...
- d3dx10_37.dll
- D3DX9_37.dll

3. msxml6.msi
- from the deployment
<your_deployment>\AdminImage\x86\support\dotnetfx\wcu\dotNetFramework\dotNetFX30\x86\msxm

l6.msi


4. Vba 6
- download from Microsoft
<your_software_installation_server>\ms\Vba\6051032\VBAOF11.MSI
<your_software_installation_server>\ms\Vba\6051032\1033\VBAOF

5. VCRedist 2005

- the exe's must be extracted TWICE (Microsoft humour?)
- extract vcredist_x86.exe

<your_deployment>\AdminImage\x86\support\VCRedist\2005\vcredist_x86.exe

- you get VCREDI~3.EXE, extract that and you get

vcredis1.cab
vcredist.msi

<your_software_installation_server>\ms\VCRedist\2005\8059193\vcredist.msi

6. VCRedist 2008hel-soft

- from the deployment
<your_deployment>\AdminImage\x86\support\VCRedist\2008\x86

7. AutoCAD Plant 3D 2010
- from the deployment
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010-for-GPO.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

8. AutoCAD Plant 3D 2010 Language Package
- from the deployment
<your_deployment>\AdminImage\x86\acad\en-us\AcadLP.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

Design Review 2010 might be the next challenge but I'm not sure if it is worth it...

darren.mcdermott
2009-10-13, 09:34 AM
How to deploy AutoCAD Plant 3D with GPO (Group Policy)

Not sure if anybody still needs this information.

First of all, a couple of answers to problems expressed here earlier.

'adui18res.dll not found'
- this is because the language pack is not installed

This happens when trying to add a new Package with Windows XP Sp2
"Software Installation encountered the following error: SQL query syntax invalid or

unsupported."

Use Vista or XP Sp3 to create the new Package!

The whole procedure in short ;)

I didn't install Windows installer 4.5, seemed to work anyway.

1. Install .NET 3.5 with WSUS

2. DirectX
- I made a little .msi package to install the two files that AutoCAD looks for that are

missing from the original DirectX installation. DirectX gets new .dll's every second

month...
- d3dx10_37.dll
- D3DX9_37.dll

3. msxml6.msi
- from the deployment
<your_deployment>\AdminImage\x86\support\dotnetfx\wcu\dotNetFramework\dotNetFX30\x86\msxm

l6.msi


4. Vba 6
- download from Microsoft
<your_software_installation_server>\ms\Vba\6051032\VBAOF11.MSI
<your_software_installation_server>\ms\Vba\6051032\1033\VBAOF

5. VCRedist 2005

- the exe's must be extracted TWICE (Microsoft humour?)
- extract vcredist_x86.exe

<your_deployment>\AdminImage\x86\support\VCRedist\2005\vcredist_x86.exe

- you get VCREDI~3.EXE, extract that and you get

vcredis1.cab
vcredist.msi

<your_software_installation_server>\ms\VCRedist\2005\8059193\vcredist.msi

6. VCRedist 2008hel-soft

- from the deployment
<your_deployment>\AdminImage\x86\support\VCRedist\2008\x86

7. AutoCAD Plant 3D 2010
- from the deployment
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010-for-GPO.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

7. AutoCAD Plant 3D 2010
- from the deployment
<your_deployment>\AdminImage\x86\acad\en-us\AcadLP.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

Design Review 2010 might be the next challenge but I'm not sure if it is worth it...

Hi, I am trying to deploy AutoCAD 2010 using sms and are running into issues you mention above.

I have created an admininstall image but prefer not to deploy using the standard setup.exe as I will deploy all the prerequesites seperately. Can you explain what you mean here

7. AutoCAD Plant 3D 2010
- from the deployment
<your_deployment>\AdminImage\x86\acad\en-us\AcadLP.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

I have these files
\AdminImage\x86\acad\acad-AutoCAD 2010 x86.mst
\AdminImage\x86\acad\acad-AutoCAD 2010 x86-for-GPO.msi
\AdminImage\Tools\gpo.mst

I am unsure how to chain them up for deployment with the gpo.mst.

I have tried the following command line msiexec.exe /i acad-AutoCAD 2010 x86-for-GPO.msi TRANSFORMS=acad-AutoCAD 2010 x86.mst /qb but I run into issues with lots of missing dll's (probably due to the language pack not being installed).

Does anyone know if its possible to Install AutoCAD 2010 using only the msi & mst files created during the admininstall?

TIA

juha.hanninen
2009-10-13, 11:23 AM
I corrected some typos in my original post. The language package must be installed too, the .mst files are the same as for acad.

I have not used SMS, only GPO. In a GPO package you justa add the two .mst files to the .msi installation. An example of multiple transforms with msiexec:

msiexec /i "\\AdminImage\x86\acad\acad-AutoCAD 2010 x86-for-GPO.msi" /qb /l*v c:\xxx\log_file_here.txt TRANSFORMS="\AdminImage\x86\acad\acad-AutoCAD 2010 x86.mst;\AdminImage\Tools\gpo.mst"

Remember to use the real paths in your environment.

darren.mcdermott
2009-10-13, 03:07 PM
Thanks for your reply, I am still having issues as I am unable to add multiple mst files on a command line. Your example is the same syntax I am using. However, when I add the gpo.mst as well as acad-AutoCAD 2010 x86.mst windows installer will not accept it.

Double clicking on acadlp.msi produces a 1606 error stating it cannot find the language files. Do you know if it is possible to create a standalone install of both the language pack and main autocad 2010 msi files?

Thanks for your help so far.

juha.hanninen
2009-10-14, 11:52 AM
Have you checked the typing?

Which operating system you have?

Difficult to say anything. I tested the msiexec syntax and it worked in our environment.

wilian
2009-11-03, 05:01 PM
Hello, i had the trouble too.
When I install the AutoCad 2010, i saw the letter 'adui18res.dll not found'. bad.
I desintall the auto cad 2010, and reinstall it, but the change was: select a lenguaje, i put spanish, i live in Mexico, OK.
In the first install i select English lenguaje, because the technical words are more familiar in English (i speak spanish).

JeanAHough170324
2011-06-30, 05:34 PM
How to deploy AutoCAD Plant 3D with GPO (Group Policy)

Not sure if anybody still needs this information.

First of all, a couple of answers to problems expressed here earlier.

'adui18res.dll not found'
- this is because the language pack is not installed

This happens when trying to add a new Package with Windows XP Sp2
"Software Installation encountered the following error: SQL query syntax invalid or

unsupported."

Use Vista or XP Sp3 to create the new Package!

The whole procedure in short ;)

I didn't install Windows installer 4.5, seemed to work anyway.

1. Install .NET 3.5 with WSUS

2. DirectX
- I made a little .msi package to install the two files that AutoCAD looks for that are

missing from the original DirectX installation. DirectX gets new .dll's every second

month...
- d3dx10_37.dll
- D3DX9_37.dll

3. msxml6.msi
- from the deployment
<your_deployment>\AdminImage\x86\support\dotnetfx\wcu\dotNetFramework\dotNetFX30\x86\msxm

l6.msi


4. Vba 6
- download from Microsoft
<your_software_installation_server>\ms\Vba\6051032\VBAOF11.MSI
<your_software_installation_server>\ms\Vba\6051032\1033\VBAOF

5. VCRedist 2005

- the exe's must be extracted TWICE (Microsoft humour?)
- extract vcredist_x86.exe

<your_deployment>\AdminImage\x86\support\VCRedist\2005\vcredist_x86.exe

- you get VCREDI~3.EXE, extract that and you get

vcredis1.cab
vcredist.msi

<your_software_installation_server>\ms\VCRedist\2005\8059193\vcredist.msi

6. VCRedist 2008hel-soft

- from the deployment
<your_deployment>\AdminImage\x86\support\VCRedist\2008\x86

7. AutoCAD Plant 3D 2010
- from the deployment
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010-for-GPO.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

8. AutoCAD Plant 3D 2010 Language Package
- from the deployment
<your_deployment>\AdminImage\x86\acad\en-us\AcadLP.msi
<your_deployment>\AdminImage\x86\acad\acad-AutoCAD Plant 3D 2010.mst
<your_deployment>\Tools\gpo.mst

Design Review 2010 might be the next challenge but I'm not sure if it is worth it...

Hi juha,

Try to follow these steps:
d3dx9_37.dll
It is because you will be missing written documents.
Step 1. You may acquire http://www.d3dx9.net/download-missing-d3dx9_37-dll/ listed here.
Step 2. Substance that submit for your system32 in addition to process directory. Additionally place it with your syswow
Step 3. Browse through in your System32(32Bit OS) or maybe SyWOW64(64Bit The gw990) Directory.
Note: The venue with System32 or perhaps SyWOW64 is
C:Windows\System32 (If you work with 32Bit Windows 7)
C:\Windows\SysWOW64 (if you are using 64Bit House windows)
Step 4.Paste your d3dx9_37.dll in to that directory.
Step 5.Manage the action. It would deliver the results at this moment.