Filedisk with removable drivetype

I’m new to ddk and I’m trying to do something that I think might be easy (maybe not).

I need to emulate a usb drive that I can write to and read from, and I want that drive to be stored in a file.

I found something that does pretty much what I want but the only problem is that it creates a local disk. I posted the website at the bottom of the paragraph. As you can see, it’s a driver with an executable that allows to mount a drive and create a new file associated to this drive. I’ve looked through the code and I have to say I’m a bit lost in it, but I’ve found something that could resolve my problem. All I want is to change the drive type.

http://www.acc.umu.se/~bosse/ (filedisk-17)

I found on line 428 of filedisk.c in sys/src that the drivetype is specified. I tried changing the value to FILE_DEVICE_MASS_STORAGE but it creates a drive with a ? sign next to it and when I try to open it or check its properties, explorer crashes.

Maybe someone could give me a hint on what to do exactly to fix my problem? This is for XP btw.

Thanks for the help

ruh-roh

Mark Roddy

On Mon, Feb 22, 2010 at 6:08 PM, wrote:
> I’m new to ddk and I’m trying to do something that I think might be easy (maybe not).
>
> I need to emulate a usb drive that I can write to and read from, and I want that drive to be stored in a file.
>
> I found something that does pretty much what I want but the only problem is that it creates a local disk. ?I posted the website at the bottom of the paragraph. ?As you can see, it’s a driver with an executable that allows to mount a drive and create a new file associated to this drive. ?I’ve looked through the code and I have to say I’m a bit lost in it, but I’ve found something that could resolve my problem. ?All I want is to change the drive type.
>
> http://www.acc.umu.se/~bosse/ ?(filedisk-17)
>
> I found on line 428 of filedisk.c in sys/src that the drivetype is specified. ?I tried changing the value to FILE_DEVICE_MASS_STORAGE but it creates a drive with a ? sign next to it and when I try to open it or check its properties, explorer crashes.
>
> Maybe someone could give me a hint on what to do exactly to fix my problem? ?This is for XP btw.
>
> Thanks for the help
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
>

You probably will not get help, since filedisk is stolen software, and
most of us refuse to help people who try to use it. Search the archives
for the full story.

Don Burn (MVP, Windows DKD)
Windows Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr

“xxxxx@polymtl.ca” wrote in
message news:xxxxx@ntdev:

> I’m new to ddk and I’m trying to do something that I think might be easy (maybe not).
>
> I need to emulate a usb drive that I can write to and read from, and I want that drive to be stored in a file.
>
> I found something that does pretty much what I want but the only problem is that it creates a local disk. I posted the website at the bottom of the paragraph. As you can see, it’s a driver with an executable that allows to mount a drive and create a new file associated to this drive. I’ve looked through the code and I have to say I’m a bit lost in it, but I’ve found something that could resolve my problem. All I want is to change the drive type.
>
> http://www.acc.umu.se/~bosse/ (filedisk-17)
>
> I found on line 428 of filedisk.c in sys/src that the drivetype is specified. I tried changing the value to FILE_DEVICE_MASS_STORAGE but it creates a drive with a ? sign next to it and when I try to open it or check its properties, explorer crashes.
>
> Maybe someone could give me a hint on what to do exactly to fix my problem? This is for XP btw.
>
> Thanks for the help

Information from ESET Smart Security, version of virus
signature database 4888 (20100222)


The message was checked by ESET Smart Security.

http://www.eset.com

Oh, I didn’t know about that.

Is there something I can use or a tutorial on how to make one by myself?

What is wrong with the NT Insider? The article is not completed, but it can
explain things very well.

wrote in message news:xxxxx@ntdev…
> Oh, I didn’t know about that.
>
> Is there something I can use or a tutorial on how to make one by myself?
>

Yeah I found it, I’m taking a look at it right now. Thanks.