Tagged Questions
The subst tag has no wiki summary.
3
votes
3answers
323 views
How do you retrieve the original location of a mounted path?
In C++, how can I retrieve the location of a mounted drive?
for example, if I have mounted drive s: to c:\temp (using subst in the command line)
"subst c:\temp s:"
how can I get "c:\temp" by passing ...
2
votes
2answers
1k views
Resolve Windows drive letter to a path (subst and network)
I wonder if there is a universal way of resolving a path using a drive letter (such as X:\foo\bar.txt) into its equivalent UNC path, which might be one of the following:
X:\foo\bar.txt if X: is a ...
1
vote
2answers
139 views
cmd - Is it possible to temporarily assign an available drive letter to a local path?
Using cmd on Windows, it is easy to assign a drive letter to a UNC path with pushd:
C:\Windows\> pushd \\server\share\path
Y:\> popd
C:\Windows\>
However I would like to be able to do the ...
1
vote
1answer
397 views
Getting command line output in VBScript (without writing to files)
I'm using VBScript, and my goal is to be able to substitute a drive letter for a path of my choosing. I need the D drive, and if it's not available I need to check if it's already mapped to the right ...
1
vote
1answer
237 views
Windows service fails to start, with generic error
I wrote a trivial NT service using VS2010 and it does install on my XPSP3 dev box just fine, using InstallUtil. However when I run net start TestService I get a generic error:The TestService service ...
0
votes
0answers
246 views
TFS, subst, Visual Studio 2010, relative paths
My TFS workspace is at C:\Users\...\MyProject, which I have mapped to X:\ using Windows subst command. In my Visual Studio 2010 solutions, this works fine for most of the projects. Only 2 of them are ...