diff --git a/Install-DisplayLink.ps1 b/Install-DisplayLink.ps1 new file mode 100644 index 0000000..e69de29 diff --git a/Start-LinuxUpdate.sh b/Start-LinuxUpdate.sh new file mode 100644 index 0000000..d3d196e --- /dev/null +++ b/Start-LinuxUpdate.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +function process_debian() +{ + ## Update repos + apt-get update + + ## Upgrade packages + apt-get upgrade -y + + ## Remove unused packages + apt autoremove + + ## Remove old cached packages + apt autoclean +} + +function process_rhel() +{ + ## Clean cache + yum clean all + + ## Update all packages, skipping problematic dependencies + yum update --skip-broken +} + +function process_fedora() +{ + ## Update Fedora release + dnf upgrade --refresh +} + +if [ -n "$(command -v apt-get)" ]; then + process_debian +elif [ -n "$(command -v yum)" ]; then + process_rhel +elif [ -n "$(command -v dnf)" ]; then + process_fedora +else + echo "Package update command not found!" +fi \ No newline at end of file diff --git a/resources/DisplayLink_Win10RS_x64.msi b/resources/DisplayLink_Win10RS_x64.msi new file mode 100644 index 0000000..354b5d5 Binary files /dev/null and b/resources/DisplayLink_Win10RS_x64.msi differ diff --git a/resources/DisplayLink_Win10RS_x86.msi b/resources/DisplayLink_Win10RS_x86.msi new file mode 100644 index 0000000..48c9f70 Binary files /dev/null and b/resources/DisplayLink_Win10RS_x86.msi differ diff --git a/resources/DisplayLink_Win7-8.1_x64.msi b/resources/DisplayLink_Win7-8.1_x64.msi new file mode 100644 index 0000000..ddb9816 Binary files /dev/null and b/resources/DisplayLink_Win7-8.1_x64.msi differ diff --git a/resources/DisplayLink_Win7-8.1_x86.msi b/resources/DisplayLink_Win7-8.1_x86.msi new file mode 100644 index 0000000..a64cd01 Binary files /dev/null and b/resources/DisplayLink_Win7-8.1_x86.msi differ