|
-
Apr 3rd, 2011, 03:03 PM
#1
How can I integrate with the WINDOWS EXPLORER window
You know how you can use REMOTE DESKTOP and see your local drives as a type of SYSTEM FOLDER with a comment of DISK FROM REMOTE DESKTOP CONNECTION. If your browse to a folder you might see the ADDRESS look like this
\\tsclient\C\Windows
What is tsclient? Is that a driver that is "expressing" itself like a folder structure?
How about when you plug a camera or other device in a usb port and it shows as a G: drive, for instance?
I'm guessing the G: drive trick is just a "driver" starting up for the usb port that somehow makes itself seen as a mapped drive.
Is the \\tsclient thing done the same way? Is there some kind of tsclient.exe that runs to do whatever this does?
How can I make my own "pseudo" folder structure? Where would I start to dive into accomplishing this?
Last edited by szlamany; Apr 3rd, 2011 at 04:35 PM.
-
Apr 3rd, 2011, 03:28 PM
#2
Re: How can I integrate with the WINDOWS EXPLORER window
\\tsclient\C\Windows
looks like c:\windows on a network pc
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Apr 3rd, 2011, 03:59 PM
#3
Re: How can I integrate with the WINDOWS EXPLORER window
I want to make my own. I want to know how this is done.
-
Apr 3rd, 2011, 04:38 PM
#4
Re: How can I integrate with the WINDOWS EXPLORER window
i don't know how you'd do that, but \\tsclient is the name of a pc on a network
maybe a virtual drive would be what you're looking for?
i found this, but i haven't tested it:
vb Code:
Process.Start("subst.exe", "x: d:\test") 'add drive
Process.Start("subst.exe", "x: /d") 'remove drive
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Apr 4th, 2011, 06:56 PM
#5
Re: How can I integrate with the WINDOWS EXPLORER window
That seems to just be mapping a drive.
I'm looking to do something more complex - I want to make an app that appears as a drive - like VIRTUAL CLONEDRIVE makes an ISO file appear as a cd drive on your system.
Am I looking at doing Windows Driver SDK work - or has .net made it simpler to approach this?
-
Apr 5th, 2011, 07:23 PM
#6
Re: How can I integrate with the WINDOWS EXPLORER window
Ok - I must be asking an odd question...
Does anyone know where I might find answers like these?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|