Tag Archives: scripts

JIRA Bulk Link via API

JIRA can’t natively perform bulk actions on issue links. I needed to move some links to a different link type. Here’s a quick script in Javascript that runs with NodeJS. It querys for all the relevant issues using JQL and … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Simple Temp Folder Cleanup Script in Windows Task Scheduler

This is a simple script to automatically delete temporary files from a folder that are older than 2 weeks. I tend to download and work on a lot of files that don’t necessarily need to be archived after their first … Continue reading

Posted in Uncategorized | Tagged , | 2 Comments

Limit Handbrake Useable CPU Cores in Windows

The CPU limit argument of Handbrakes seems to have no effect in Windows. One way to get around this is to start Handbrake with the built-in “start” command with the affinity argument. start /wait /affinity 33 “” “C:\Program Files (x86)\MC-TVConverter\tools\handbrake\HandBrakeCLI.exe” … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment