Skip to content

Instantly share code, notes, and snippets.

@strebl
Created October 3, 2015 20:48
Show Gist options
  • Save strebl/496c2b885e3c217cb857 to your computer and use it in GitHub Desktop.
Save strebl/496c2b885e3c217cb857 to your computer and use it in GitHub Desktop.
PowerShell Episode Prefix

Add season prefix to episode name (E01.mkv => S01E01.mkv)

dir | Rename-Item -NewName { "S01" + $_.Name }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment