Added 7zip
Added weather app to custom script
This commit is contained in:
Kurtis
2025-11-04 00:08:25 +10:00
parent a39c9b594b
commit e37aa9ba87
3 changed files with 22 additions and 0 deletions

View File

@@ -32,7 +32,13 @@ function Install-Thunderbird {
winget install Mozilla.Thunderbird winget install Mozilla.Thunderbird
} }
function Install-Thunderbird {
Write-Host "Installing 7zip"
winget install 7zip.7zip
}
function Install-Software { function Install-Software {
Install-7zip
Install-ScreenBox Install-ScreenBox
Install-Qview Install-Qview
Install-OnlyOffice Install-OnlyOffice
@@ -40,6 +46,7 @@ function Install-Software {
} }
function Install-Software-NoOffice { function Install-Software-NoOffice {
Install-7zip
Install-ScreenBox Install-ScreenBox
Install-Qview Install-Qview
} }

View File

@@ -86,6 +86,13 @@ function Install-JaxCore {
Write-Host "Installing Jaxcore" Write-Host "Installing Jaxcore"
$process = Start-Process powershell.exe -ArgumentList "iwr -useb `"https://raw.githubusercontent.com/Jax-Core/JaxCore/master/CoreInstaller.ps1`" | iex" -PassThru $process = Start-Process powershell.exe -ArgumentList "iwr -useb `"https://raw.githubusercontent.com/Jax-Core/JaxCore/master/CoreInstaller.ps1`" | iex" -PassThru
$process.WaitForExit() $process.WaitForExit()
Write-Host "Installing WeatherAddon"
$tempPath = Join-Path $env:TEMP "rainmeter-calendar.rmskin"
$download = "https://git.tcmeta.net/kurtis/win11-scripts/raw/branch/main/vargscript/small_clean_weather_animated__by_zivallh_de00go4.rmskin"
Invoke-WebRequest $download -Out $tempPath
Start-Process -wait $tempPath
Write-Host "Removing Temp"
Remove-Item $tempPath -Force
} }
function Install-Cyberduck { function Install-Cyberduck {
@@ -156,6 +163,13 @@ function Install-SSHCLient {
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
} }
function Install-Mattermost {
Write-Host "Installing Mattermost"
winget install Mattermost.MattermostDesktop
}
function Show-InteractiveMenu { function Show-InteractiveMenu {
param ( param (
[string]$Title = "Main Menu", [string]$Title = "Main Menu",
@@ -205,6 +219,7 @@ do {
Install-VSCode Install-VSCode
Install-Git Install-Git
Install-SSHCLient Install-SSHCLient
Install-Mattermost
Pause Pause
} }
"2" { "2" {