Skip to content

Instantly share code, notes, and snippets.

@dhanyn10
Created January 14, 2018 02:40
Show Gist options
  • Save dhanyn10/891d8174fb129a50d3045c3b2deb3e78 to your computer and use it in GitHub Desktop.
Save dhanyn10/891d8174fb129a50d3045c3b2deb3e78 to your computer and use it in GitHub Desktop.
Menghapus Nama Prefix/Sisipan Beberapa File di Windows
//ubah mp3 menjadi nama ekstensi file yang ingin diubah
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("namaprefix", "") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment