Hello all,
In my private system I started to use Winget. Which has convinced me with the simple Installierne of various programs.
Now my idea was to use this now also in our It infrastructure, instead of the current classic way msi upload and install at the client.
Because here the main problem was to get all msi files.
As I learned, scripts run at start up with admin rights, which are also needed to install winget programs.
I wrote a powershell script which should install everything.
winget install --id "Microsoft.PowerToys" --version 0.66.0 --source winget --accept-package-agreements --silent
winget install --id "Mozilla.Firefox" --version 109.0 --source winget --accept-package-agreements --silent
winget install --id "7zip.7zip" --version 22.01 --source winget --accept-package-agreements --silent
winget install --id "BlenderFoundation.Blender" --version 3.4.1 --source winget --accept-package-agreements --silent
winget install --id "Inkscape.Inkscape" --version 1.2.1 --source winget --accept-package-agreements --silent
winget install --id "VideoLAN.VL" --version 3.0.18 --source winget --accept-package-agreements --silent
winget install --id "SSHFS-Win.SSHFS-Win" --version 3.5.20357 --source winget --accept-package-agreements --silent
winget install --id "WinFsp.WinFsp" --version 1.12 --source winget --accept-package-agreements --silent
winget install --id "NoMachine.NoMachine" --version 8.2.3 --source winget --accept-package-agreements --silent
I added it into the Group Policies at start up via Powershell scripts, that should be fine.
The script is executed according to GroupPolicy results but the programs are not installed.
Therefore the question, what am I doing wrong, because unfortunately I can't find much about this on the internet. How to manage Winget by Group Policies.
With kind regards