Link to home
Start Free TrialLog in
Avatar of goconcepts
goconcepts

asked on

PPPoE and DUN Connections in VB.NET

I am trying to create a VB.NET program that does somewhat the same type of thing as the IEAK, only a much more customized version. I work for an ISP who offers cable, DSL, and dialup services (and much higher connections, but the CD is for home users mainly). The CD needs to be able to detect what version of Windows is being used (I'm sure that part is really easy...haven't searched for it yet though) and then display options based on that.

DSL requires a PPPoE connection and XP has this built in but anything below (2000/98/ME) do not. I've got the protocol ready to be installed but I don't know how to accomplish this. If the OS is XP I need to be able to create the correct connection type by having the user fill in their username and password, nothing more (I'll handle the rest). I've tried using INS files for this and it doesn't work. For whatever reason, even though I select WAN MiniPort as the "modem" to use it still sets the connection up on a regular modem and of course doesn't work.

I can create a dialup connection fine, just need to know how to write to a text file in a temp directory (create the directory if it doesn't exist) and then ocne the connection is installed I'll want to delete this.

That is the background information. What I need to be able to do is install a component of some sort (unless .NET offers the ability to create PPPoE somewhere in the framework?) that allows a user to type in user/pass and the connection is setup in XP. If they are using below that I need to install the protocol and then do the same thing - seamlessly create the connection. I also need to be able to write the text file for dialup (INS file actually) like mentioned above.

I've searched the site here and Google and am not finding anything that is really helping me out in this task.

Prefer VB.NET code but I can convert C# if need be.

Any help is much appreciated!!
Avatar of gregoryyoung
gregoryyoung
Flag of Canada image

ok ... let me just point out a single issue here before I go any further. What if the framwork isnt installed on these older machines ?
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of goconcepts
goconcepts

ASKER

Gregory - that's a good question. If they don't have the framework installed it would die wouldn't it? I hadn't even thought of that. Is there a way to test the program by when they try running it, if the framework isn't there it prompts to install before going any further?

TheLearnedOne - thanks for the link to the files on the code project. This is definitely getting close to what I want to do and I can convert C# with ease (thanks to a conversion program I have).

Does anyone know how I can streamline this whole thing so the user sees nothing at all? I've got some vague ideas and will play with it a little, but I didn't know if someone had any suggestions. I'll also need to know how to install the raspppoe.exe component automatically without the client seeing it happen.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If I did an autorun on the CD to install the framework would it detect it as having already been installed? Is there a way to do an If/Then in the autorun.inf (the theory...not necessarily written in that form of course)?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
OK, I believe that is what I needed to have for now. Thanks for all your help!