Created
January 14, 2018 02:40
-
-
Save dhanyn10/891d8174fb129a50d3045c3b2deb3e78 to your computer and use it in GitHub Desktop.
Menghapus Nama Prefix/Sisipan Beberapa File di Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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