Deploying My Software

nikhilhs

Newcomer
Joined
Feb 22, 2004
Messages
22
I'm attempting to deploy my software on a friend's computer. I change the output on Visual Studio to Release mode, and I installed DX9.0 and the .NET Framework on his computer. It didn't run until I installed the DX9.0 SDK on his computer. What do I have to do to remove the dependency on the SDK?

Thanks.

-Nick
 
Kavan said:
You probalby didn't install DirectX with /InstallManagedDX flag.

I think Kavan's right.

Here is what I send to my early alpha testers. Hope it helps.

-Hiro_Antagonist

---------------------------------------------------------------
-----------------------------------------------------------
Basic Steps:
1. Install .NET 1.1 Framework
2. Install *managed* DirectX 9.0b
3. Run <the appliction>
-----------------------------------------------------------


Detailed Steps:
------------------------------
1. Install .NET 1.1 Framework
------------------------------

1) Download the .NET Framework from
http://www.microsoft.com/downloads/...e3-f589-4842-8157-034d1e7cf3a3&displaylang=en

2) Run it.



----------------------------------
2. Install *managed* DirectX 9.0b
----------------------------------

1) Download the DirectX 9.0b redistributable from http://www.microsoft.com/downloads/...DB-DCCE-43EA-87BB-7C7E1FD1EAA2&displaylang=en

2) Save the DirectX 9.0b redistributable to your hard drive.

3) Run the executable. When you run the setup, it will ask you where to unpack the DirectX files.

4) Choose an easy-to-remember location, like C:\DirectX.

5) After the files are done unpacking, run the managed DirectX install. To do this,

click on your Start menu
select "Run..."

6) In the Run textbox, type in "<location of directx files>\dxsetup /installmanageddx".
For example, if you installed the files to C:\DirectX, you would type in:
C:\DirectX\dxsetup /installmanageddx

This will install the Managed DirectX components to your machine.
 
Back
Top