How to remove character from many file name

Поділитися
Вставка
  • Опубліковано 23 сер 2024
  • How to remove character from many file name
    get-childitem *.pdf | rename-item -newname {[string]($._name).replace("_","")}

КОМЕНТАРІ • 8

  • @vivekchamoli4185
    @vivekchamoli4185 5 місяців тому

    Thanks Bhai

  • @ccitech9588
    @ccitech9588 5 місяців тому +1

    On the video, the command is correct however the window that I can copy is incorrect. The correct command is:
    get-childitem *.pdf | rename-item -newname {[string]($_.name).replace("%","")}

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

    Thanks!

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

    Thanks

  • @nguyendavid741
    @nguyendavid741 10 місяців тому

    thanks bro

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

    such a waste of time video. it didn't work

    • @forcewarz3698
      @forcewarz3698 10 місяців тому

      same

    • @Neha-kt2jb
      @Neha-kt2jb 5 місяців тому

      get-childitem *.pdf | rename-item -newname {[string]($_.name).replace("_","")} This is the actual command