About 552,000 results
Open links in new tab
  1. Command Line "subst" on Startup... The system cannot find the …

    Dec 14, 2016 · Having a cmd shortcut on the desktop isn't related to whatever batch file you created, and what's that Startup file you talk about. subst 'ing a drive letter from a batch file …

  2. Calling SUBST from Windows batch file - Stack Overflow

    May 15, 2019 · I have problem calling SUBST from a Windows batch file. I want to use one batch to create a virtual drive mapping and a second batch to unmount the drive. However ...

  3. windows - powershell script and subst command - Stack Overflow

    Feb 26, 2013 · If I open a new shell and run the script, it runs fine again. What is the problem with my script and how can I get the it to run multiple times in the same powershell instance? Or …

  4. Understanding the "subst" keyword and specific line in a makefile

    Jun 2, 2019 · From the GNU make reference manual: $(subst from,to,text) Performs a textual replacement on the text text: each occurrence of from is replaced by to. The result is …

  5. batch file - 'subst' command used with variable - Stack Overflow

    Oct 27, 2016 · 0 I have following batch: subst D: /d subst D: C:\folder\folder2 pause And it works fine. So I tried something different: set p2=folder2 set p1=C:\folder\%p2% subst D: /d subst D: …

  6. windows - Subst drive & folder - Stack Overflow

    Dec 11, 2013 · Can I use windows command subst to map a drive & folder to another location? I want to map say the temp folder c:\foo\bar\temp to e:\buildserver\dev I can easily map the …

  7. batch file - Subst Drive On Startup Cannot Be Found While in …

    On my system (Windows 10, 19041.572), this same issue was resolved with a single batch file run as a Task. The trigger was set to At startup, and uses the SYSTEM user account. Now the …

  8. Subst Problem Solved - Windows 10 Forums

    Aug 28, 2018 · I use several subst drives, like X: for D:\work, for instance. I have several scripts which refer to X: But today, there was a power outage in my apt (due to work being done) and …

  9. c# - creating virtual hard Drive - Stack Overflow

    Sep 20, 2010 · SUBST drive1: /D drive1: Specifies a virtual drive to which you want to assign a path. [drive2:]path Specifies a physical drive and path you want to assign to a virtual drive. /D …

  10. C# Create virtual disk with Subst command - Stack Overflow

    Dec 22, 2022 · Windows 10. Hands through cmd subst turns out, the disk is created. And C# doesn't work. Tried both console application and windows forms