About 395,000 results
Open links in new tab
  1. Rename-Item (Microsoft.PowerShell.Management) - PowerShell

    The Rename-Item cmdlet changes the name of a specified item. This cmdlet does not affect the content of the item being renamed. You can't use Rename-Item to move an item, such as by …

  2. How to Rename Files in PowerShell - Rename-Item— LazyAdmin

    Jul 3, 2023 · Learn how you can rename files with PowerShell. Rename multiple files quickly using a small PowerShell script and the Rename-Item cmdlet.

  3. Rename Files and Folders in PowerShell with Rename-Item

    This time we'll show how to use Rename-Item in PowerShell to rename files/folders, batch scripts for changing file names, extensions, and more.

  4. How can I bulk rename files in PowerShell? - Stack Overflow

    To ensure the regex -replace operator matches only an extension at the end of the string, include the regex end-of-string character $. This takes care of the case mentioned by …

  5. How to Rename Files With PowerShell

    Dec 19, 2023 · To give a new name to a specific file on your PC, use PowerShell’s Rename-Item cmdlet. This cmdlet takes your file’s full path, the new name you want to assign, and renames …

  6. How to Rename a File in PowerShell using Rename-Item?

    Sep 17, 2025 · To rename a file with PowerShell, you can use the Rename-Item cmdlet or its alias ren. You need to specify the existing file path and the new name you want to give the item.

  7. PowerShell: Rename All Files in a Directory Effortlessly

    To rename all files in a directory using PowerShell, you can use the following command which employs a loop to rename each file based on your specified format. Replace …

  8. PowerShell Rename File - Techniques and Best Practices

    Jun 3, 2025 · Learn how to rename files using PowerShell. This guide covers the basics, advanced techniques, syntax, the registry, and common examples.

  9. How to Rename Files With PowerShell in Windows 11

    Jan 10, 2024 · Do you need to rename files with PowerShell? In this guide, we show you some of the best ways to achieve it on Windows 11.

  10. How to Rename Single or Multiple Files with PowerShell

    May 12, 2025 · PowerShell allows you to rename individual files quickly and efficiently. You can use the Rename-Item cmdlet followed by the current name and the new name of the file.