Skip to content

Instantly share code, notes, and snippets.

View bforest-ariadne's full-sized avatar

Ben Forest bforest-ariadne

View GitHub Profile
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
@bforest-ariadne
bforest-ariadne / boxstarter.ps1
Last active October 3, 2022 19:35 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
@bforest-ariadne
bforest-ariadne / nvenc-prores-batch.ps1
Created April 13, 2021 22:18
ffmpeg batch lossles nvenc to prores
# adapted from https://www.junian.net/tech/powershell-ffmpeg-batch/
$originalVids = Get-ChildItem *.avi -Recurse
foreach ($inputVid in $originalVids) {
$outputVid = [io.path]::ChangeExtension($inputVid.FullName, '.mov')
ffmpeg.exe -i $inputVid.FullName -c:v prores_ks -profile:v 3 -vendor apl0 -bits_per_mb 8000 -pix_fmt yuv422p10le $outputVid
}
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 27, 2020 16:40
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 27, 2020 01:03
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 26, 2020 15:30
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 23, 2020 23:35
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 23, 2020 23:31
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 23, 2020 23:23
Update-AUPackages Report #powershell #chocolatey
@bforest-ariadne
bforest-ariadne / Update-AUPackages.md
Created September 23, 2020 23:17
Update-AUPackages Report #powershell #chocolatey