Ramblings of a Coder's Mind

Got Tech? Will Hack.

K

Tag: powershell

Posts tagged with powershell

Mass renaming file extensions with PowerShell

PowerShell is one of Windows’ most underused tools in my opinion. In many cases it rivals if not betters support that bash scripts provide. If you want to remove the extension of a file (say removing ‘!ut’ from file names), it’s a simple one line command. dir *.!ut | rename-item...

Read on →

File list generator v1.3

I noticed that my old file list generator page didn’t have a valid link any more. Since I’d go through and upload it again, I guess it would be worth it to add some minor documentation and make the path variable optional as well :) Here are some sample scripts...

Read on →

File list generator v1.1

On a lazy Sunday afternoon when you’ve got nothing better to do, you either write rather useless scripts or update them. I chose to do the latter. The file list generation script I wrote some time back was mainly to generate a list of movies I have. When I generated...

Read on →

Clean File List Generation with PowerShell Script

I have a whole load of movies that I’d like to generate a list of. I considered writing a batch script but it didn’t really do something I needed. I ended up writing my first regular use (non test) PowerScript and here’s how. My first requirement was to list all...

Read on →