The Hidden "Virtual Drive" Commands in Windows

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025

Комментарии • 240

  • @ThioJoe
    @ThioJoe  3 года назад +158

    Beware IMPOSTER ACCOUNTS replying to comments telling you to contact them on WhatsApp or anything else! They're scams!

  • @desertgecko4549
    @desertgecko4549 3 года назад +99

    You're getting pretty technical lately, Joe -- and I like it.

    • @firstcommenter202
      @firstcommenter202 3 года назад +1

      there is a lot of things going on under the hood

  • @JV-pu8kx
    @JV-pu8kx 3 года назад +11

    I use the subst command all the time. It is a great way to get around Microsoft's path length limit. This is something kept around for backwards compatibility reasons. Some programs don't like it when the total length of a file path, in number of characters starting with the drive letter and ending with the last character in the file name/extension, exceed a certain length -- 256 characters, if I recall.
    The subst command has been around for a long time, at least as far back as MS DOS 6.2. I find myself using the command more now than I did in the '90s.

    • @GarryNichols
      @GarryNichols 2 года назад +1

      I used this a lot back in the Windows NT 4 and 2K.

  • @markusTegelane
    @markusTegelane 3 года назад +45

    you didn't need to type @echo off at the beginning of a batch script that only has one line of code
    just enter @ before the command and it'll have the same effect
    for example, if you want to start cmd.exe, instead of writing
    @echo off
    cmd
    you can do a one liner, like this:
    @cmd

    • @edcdecl
      @edcdecl 3 года назад

      and @ silences the command you’re about to run right?

    • @markusTegelane
      @markusTegelane 3 года назад +7

      @@edcdecl No, but it does something slightly different
      Normally, Windows displays every command that is being executed and the path where it's being executed from.
      Without @ symbol:
      C:\Windows\System32> echo hello
      hello
      With @ symbol:
      hello
      To hide output of a command, you would redirect its stdout to NUL (a special device file, which allows you to write output of a command to nothing).
      e.g.
      Without redirect:
      C:\Example_folder>dir /b
      cat.txt
      dog.txt
      dummy.dat
      With redirect:
      C:\Example_folder>dir /b >nul
      [no output]
      To hide both command display and output, you would use this command: @dir /b >nul

    • @edcdecl
      @edcdecl 3 года назад +3

      @@markusTegelane Sorry I worded it badly. I meant that it didn’t show the prompt and the command it was about to run. I actually didn’t know about NUL though.

  • @Cecil_X
    @Cecil_X 3 года назад +2

    Thanks. I never considered using "net use" for a local folder. I use it for network folders often. This will save me time from changing links in some work I do.

  • @itzthehxnry_
    @itzthehxnry_ 3 года назад +1

    Thank you so much I needed direct one-click way to get to my Developement folder and now I have it as drive. I knew about this method before, but with your help I learned how to prevent dissapearing. Thank you!!

  • @RoterFruchtZwerg
    @RoterFruchtZwerg 3 года назад +62

    Well, the network drives technically are network drives 😉 You are connecting to them via TCP/IP and your PC doesn't know that they are on the same system. The network shares "c$" are so called hidden administrative shares which are default on windows. They exist for each drive. You can connect to them from any PC, but you need administrative privileges to do so. You also do not need your PCs name. "\\localhost\c$" works just fine. Network drives can also be connected and disconnected via UI.

    • @xxlee1019
      @xxlee1019 3 года назад +3

      Good point! Learned this the hard way a few weeks ago

    • @TheTrekGuy97
      @TheTrekGuy97 3 года назад +2

      they exist \c$ for example but should never be used for a trivial purpose like this. create a share for the destination directory and then do \\compoutername\sharename instead.

  • @siddharthasarmah9266
    @siddharthasarmah9266 3 года назад +2

    Finally a video on this topic. Have been looking for this the whole time. I wanted to mount the Dropbox folder, but couldn't figure out how to do so. Thanks

  • @TheRealMikeNelson
    @TheRealMikeNelson Год назад

    Joe, I can always count on you to give a clear concise answer for what I am searching for. Thanks so much!!!

  • @TjPhysicist
    @TjPhysicist 3 года назад +1

    8:00 A couple of programs i use actually end up using the network path itself (i assume it reads it off the network drive properties) rather than the drive letter, e.g. rather than say R:\Test, it'll just use "\\JOE-PC\B$\Test", this caused me a huge headache because, as mentioned at the start one of the cool things about mapping drive letters is that the location itself can change but it'll always just be R:\ - obviously this is defeated if the program just uses the actual full path.
    Also, as others have mentioned at least simple network drive stuff can be done via UI

  • @Damian-rp2iv
    @Damian-rp2iv 3 года назад +3

    2:20 it will work if you run it as admin. The driver will appear only for the user who ran the subst. So if you then run the file explorer as admin, you'll see it.
    Basically, run this as admin if the soft needed it will be run as admin too
    And on the downside of subst, many soft will refuse to see them. Also, path to subst drive will often be seen as non existing. This is probably due to the same "only the one crating it see it" thing tho

  • @Stormy_69
    @Stormy_69 3 года назад +1

    Oh wow! I'm getting serious flashbacks to setting up folks on Windows 2000. I've not used net use in such a long time. Thanks for the memories, Joe! You da best!

  • @markusTegelane
    @markusTegelane 3 года назад +50

    thio probably recorded this after sunset, because his monitors switched to night light mode

    • @ThioJoe
      @ThioJoe  3 года назад +17

      Yep right in the middle lol

    • @afternoonpm
      @afternoonpm 3 года назад +1

      @@ThioJoe hello

    • @Hackerisitic
      @Hackerisitic 3 года назад +2

      @@ThioJoe get away imposter!

  • @GrowlyBear917
    @GrowlyBear917 3 года назад +1

    8:17 There are open files and/or incomplete directory searches.....
    That happens because when you are in R: and you type "net use r: /d" your default drive is the same as the one you are trying to remove. If you first went to c: then typed it, it doesn't do that. Hope that helps. Great tech advice video and good instructions, keep on producing more for us, it's good stuff. Growls from eastern Pennsylvania.
    Also, video made on 9/18, length was 9:18. what a co-inky-dink.

  • @user-vn7ce5ig1z
    @user-vn7ce5ig1z 3 года назад +2

    WARNING: _Using these methods will prevent the usage of the recycle-bin._ If you map a drive-letter to a folder, then delete a file from that "drive", it won't be sent to the recycle-bin, it will be permanently deleted. For example, if you map "T:" to "C:\foo", deleteing "C:\foo\bar.txt", it will send "bar.txt" to the recycle-bin, but deleting "T:\bar.txt" will wipe it out. (This applies to subdirectories on the mapped drive-letter as well.)

  • @badza_3542
    @badza_3542 3 года назад +1

    thanks for all the help with optimizing windows and generally everything u have made. It got me really interested into computers and windows. :)

  • @Corrinth
    @Corrinth 3 года назад +1

    Fantastic video, great pacing, big thanks

  • @nafizhaque
    @nafizhaque 3 года назад +1

    be it doubling the RAM for Free or making virtual drives, Joe always shines! Thanks

  • @TheInternetHelpdeskPlays
    @TheInternetHelpdeskPlays 3 года назад +3

    I've been using subst since dos 5.0
    So useful.

  • @jamesslick4790
    @jamesslick4790 3 года назад +28

    I haven't thought about SUBST since the floppy days under DOS. Very useful for a PC with a single floppy drive, (A:) but some damned program insisted on using drive "B:"

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад +1

      I use subst whenever I have a file whose path is too long (I don't use NTFS hacks to extend MAX_PATH for compatibility reasons). I can subst(itute) a drive-letter for the containing folder, rename the file to something shorter, then remove the drive-mapping. 😉

    • @Robert-jd4lx
      @Robert-jd4lx 3 года назад +2

      When we remember 5.25" floppy days, does that make us old?

    • @jamesslick4790
      @jamesslick4790 3 года назад +1

      @@Robert-jd4lxYep, and Even older if you remember 8" floppies! ☺️

    • @pcuser80
      @pcuser80 3 года назад +1

      @@Robert-jd4lx I have using 8 inch floppy's a lot
      Make that me old? Still habe machines with 8 inch.

  • @RobertLeaverton
    @RobertLeaverton 3 года назад

    Back in my DOS days I used subst all the time. I had long since forgotten about it though. Thanks for the info.

  • @wolfgangalejandro3358
    @wolfgangalejandro3358 3 года назад +1

    Man I love to bump into your videos, tinkering with the OS is pretty interesting. Hope you'll get hands on scripting also.

  • @bobcarn
    @bobcarn 3 года назад

    Years ago I would use the Net Use command to map a folder to a drive letter to get older legacy programs to run properly. I came up with that method when I needed something to run on a specific drive letter and had forgotten about it until now. I would pull out these tricks I came up with over the years when the younger IT guys couldn't figure out how to get something to work, and they'd be reminded that I was old, but was far from a dinosaur.

  • @smileynetsmileynet7922
    @smileynetsmileynet7922 3 года назад +1

    We have a folder at my work called c:\STOREDATA, which is mounted with net use. We had issues with subst. Is this because we ran it as an administrator? We do all this in a scheduled task at logon. Other computers definitely need net use for it to work...

  • @peterlydiard3277
    @peterlydiard3277 3 года назад +1

    If you were wondering if a virtual network drive created by "net use" would fool File History that you have an external drive available, the answer seems to be that it won't. Not on Windows 10 anyway.

  • @CrackITSolutions
    @CrackITSolutions 3 года назад +1

    Nice video Theo ..
    You really inspire me alot and always look up to you for my video uploads ...
    Thank you so much ❤️

  • @walterpark8824
    @walterpark8824 3 года назад

    Good info, and stated compactly.

  • @matthewjones5951
    @matthewjones5951 3 года назад +1

    I recall being able to make virtual disks by renaming a zipped folder with a .vhd extension or something like that but I didn't see you mention that in this video

  • @Neeboopsh
    @Neeboopsh 3 года назад +1

    used to use subst for games without proper cd-check but do make sure the files are in the root of a (presumed) cdrom. run faster off a hard drive, no worry about scratching, etc. glad optical is all but gone.

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад +1

      Yup, that was a no-crack crack trick that worked for some games. 😂👍

  • @julienl8472
    @julienl8472 3 года назад +1

    A scheduled task @ logon that runs the cmd then "mounts" the drive could be another way to do it

  • @razielkayn3885
    @razielkayn3885 3 года назад +1

    I've used robocopy to get past some compatibility issues with copying files to a network drive, not too many other problems so far.

  • @gentuxable
    @gentuxable 3 года назад

    If you need a drive in a service it has to be mounted as admin as services run as a different user than yours and only the admin should be able to mount drives that can be accessed by other user. If I am wrong it is a security flaw :)

  • @Veer1516
    @Veer1516 3 года назад +6

    Damn. I remember being April fooled by that double the Ram joke you did. Good to see you’re still here 😂

  • @akulsairam9431
    @akulsairam9431 3 года назад +1

    HOW DID YOU GET MORE SPACES BETWEEN THE DETAILS IN THE SIDE BAR IN THIS PC

  • @MegasXLR
    @MegasXLR 3 года назад +1

    3:44 AutoHotKey, nice. I also use it for 3 scripts. Btw your setup makes my 'big' 2TB PC on 4 disks look silly xd

    • @DorAntCr
      @DorAntCr 3 года назад +1

      me with 128gb

  • @mr.whimsic6902
    @mr.whimsic6902 3 года назад +2

    it's also possible to make a folder redirect to another drive's folder

  • @sohangchopra6478
    @sohangchopra6478 3 года назад

    Very Interesting! And this also explained to me something else I didn't understand - when I installed Google Drive Sync on Windows 7 (so that I can access drive content from File Explorer), the Google Drive contents showed up as a seperate drive in File Explorer. I always wondered how this happened - I guess the program must have done something similar to what you showed here!

  • @CherryDT42
    @CherryDT42 3 года назад +2

    I use the DOS Device method for a while and it's the best in my opinion, since the behavior is closest to a real drive. An important advantage you didn't mention is that this works for elevated processes too, while the other methods create drives that elevated processes can't see (which is also why subst run as admin "doesn't work" - it actually does work but the drive can now be seen ONLY by elevated processes). Note however that by default the new drive won't have a recycle bin, but I solved this with another registry modification - (I would have loved to share how but it seems someone keeps deleting this comment when I include a link to my solution... >:-[ ) - Unfortunately, a major version upgrade will wipe both hacks but that's why I put them into reg files that I can just reapply when needed. Also, tiny nitpick: \??\ is NOT an UNC path. It's a native kernel path (object manager path), and the object manager namespace has an entry named ?? on the root level that points to a combined view of \DosDevices and \Sessions\\DosDevices.

    • @CherryDT42
      @CherryDT42 3 года назад

      OK I guess I can paste the contents of the reg file here for enabling recycle bin on virtual drive Z:
      (Note, if you need another virtual drive with recycle bin, you just have to change the CLSID to something else)
      ---
      Windows Registry Editor Version 5.00
      [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{9147E464-33A6-48E2-A3C9-361EFD417DEE}]
      "RelativePath"="Z:\\"
      "Category"=dword:00000004
      "Name"="ZVirtualDrive"
      [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder\{9147E464-33A6-48E2-A3C9-361EFD417DEE}]
      "MaxCapacity"=dword:0000c7eb
      "NukeOnDelete"=dword:00000000
      [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{9147E464-33A6-48E2-A3C9-361EFD417DEE}]
      "RelativePath"="Z:\\"
      "Category"=dword:00000004
      "Name"="ZVirtualDrive"
      [HKEY_CURRENT_USER\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder\{9147E464-33A6-48E2-A3C9-361EFD417DEE}]
      "MaxCapacity"=dword:0000c7eb
      "NukeOnDelete"=dword:00000000

  • @circuittoys
    @circuittoys 3 года назад

    commands i've never used before. thank you!

  • @sozonpv
    @sozonpv 2 года назад

    the trouble with doing subst on a OneDrive folder is that you don't get the cloud status icons. Unfortunately there is no way to add them unless you just use the c:\users\UserID\OneDrive path.

  • @firstcommenter202
    @firstcommenter202 3 года назад

    very helpful technical tip!

  • @markritchie9112
    @markritchie9112 3 года назад

    Perfect thanks Thio, good stuff

  • @gustukas
    @gustukas 3 года назад +10

    BIG question: What are the contents on the "A very good file.txt"?!

    • @afternoonpm
      @afternoonpm 3 года назад +3

      Hmmmmm

    • @blindstreet
      @blindstreet 3 года назад +1

      Bank details.

    • @gustukas
      @gustukas 3 года назад

      Sussy baka here is trying to hack Thio's computer to get some bank details

    • @gustukas
      @gustukas 3 года назад

      @tiewnfan heh, let's make a poll:
      Reply to this reply with 😀 if you think it's bank details
      Reply to this reply with 😎 if you think it's Windows versions

    • @afternoonpm
      @afternoonpm 3 года назад

      @@gustukas you know "sussy baka" means 'sus idiot', right?

  • @LovelyAlanna
    @LovelyAlanna 3 года назад +4

    Why did you assign the letter B to an SSD? respect the ancestral rules of Windows, A and B are for Floppy Drives

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад

      *of DOS (Windows just did that for backwards compatibility)

  • @nonsuch
    @nonsuch 3 года назад

    I just put a shortcut to the folder on my desktop. It never goes away unless I delete it. But I'm sure there are more uses for SUBST and NET USE as well.

  • @fragalot
    @fragalot 3 года назад

    I created a drive pool and shared it on my network. So on my other PC I used the NET USE command (as admin) net use X: \\(PCNAME)\(NameOfSharedFolder) /persistent:yes and it worked, but only while in the command line. I can go to the mapped drive (X:) on the command line, but it doesn't appear in file explorer. If I close the command line, and start it back up, the X: drive doesn't exist anymore. What did I miss?

  • @gustukas
    @gustukas 3 года назад +4

    I love your videos Thio! Keep up the work!

  • @mickwolf1077
    @mickwolf1077 3 года назад

    So by using the 'net use' command, would that be the same as mapping a drive/folder on the same computer with Explorer?

  • @I_Was_Chrispy_Kreme
    @I_Was_Chrispy_Kreme 3 года назад +1

    Ah TJ I remember the joys of net use when we used to use Novell for netware and ipx/spx. Back in the Windows 3.11 days

  • @zoomkitty
    @zoomkitty 3 года назад

    It doesn't just show the command, but shows 3 different ways to use it with explanations. That's quality. And not too long ago i thought there were too many joke videos. I've used computers and os's for a pretty long time now, and I must say, I didn't happen to find the 'virtual drive' commands. I just learned something useful and made a virtual drive Z: .. thanks

  • @piyushchaudhary7269
    @piyushchaudhary7269 2 года назад

    i tried to make my onedrive a network storage and the stirage left on it is inaccurate can you tell any way i can acive that Google drive was so simple just intall their application

  • @kensmith5694
    @kensmith5694 3 года назад

    subst is an old MSDOS command.
    Did they bring back "join" too.

  • @NiffirgkcaJ
    @NiffirgkcaJ Год назад

    Can I use this to connect to cloud drives without external software?

  • @Animeso
    @Animeso 3 года назад +1

    You just keep finding interesting stuff

  • @carbonado2806
    @carbonado2806 3 года назад

    Hey Joe! This is amazing, but I have an issue where in both the ways, subst and net use, it tells me there is a system 37 error, is it maybe because I'm trying to subst a folder inside a network drive(one in my NAS mapped to Explorer)?

  • @alishah2027
    @alishah2027 3 года назад

    can you please make a video about KMS pico . is that safe or not or is that illegal.

  • @chriscolby6105
    @chriscolby6105 6 месяцев назад

    I think the NET USE will only work for the current user. If you want all the computer's users to be able to use the drive letter, first grant everyone access to it in the properties of the folder, then you can select the folder, right-click on it, and map it as a network drive with the letter of your choice.

  • @a17waysJackinn
    @a17waysJackinn 3 года назад

    oh what a fancy cmd, how did you set it like that?

  • @Jumbo_storm
    @Jumbo_storm 3 года назад +4

    Thank you!:D
    Now I can backup my Appdata ("%APPDATA%") folders, without taking up needed space on my computer's drive.
    (Or on some random drive.)
    Thank you, again!
    Much appreciated!;P

  • @FenekkuKitsune
    @FenekkuKitsune 3 года назад

    You should go into downsides for this, though. What reason is there to not do this? Could it slow down the PC in some way? Can it break things?

  • @Jacob9335wastaken
    @Jacob9335wastaken 3 года назад +2

    Hey Joe!!

  • @thesandu760
    @thesandu760 2 года назад

    Can you do a explain about windows virtual machine platform

  • @SnowyRVulpix
    @SnowyRVulpix 3 года назад

    Pinning it to your file manager (Explorer since we're talking about Windows) is probably the better idea.

  • @LynAkihiroVT
    @LynAkihiroVT 2 года назад

    help i cant delete a drive whats this
    System error 67 has occurred

  • @matc3888
    @matc3888 3 года назад

    Is there no software to do this ?

  • @tcholmes2237
    @tcholmes2237 3 года назад

    Network drives can fail any time a PC becomes isolated (not connected to any network). add the MS Loopback virtual adapter manually to avoid this.

  • @itechline2353
    @itechline2353 3 года назад +1

    I think my method is more easy 🙂 Thank you 👍

  • @karafamichal
    @karafamichal 3 года назад

    Hello, can you do a tutorial how to host and create a FTP server on PC ?
    (It would be best if you put it on Windows XP as well.)

  • @hazimalgubury6640
    @hazimalgubury6640 3 года назад

    useful video
    good to know from may something happened or just understand it in a time you'll able to need it good to know

  • @windowsxpprofessional
    @windowsxpprofessional 3 года назад +14

    Should do a diskpart uses video😃

  • @user-vn7ce5ig1z
    @user-vn7ce5ig1z 3 года назад +1

    Are you going to make a video about NTFS mount-points? 🤔 (Check the Disk Management MMC snap-in. 😉)

    • @darkdelta
      @darkdelta 3 года назад

      So someone else uses MMC, very handy.👍

  • @ashesdowns9635
    @ashesdowns9635 3 года назад

    Damned Useful !! 😸❤❤❤

  • @jamesbolinda9048
    @jamesbolinda9048 3 года назад

    Thanks Joe

  • @sawabeditss
    @sawabeditss 3 года назад

    I know a way that would probaly keep the virtual drive even after reboot, you can you the registry editor.

  • @jamesbolinda9048
    @jamesbolinda9048 3 года назад

    Thanxz Theo

  • @Techkomsan
    @Techkomsan 3 года назад

    Wow Wow, I like your Videos Cool!

  • @JoeyHahn
    @JoeyHahn 3 года назад

    I noticed these commands in an Virtual 68000 Assembly workspace I was using
    I thought they were pretty cool.

  • @omshejul
    @omshejul 3 года назад

    how to run AutoHotkey script at startup before all other apps

  • @SanderEvers
    @SanderEvers 3 года назад +1

    You could also create an actual virtual drive (.vhd file)

  • @sharikahmed29
    @sharikahmed29 3 года назад

    It's actually useful for me

  • @pacman_2108
    @pacman_2108 3 года назад +1

    Can we create a script for the commands in the entire video?

  • @Shawaps
    @Shawaps 3 года назад

    This guy made everyone believe we could install the XB1 OS on the Xbox 360 back in 2014.

  • @ericplays2021
    @ericplays2021 3 года назад +1

    I somehow opened command prompt in setup.exe (Windows setup) and it said X:\Admin>

  • @act.13.41
    @act.13.41 3 года назад

    The reason "net use" requires the $ is because B$ is an administrative share and net use will not connect to something that is not shared.

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад

      Which is also why I can't use it because I disable all of that stuff (I disabled the workstation, computer-browser, server, and SSDP services). It's not worth the hassle of UN-hardening my system when alternate solutions are available (I always just use subst whenever I need it; I even added entries to the context-menus of directories and drives to make it easier 😉).

  • @waynefields3617
    @waynefields3617 3 года назад

    What happens If you use a and b 🤔

  • @kajalgokak3618
    @kajalgokak3618 3 года назад

    Thio do you know how to create a VHD?🤔

  • @JonathanSwiftUK
    @JonathanSwiftUK 3 года назад

    These are DOS commands, thus many things there are legacy. There no guarantee that DOS will live on indefinitely. I'm not sure if you can do this in PowerShell tho.

  • @rehanvlogs229
    @rehanvlogs229 3 года назад +1

    Helpful this video stay bless stay safe 😍

  • @AmbuSR
    @AmbuSR 3 года назад +1

    Network drive can be created from explorer itself

  • @DevlLo0pers
    @DevlLo0pers 3 года назад +1

    How do I get rid of it?

    • @MarkAJAgi
      @MarkAJAgi 3 года назад +1

      To remove subst A: C:\Folder\SubFolder
      Type: subst A: /D
      (When A: is the new drive)
      To remove net use A: "\\PC_NAME\C$\Folder\SubFolder" /persistent:yes
      Type: net use A: "\\PC_NAME\C$\Folder\SubFolder" /persistent:no
      For help type: subst /?
      or: net /?

    • @DevlLo0pers
      @DevlLo0pers 3 года назад

      @@MarkAJAgi thanks it worked!!

  • @winntfan30682
    @winntfan30682 3 года назад

    i know virtual drive, "subst" command was from ms-dos 2.0 or 3.0 and above, also in windows

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад

      It's not really a virtual drive, it just SUBSTitutes a letter for a path.

  • @tarun10b37
    @tarun10b37 3 года назад

    sir i am from india....can u telll what is people in windows 10 pro....

  • @MarkAJAgi
    @MarkAJAgi 3 года назад

    To remove subst A: C:\Folder\SubFolder
    Type: subst A: /D
    (When A: is the new drive)
    To remove net use A: "\\PC_NAME\C$\Folder\SubFolder" /persistent:yes
    Type: net use A: "\\PC_NAME\C$\Folder\SubFolder" /persistent:no
    For help type: subst /?
    or: net /?

  • @TimSheets
    @TimSheets 3 года назад

    this comment section is way different than it used to be. subst man, that's an old one. but even back when, only the real nerds knew about it.

  • @7ru579
    @7ru579 3 года назад +1

    If thio likes this i will stop playing games 😂

  • @UA10i12
    @UA10i12 3 года назад

    Doesn't work As Administrator because the drives are tied to user. When running "As Administrator" the commands are not tied to the user, thus they can't be edited.

    • @user-vn7ce5ig1z
      @user-vn7ce5ig1z 3 года назад

      Run the command as admin so that it's entered in HKLM instead of HKCU and it should be available to any user.

  • @zenith_lal
    @zenith_lal 3 года назад

    I like your 60fps

  • @kingmonkeybug
    @kingmonkeybug 3 года назад

    Now you can rename the drives (not by net use)

  • @wohao_gaster7434
    @wohao_gaster7434 3 года назад +1

    You should have called your example drive in the intro "Special Letter (K:)"
    Special K

  • @im_windowsdabest1981
    @im_windowsdabest1981 3 года назад

    YAY THANKS!