PC Review


Reply
Thread Tools Rate Thread

How to designate a folder as a drive D

 
 
=?Utf-8?B?Y2hyb21pYW4=?=
Guest
Posts: n/a
 
      17th May 2005
I have a 40G drive with 3G used as drive C, Drive D is the CD rom. (I have
redesignated the CD as drive G.) My application requires the presence of a
Drive D hard disk to write data to. How can I create a new folder on C and
have windows 2000 regard it as a new drive D?

I recall that I could do this back in win95/98 but how do I do it in
win2000? The computer is not on a network. There is an ethernet card but no
network connection since the computer is in a remote trailer.

Many thanks,

Ian
 
Reply With Quote
 
 
 
 
Dave Patrick
Guest
Posts: n/a
 
      17th May 2005
From a command prompt;

net use D: \\pcname\C$\somepath
or
subst D: C:\somepath

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"chromian" wrote:
|I have a 40G drive with 3G used as drive C, Drive D is the CD rom. (I have
| redesignated the CD as drive G.) My application requires the presence of
a
| Drive D hard disk to write data to. How can I create a new folder on C and
| have windows 2000 regard it as a new drive D?
|
| I recall that I could do this back in win95/98 but how do I do it in
| win2000? The computer is not on a network. There is an ethernet card but
no
| network connection since the computer is in a remote trailer.
|
| Many thanks,
|
| Ian


 
Reply With Quote
 
=?Utf-8?B?Y2hyb21pYW4=?=
Guest
Posts: n/a
 
      17th May 2005
That worked! Thanks a lot. Ian

"Dave Patrick" wrote:

> From a command prompt;
>
> net use D: \\pcname\C$\somepath
> or
> subst D: C:\somepath
>
> --
> Regards,
>
> Dave Patrick ....Please no email replies - reply in newsgroup.
> Microsoft Certified Professional
> Microsoft MVP [Windows]
> http://www.microsoft.com/protect
>
> "chromian" wrote:
> |I have a 40G drive with 3G used as drive C, Drive D is the CD rom. (I have
> | redesignated the CD as drive G.) My application requires the presence of
> a
> | Drive D hard disk to write data to. How can I create a new folder on C and
> | have windows 2000 regard it as a new drive D?
> |
> | I recall that I could do this back in win95/98 but how do I do it in
> | win2000? The computer is not on a network. There is an ethernet card but
> no
> | network connection since the computer is in a remote trailer.
> |
> | Many thanks,
> |
> | Ian
>
>
>

 
Reply With Quote
 
Dave Patrick
Guest
Posts: n/a
 
      18th May 2005
You're welcome.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"chromian" wrote:
| That worked! Thanks a lot. Ian


 
Reply With Quote
 
=?Utf-8?B?Y2hyb21pYW4=?=
Guest
Posts: n/a
 
      19th May 2005
Dave, I found that the Subst command was temporary and the drive D
disappeared after a reboot. So I wrote a batch file and invoked it in the run
section of the registry and this fixed the problem.
Am I missing something. Is there some other step I should have taken to make
the subst happen every time?
Thanks

ian

"Dave Patrick" wrote:

> You're welcome.
>
> --
> Regards,
>
> Dave Patrick ....Please no email replies - reply in newsgroup.
> Microsoft Certified Professional
> Microsoft MVP [Windows]
> http://www.microsoft.com/protect
>
> "chromian" wrote:
> | That worked! Thanks a lot. Ian
>
>
>

 
Reply With Quote
 
Dave Patrick
Guest
Posts: n/a
 
      20th May 2005
No that was correct. subst doesn't survive a boot. From the 'Run' keys or
startup directories.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"chromian" wrote:
| Dave, I found that the Subst command was temporary and the drive D
| disappeared after a reboot. So I wrote a batch file and invoked it in the
run
| section of the registry and this fixed the problem.
| Am I missing something. Is there some other step I should have taken to
make
| the subst happen every time?
| Thanks
|
| ian
|
| "Dave Patrick" wrote:
|
| > You're welcome.
| >
| > --
| > Regards,
| >
| > Dave Patrick ....Please no email replies - reply in newsgroup.
| > Microsoft Certified Professional
| > Microsoft MVP [Windows]
| > http://www.microsoft.com/protect
| >
| > "chromian" wrote:
| > | That worked! Thanks a lot. Ian
| >
| >
| >


 
Reply With Quote
 
Olof Lagerkvist
Guest
Posts: n/a
 
      20th May 2005
chromian wrote:

> Dave, I found that the Subst command was temporary and the drive D
> disappeared after a reboot. So I wrote a batch file and invoked it in the run
> section of the registry and this fixed the problem.
> Am I missing something. Is there some other step I should have taken to make
> the subst happen every time?


You can make it permanent, survive reboot and even happen before any
user logs in, by adding a value under the registry key
"HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices". The
name of the value should be e.g. D: and the value data should be e.g.
\??\C:\somepath. Note that because it is native paths you need \??\
before the drive letter path.

--
Olof Lagerkvist sm6xmk
ICQ: 724451 @ssa.se
Web: http://here.is/olof

 
Reply With Quote
 
Dave Patrick
Guest
Posts: n/a
 
      20th May 2005
Good one! Thanks Olof.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Olof Lagerkvist" wrote:
| You can make it permanent, survive reboot and even happen before any
| user logs in, by adding a value under the registry key
| "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices". The
| name of the value should be e.g. D: and the value data should be e.g.
| \??\C:\somepath. Note that because it is native paths you need \??\
| before the drive letter path.
|
| --
| Olof Lagerkvist sm6xmk
| ICQ: 724451 @ssa.se
| Web: http://here.is/olof
|


 
Reply With Quote
 
=?Utf-8?B?Y2hyb21pYW4=?=
Guest
Posts: n/a
 
      20th May 2005
Thanks Gentlemen, I will try that also.
Ian

"Dave Patrick" wrote:

> Good one! Thanks Olof.
>
> --
> Regards,
>
> Dave Patrick ....Please no email replies - reply in newsgroup.
> Microsoft Certified Professional
> Microsoft MVP [Windows]
> http://www.microsoft.com/protect
>
> "Olof Lagerkvist" wrote:
> | You can make it permanent, survive reboot and even happen before any
> | user logs in, by adding a value under the registry key
> | "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices". The
> | name of the value should be e.g. D: and the value data should be e.g.
> | \??\C:\somepath. Note that because it is native paths you need \??\
> | before the drive letter path.
> |
> | --
> | Olof Lagerkvist sm6xmk
> | ICQ: 724451 @ssa.se
> | Web: http://here.is/olof
> |
>
>
>

 
Reply With Quote
 
=?Utf-8?B?Y2hyb21pYW4=?=
Guest
Posts: n/a
 
      21st May 2005
Thanks. Olof's solutions was elegant and worked great. Ian

"chromian" wrote:

> Thanks Gentlemen, I will try that also.
> Ian
>
> "Dave Patrick" wrote:
>
> > Good one! Thanks Olof.
> >
> > --
> > Regards,
> >
> > Dave Patrick ....Please no email replies - reply in newsgroup.
> > Microsoft Certified Professional
> > Microsoft MVP [Windows]
> > http://www.microsoft.com/protect
> >
> > "Olof Lagerkvist" wrote:
> > | You can make it permanent, survive reboot and even happen before any
> > | user logs in, by adding a value under the registry key
> > | "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices". The
> > | name of the value should be e.g. D: and the value data should be e.g.
> > | \??\C:\somepath. Note that because it is native paths you need \??\
> > | before the drive letter path.
> > |
> > | --
> > | Olof Lagerkvist sm6xmk
> > | ICQ: 724451 @ssa.se
> > | Web: http://here.is/olof
> > |
> >
> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not 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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I designate an attachment folder so all attachments go there? longing for eudora ease Microsoft Outlook Discussion 2 18th Jun 2008 12:35 AM
How do I designate which folder is set to when I open a word doc? =?Utf-8?B?Z3JybA==?= Microsoft Word Document Management 1 30th Oct 2006 04:00 AM
Designate a default folder =?Utf-8?B?Q2h1Y2tI?= Windows XP Customization 2 17th Mar 2005 04:58 PM
Can I re-designate location of history folder? =?Utf-8?B?Q2hhcmxpZSBCcm93bg==?= Windows XP Internet Explorer 1 31st Jan 2004 02:24 PM
'Designate Your Own Drive Letters' rz Windows XP Accessibility 0 22nd Aug 2003 08:28 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:19 AM.