PowerShell 12 - How to create directories and subdirectories in PowerShell

Поділитися
Вставка
  • Опубліковано 8 вер 2024
  • This tutorial shows you different ways of creating directories and subdirectories in PowerShell. And also how you do both at the same time.

КОМЕНТАРІ • 28

  • @zackwalker8088
    @zackwalker8088 8 років тому +69

    take the peanut butter out of your mouth with all my love but thanks for the video it helped

  • @tewrig4735
    @tewrig4735 2 роки тому +1

    Who prays that the person uploading for programming tutorial doesn't have an accent? I always dread the accent. Thank you for not having that phone support accent.

  • @Skalete1
    @Skalete1 7 років тому +12

    My powershell does not ask for type it just creates the item after the second time I hit enter

  • @nitinhooda8945
    @nitinhooda8945 2 роки тому +2

    I get error when I press enter after path[1] suppose I type c:\practice then path[1] appear and then I press enter it's showa an error (permission denied)

  • @candycarlsen3159
    @candycarlsen3159 7 років тому

    Thank you so much! Very helpful! I now have a powershell directory!

  • @fike2951
    @fike2951 7 років тому +6

    after i press enter to pass path 1 it doesnt work

  • @_DBO
    @_DBO 6 років тому +5

    why do some of us not get type???

  • @draganjovanovic7104
    @draganjovanovic7104 3 роки тому

    video helped, thank you

  • @richardlew3667
    @richardlew3667 5 років тому +1

    Can you maybe do a comparison and show the folders and files that are being created?

  • @ramyananduri2785
    @ramyananduri2785 4 роки тому

    Run powershell as adminstrator then u dont need to provide path[1]. It works for me as it is my PC

  • @joeybest5570
    @joeybest5570 4 роки тому

    Thanks

  • @nellywasti3290
    @nellywasti3290 Рік тому

    First thank you secondly in new-item path[1] & Enter it gave me error

  • @jp9707
    @jp9707 4 роки тому +5

    This was a useful video, but it was very, very hard to get through because of the mouth sounds!
    Your mouth sounds like that because you're dehydrated. If you were to remake this video, but do so after making sure you've drunk enough water, then I'm sure it would get a lot more views and likes!

    • @eldwinc1546
      @eldwinc1546 4 роки тому +5

      stop being a child. be grateful u have a tutorial in the first place

  • @zaidkamal3897
    @zaidkamal3897 6 років тому +1

    Hi my powershell not ask my about the TYPY, what i need to do?

    • @eldwinc1546
      @eldwinc1546 4 роки тому

      new-item -ItemType dir (credits to Lakerfuffle down below)
      Note: Path[1], Path[2] and so on are other items u can create as a batch all at once. so if u wanted to create 2 directories you'd just enter somehing in Path[0], then Path[1]

  • @426F6F
    @426F6F Рік тому

    I keep getting length 0, not sure why..

  • @essuede
    @essuede 5 років тому +6

    is this asmr

  • @daimurrahman9108
    @daimurrahman9108 4 роки тому

    How to create & delete con folder in powershell

  • @MultiKarthik619
    @MultiKarthik619 7 років тому

    Thankyo

  • @imcintyre01
    @imcintyre01 2 роки тому

    2:32 book mark

  • @hunuthevolkswagen
    @hunuthevolkswagen 6 років тому +2

    good video but what the fuck is up with the wet mouth sounds

  • @OPTIONALWATCH
    @OPTIONALWATCH 7 років тому +3

    After Path [1] I hit enter but it doesn't show me Type. I checked to see if a folder was created using Dir and it created an archive only NOT directory. But it didn't show me type so I could type dir.

    • @benfarmer06
      @benfarmer06 6 років тому +10

      Try:
      new-item -ItemType dir

    • @eldwinc1546
      @eldwinc1546 4 роки тому +1

      and to delete the archive uve made:
      remove-item -path c:\abc

    • @trentgreenhalgh1821
      @trentgreenhalgh1821 3 роки тому +1

      @@benfarmer06 Thanks bro. Very helpful