Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2023-01-18T18:19:11.4118961</Date>
<Author>NULL234\null234</Author>
<URI>\SetDefaulDeviceOnConnection</URI>
<Description>Stop annoying windows! i want to decide what stadart playback device i use.</Description>
</RegistrationInfo>
<Triggers>
<EventTrigger>
@matthenning
matthenning / plex_ihd_remove.sh
Created December 9, 2022 12:39 — forked from LadySmith/plex_ihd_remove.sh
Synology DS920+ Plex hw transcoding fix
#!/usr/bin/env bash
# Check Plex iHD driver. If exists, delete. Should fix buffering on HW Transcoding.
file="/volume1/@appstore/Plex Media Server/lib/dri/iHD_drv_video.so"
filebackup="/volume1/@appstore/Plex Media Server/lib/dri/iHD_drv_video.so.bak"
if [ -f "$file" ] ; then
echo "Stopping Plex"; echo;
synoservicectl --stop "pkgctl-Plex Media Server" ;
echo "Found iHD, deleting..."; echo;