134 lines
3.9 KiB
PowerShell
134 lines
3.9 KiB
PowerShell
#!/bin/pwsh
|
|
. "$PSScriptRoot/../Scripts/Context.ps1";
|
|
. "$PSScriptRoot/../Software/git/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/LGHub/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/ManiaPlanet/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/osu!/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/osu!lazer/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/PuTTY/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/RetroArch/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/reWASD/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/TrackMania Nations Forever/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/TrackMania United Forever/Manage.ps1";
|
|
. "$PSScriptRoot/../Software/VisualStudio/Manage.ps1";
|
|
|
|
function Backup-PersonalApps([Context] $context) {
|
|
Backup-Git $context;
|
|
Backup-LogitechGHUB $context;
|
|
Backup-ManiaPlanet $context;
|
|
Backup-Osu $context;
|
|
Backup-OsuLazer $context;
|
|
Backup-PuTTY $context;
|
|
Backup-RetroArch $context;
|
|
Backup-reWASD $context;
|
|
Backup-TmNations $context;
|
|
Backup-TmUnited $context;
|
|
Backup-VisualStudio $context;
|
|
}
|
|
|
|
function Restore-PersonalApps([Context] $context) {
|
|
# Device specific
|
|
if ((Get-Command Install-PersonalDrivers -ErrorAction SilentlyContinue)) {
|
|
Write-Information "Driver installation function was found. Starting installation";
|
|
Install-PersonalDrivers $context;
|
|
}
|
|
|
|
# Backed up applications
|
|
Restore-Git $context;
|
|
Restore-LogitechGHUB $context;
|
|
Restore-TmNations $context;
|
|
Restore-TmUnited $context;
|
|
Restore-ManiaPlanet $context;
|
|
Restore-Osu $context;
|
|
Restore-OsuLazer $context;
|
|
Restore-PuTTY $context;
|
|
Restore-RetroArch $context;
|
|
Restore-reWASD $context;
|
|
Restore-VisualStudio $context;
|
|
|
|
# Design
|
|
choco install -y `
|
|
nerd-fonts-CascadiaCode;
|
|
|
|
# Social Media
|
|
choco install -y `
|
|
threema-desktop `
|
|
discord `
|
|
element-desktop `
|
|
signal `
|
|
teamspeak;
|
|
|
|
# Browsing
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave;
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave.Beta;
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave.Nightly;
|
|
|
|
# Tools
|
|
choco install -y `
|
|
7zip `
|
|
chocolateygui `
|
|
bitwarden `
|
|
keepass `
|
|
gimp `
|
|
gpu-z `
|
|
windirstat `
|
|
winmerge `
|
|
winscp `
|
|
xmedia-recode `
|
|
hwmonitor `
|
|
qbittorrent `
|
|
imgburn `
|
|
inkscape `
|
|
krita `
|
|
mremoteng `
|
|
obs-studio `
|
|
openvpn `
|
|
ubiquiti-unifi-controller;
|
|
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id AppWork.JDownloader
|
|
|
|
# Media
|
|
choco install -y k-litecodecpackmega;
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id Ytmdesktop.Ytmdesktop
|
|
|
|
# Coding
|
|
choco install -y --params "/NoDesktopIcon" vscode vscode-insiders;
|
|
choco install -y --params "/NoDesktopIcon /AssociateWithFiles" vscodium;
|
|
winget install --scope machine --accept-source-agreements --accept-package-agreements -e --id VSCodium.VSCodium.Insiders --override '/VerySilent /MergeTasks="!runCode,quicklaunchicon,addcontextmenufiles,addcontextmenufolders,associatewithfiles,addtopath"';
|
|
|
|
choco install -y
|
|
HxD `
|
|
docker-desktop `
|
|
gh `
|
|
github-desktop `
|
|
ida-free `
|
|
imhex `
|
|
dotpeek;
|
|
|
|
choco install -y
|
|
nvs `
|
|
python `
|
|
visualstudio2019-workload-vctools;
|
|
|
|
nvs add latest;
|
|
nvs link latest;
|
|
|
|
# Gaming
|
|
choco install -y goggalaxy;
|
|
|
|
choco install -y `
|
|
epicgameslauncher `
|
|
steam `
|
|
ubisoft-connect `
|
|
Origin `
|
|
ea-app;
|
|
|
|
choco install -y rayman-controlpanel;
|
|
|
|
$context.RemoveDesktopIcon("*Epic Games*");
|
|
$context.RemoveDesktopIcon("*Steam*");
|
|
|
|
# Emulation
|
|
choco install -y `
|
|
ppsspp;
|
|
}
|