Real Geek Forums  

Go Back   Real Geek Forums > Archives > Operating Systems > Windows XP > Windows XP Device Drivers

Notices

Reply

migrating NT drivers to XP

 

LinkBack Thread Tools Display Modes
Old 01-13-2004, 09:06 AM   #1 (permalink)
Default migrating NT drivers to XP

Hello,

Can anyone please tell me if migrating an Windows NT driver to Windows XP is
a hard job. I fail to find any information on this on the web ...

Thanks,

Laurent


LC
Guest
 
Posts: n/a
Reply With Quote  
Old 01-13-2004, 02:38 PM   #2 (permalink)
Default Re: migrating NT drivers to XP

"LC" <lc@master_of_universe.com> écrivait de
news:4003c2f3$0$6978$7a628cd7@news.club-internet.fr:
Quote:
> Hello,
>
> Can anyone please tell me if migrating an Windows NT driver to Windows
> XP is a hard job. I fail to find any information on this on the web
> ...
>
> Thanks,
>
> Laurent
>
>
>
alt._FR_.comp.os.ms-windows.xp FR cela veut dire "francais"

--
@+
rolling
Pour la reponse par mail, cliquer sur:
http://cerbermail.com/?I9DblrREAR
ou:
enlevez _spam

/...keep rollin' babe.../
rolling
Guest
 
Posts: n/a
Reply With Quote  
Old 01-13-2004, 03:20 PM   #3 (permalink)
Default Re: migrating NT drivers to XP

"LC" <lc@master_of_universe.com> wrote in message news:<4003c2f3$0$6978$7a628cd7@news.club-internet.fr>...
Quote:
> Hello,
>
> Can anyone please tell me if migrating an Windows NT driver to Windows XP is
> a hard job. I fail to find any information on this on the web ...
>
> Thanks,
>
> Laurent
I had done that a lot now.
The answer depends on :
1) The device driver which you already have:
*) ISA/PCI/... ? ISA is relatively easy (it is supposed to be NO work,
except if you have interrupts generated by your device).
For PCI devices, On some PC's I could manage without migration,
but since I needed my driver to work on all systems I had to migrate
all my PCI devices.
*) Any special complexities in your driver ?
Do you have to migrate a driver that opens multiple devices for one
Card ?
2) Is this a device that you use only in house ? Do you know that it
should work alone on A PC? In this case, you may not need to migrate.
In other words, does your situation allows you to have some discounts ?
3) Are you working with DriverWorks ? made it much easier to me.
4) Do you want to migrate while keeping a core code which will
work on Both OS versions ? or you are stopping to support NT4 ?
For me, this was the most important question.
5) How good do you know WDM ? There are some new things to understand ;-)
6) Do you plan to sign your drivers ?
7) does your driver support multiple HW versions/variations ?

BTW, After all this work, I still have a few unfinished businesses.


Bye
Maurice
Maurice zmau
Guest
 
Posts: n/a
Reply With Quote  
Old 01-13-2004, 09:40 PM   #4 (permalink)
Default Re: migrating NT drivers to XP

Thanks for your reply !

LC
"Maurice zmau" <zmau@netvision.net.il> a écrit dans le message de
news:a4a129d6.0401130820.4135992c@posting.google.c om...
Quote:
> "LC" <lc@master_of_universe.com> wrote in message
news:<4003c2f3$0$6978$7a628cd7@news.club-internet.fr>...
Quote:
Quote:
> > Hello,
> >
> > Can anyone please tell me if migrating an Windows NT driver to Windows
XP is
Quote:
Quote:
> > a hard job. I fail to find any information on this on the web ...
> >
> > Thanks,
> >
> > Laurent
>
> I had done that a lot now.
> The answer depends on :
> 1) The device driver which you already have:
> *) ISA/PCI/... ? ISA is relatively easy (it is supposed to be NO work,
> except if you have interrupts generated by your device).
> For PCI devices, On some PC's I could manage without migration,
> but since I needed my driver to work on all systems I had to
migrate
Quote:
> all my PCI devices.
> *) Any special complexities in your driver ?
> Do you have to migrate a driver that opens multiple devices for one
> Card ?
> 2) Is this a device that you use only in house ? Do you know that it
> should work alone on A PC? In this case, you may not need to migrate.
> In other words, does your situation allows you to have some discounts
?
Quote:
> 3) Are you working with DriverWorks ? made it much easier to me.
> 4) Do you want to migrate while keeping a core code which will
> work on Both OS versions ? or you are stopping to support NT4 ?
> For me, this was the most important question.
> 5) How good do you know WDM ? There are some new things to understand ;-)
> 6) Do you plan to sign your drivers ?
> 7) does your driver support multiple HW versions/variations ?
>
> BTW, After all this work, I still have a few unfinished businesses.
>
>
> Bye
> Maurice

LC
Guest
 
Posts: n/a
Reply With Quote  
Old 01-13-2004, 10:06 PM   #5 (permalink)
Default Re: migrating NT drivers to XP

Comments in line:
"Maurice zmau" <zmau@netvision.net.il> wrote in message
news:a4a129d6.0401130820.4135992c@posting.google.c om...
Quote:
> "LC" <lc@master_of_universe.com> wrote in message
news:<4003c2f3$0$6978$7a628cd7@news.club-internet.fr>...
Quote:
Quote:
> > Hello,
> >
> > Can anyone please tell me if migrating an Windows NT driver to Windows
XP is
Quote:
Quote:
> > a hard job. I fail to find any information on this on the web ...
> >
> > Thanks,
> >
> > Laurent
>
> I had done that a lot now.
> The answer depends on :
> 1) The device driver which you already have:
> *) ISA/PCI/... ? ISA is relatively easy (it is supposed to be NO work,
> except if you have interrupts generated by your device).
> For PCI devices, On some PC's I could manage without migration,
> but since I needed my driver to work on all systems I had to
migrate
Quote:
> all my PCI devices.
> *) Any special complexities in your driver ?
> Do you have to migrate a driver that opens multiple devices for one
> Card ?
Well you explanation really is incorect. Yes the driver should work, but if
you are targeting XP you would convert the driver to support Plug and Play
and Power Management. Ignoring power management will mess up power
management for the whole system.
Quote:
> 2) Is this a device that you use only in house ? Do you know that it
> should work alone on A PC? In this case, you may not need to migrate.
> In other words, does your situation allows you to have some discounts
> 3) Are you working with DriverWorks ? made it much easier to me.
> 4) Do you want to migrate while keeping a core code which will
> work on Both OS versions ? or you are stopping to support NT4 ?
> For me, this was the most important question.
> 5) How good do you know WDM ? There are some new things to understand ;-)
> 6) Do you plan to sign your drivers ?
> 7) does your driver support multiple HW versions/variations ?
This really shouldn't impact the migration to XP.


--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Remove StopSpam from the email to reply



Don Burn
Guest
 
Posts: n/a
Reply With Quote  
Old 01-13-2004, 11:22 PM   #6 (permalink)
Default Re: migrating NT drivers to XP

Migrating _hardware_ drivers means - welcome to WDM, PnP and Power
Management. A task, not minor.

But if the driver is not hardware, it is some add-on or filter - then there
are chances (especially with FS filters) that the same binary will run OK.

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com

"LC" <lc@master_of_universe.com> wrote in message
news:4003c2f3$0$6978$7a628cd7@news.club-internet.fr...
Quote:
> Hello,
>
> Can anyone please tell me if migrating an Windows NT driver to Windows XP is
> a hard job. I fail to find any information on this on the web ...
>
> Thanks,
>
> Laurent
>
>

Maxim S. Shatskih
Guest
 
Posts: n/a
Reply With Quote  
Reply

Tags
None

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Migrating data from vista RC2 to Vista Home Premium Mike Windows Vista File Management 1 02-13-2007 12:33 AM
Vista will not install on my HD - Thinking of migrating to SATA Wackman Windows Vista Install & Setup 3 06-15-2006 01:45 AM
Migrating applications from Windows 9x to Windows XP Varkey Windows XP Help & Support 1 10-17-2003 10:42 AM
XP drivers won't print like the Win98 drivers shannon hegele Windows XP Printers / Scanners / Fax 1 09-18-2003 05:05 PM
Migrating Windows Medai Playlists... CTB Windows XP Music 3 07-27-2003 08:31 PM


All times are GMT. The time now is 08:02 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright © 2005 - 2007 RealGeek.com. All rights reserved.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90