Programska oprema 2023-24

Programska oprema nameščena na vse šolske računalnike v šolskem letu 2023-24

AplikacijaVerzijaNamestitvena datotekaOpombe
Firefoxlatestwinget install firefox -s winget
7ziplatestwinget install –id=7zip.7zip -e
Microsoft C++ 2015-2022 redistributablewinget install –id=Microsoft.VCRedist.2015+.x86 -e
Windows .NET Desktop Runtime7.0.11winget install Microsoft.DotNet.DesktopRuntime.7
.NET runtime 77winget install –id=Microsoft.DotNet.Runtime.7 -e
Eclipse Adoptium Temurin 20 JDKwinget install –id=EclipseAdoptium.Temurin.20.JDK -e
OpenJDK21winget install –id=Oracle.JDK.21 -e
Acrobat Readerlatestwinget install –id=Adobe.Acrobat.Reader.64-bit -e
Python3.11.5winget install -e –id Python.Python.3.11pip install numpy
PyCharm Community2023.2.1winget install -e –id JetBrains.PyCharm.CommunityDodaj Python interpreter
NotePad++8.5.6winget install –id=Notepad++.Notepad++ -e
XAMPP8.2.4winget install –id=ApacheFriends.Xampp.8.2 -e
VirtualBox 7 + Ext Pack7winget install –id=Oracle.VirtualBox -e
Dockerlatestwinget install –id=Docker.DockerDesktop -e
Arduino IDE 2latestwinget install –id=ArduinoSA.IDE.stable -eDodaj board ESP32
Gitlatestwinget install –id=Git.Git -eNano as default editor –> git config –global core.editor “nano”
KiCad7winget install –id=KiCad.KiCad -e
PrusaSlicer2.6.0winget install –id=Prusa3D.PrusaSlicer -e
BlueJlatestwinget install –id=BlueJTeam.BlueJ -e
OpenShotlatestwinget install –id=OpenShot.OpenShot -e
Gimplatestwinget install –id=GIMP.GIMP -e
Code Blockslatestwinget install –id=Codeblocks.Codeblocks -eGNU GCC compiler/MiniGW (Settings/Compiler/Toolcahin/AutoDetect)
Nodejslatestwinget install –id=OpenJS.NodeJS -e
Bitvise ssh clientlatestwinget install –id=Bitvise.SSH.Client -e
Scenebuilder (Gluon)latestwinget install –id=Gluon.SceneBuilder -e
VMWare player17.5.0winget install –id=VMware.WorkstationPlayer -e
Puttylatestwinget install –id=PuTTY.PuTTY -e
Microsoft VS Codelatestwinget install Microsoft.VisualStudioCodeExtensions: Platformio, Python, PowerShell, WSL, C++, PHP, JAVA
Microsoft Office 20212021MS Deploymen Installer
DEXi5.05Prenesi
Microsoft VS Code PortablelatestC:\Users\Vegova\Documents\VSCode
Visual Paradigm17.1C:\vpLLVM C++ in dodatki
WSL2latestwsl –install –no-distribution
Raptor4.1.0Prenesi
Firebird 33.0.11Prenesi
MySQL Workbench 88.0.34Prenesi
Linux Mint (v Virtual Box-u)21.2Prenesi
Windows (v Virtual Box-u)10 Pro
EWB
Microchip StudiolatestPrenesiSamo AVR 8-bit
HXD (Hex editor)latestPrenesi
Autodesk Inventor Pro2024
sPlan7
Apache Netbeans19Prenesi
UMLetlatestPrenesi
Cisco Packet tracer8.2.1.Prenesi
Eclipse IDE latestPrenesi
Adobe CS66Samo v K2
PHP Composer 2.6.5Prenesi

Dodtane nastavitve po namestitvi

Nastavi privzeto verzijo WSL

wsl --set-default-version 2

VS Code nastavitev za Platformio

  PLATFORMS --> Embedded --> AVR --> Espressif (ne 8266)

Arduino IDE ESP32 Board platforma

Board Manager --> Add --> ESP32

Izklop posodabljanja sistema Windows 10, Windows 11

gpedit.msc
#
Computer Configuration > Administrative Templates > Windows Components > Windows Update
Configure Automatic Updates --> Disable

services
#
Windows Automatic Update --> Stop --> Disable

Windows Tweaker aplikacija
#
Windows Automatic Updates --> Off

Namestitev aplikacij z Winget paketi

Namestitvena skripta, PowerShell adminstratorske pravice

# 1. Preveri da je nameščena Windows App Installer aplikacija in jo posodobi na zadnjo verzijo v Microsoft trgovini
#    https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1
# 2. Posodobi Winget izvorni spisek --> winget source update
# 3. Uredi spisek aplikacij, ki se nameščajo. Iskalnik aplikacij --> https://winstall.app/
# 4. Zaženi skripto kot administrator

Write-Output "Installing Apps"
$apps = @(
    @{name = "7zip.7zip" },
    @{name = "Microsoft.WindowsTerminal" },
    @{name = "Mozilla.Firefox" },
    @{name = "Microsoft.DotNet.Runtime.7" },
    @{name = "Microsoft.DotNet.DesktopRuntime.7" },
    @{name = "Microsoft.VCRedist.2015+.x86" },
    @{name = "Microsoft.VisualStudioCode" },
    @{name = "Microsoft.WindowsTerminal" },
    @{name = "Python.Python.3.11" },
    @{name = "JetBrains.PyCharm.Community" },
    @{name = "Oracle.JDK.21" },
    @{name = "EclipseAdoptium.Temurin.20.JDK" },
    @{name = "BlueJTeam.BlueJ" },
    @{name = "ApacheFriends.Xampp.8.1" },
    @{name = "Docker.DockerDesktop" },
    @{name = "Git.Git" },
    @{name = "ArduinoSA.IDE.stable" },
    @{name = "Prusa3D.PrusaSlicer" },
    @{name = "GIMP.GIMP" },
    @{name = "Codeblocks.Codeblocks" },
    @{name = "Adobe.Acrobat.Reader.64-bit" },
    @{name = "KiCad.KiCad" },
    @{name = "Oracle.VirtualBox" },
    @{name = "OpenShot.OpenShot" },
    @{name = "Notepad++.Notepad++" },
    @{name = "VideoLAN.VLC" },
    @{name = "OpenJS.NodeJS" },
    @{name = "Bitvise.SSH.Client" },
    @{name = "Gluon.SceneBuilder" },
    @{name = "PuTTY.PuTTY" },
    @{name = "VMware.WorkstationPlayer" }
);
Foreach ($app in $apps)
{
    $listApp = winget list --exact -q $app.name
    if (![String]::Join("", $listApp).Contains($app.name))
    {
        Write-host "Installing: " $app.name
        winget install -e -h --accept-source-agreements --accept-package-agreements --id $app.name
    }
    else
    {
        Write-host "Skipping: " $app.name " (already installed)"
    }
}
Write-Output "All Done!"

# Opcijske namestitve
#@{name = "Microsoft.VisualStudio.2022.Community" },
#@{name = "OpenJS.NodeJS.LTS" },
#@{name = "Lenovo.SystemUpdate" },
#@{name = "REALiX.HWiNFO" },
#@{name = "CrystalDewWorld.CrystalDiskInfo" },
#@{name = "CrystalDewWorld.CrystalDiskMark" },