Advertisement
squidingtin

powershell commands

Oct 30th, 2023 (edited)
817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("SPOILER ", "") }
  2. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("SPOILER", "") }
  3. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("redditsave", "") }
  4. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("rapidsave", "") }
  5. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("(1)", "") }
  6. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("RPReplay_Final", "") }
  7. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("RPReplay Final", "") }
  8. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("Snapinsta.app", "") }
  9. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("trim", "") }
  10.  
  11. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("https", "") }
  12. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("www.", "") }
  13. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace(".com", "") }
  14.  
  15. get-childitem *.mp4 ,*.mov | foreach { rename-item $_ $_.Name.Replace("_", " ") }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement