Kugane / winget

A Winget script to automatically install predefined programs and MS Store apps. Includes automatic update and cleanup job
MIT License
72 stars 21 forks source link
powershell windows windows-10 windows11 winget

Readme need a update

=======

Under Construction!!!

Needs alot of adjustments

#

A Winget script to automatically install programs and MS Store apps. Debloating Windows Apps. Including automatic update and cleanup job

#

Features

Download the Latest Release

Edit winget-basic.ps1 to your liking!

Any packages added to this section will be installed with GUI for you to configure.

$graphical = @(
    @{name = "ClamWin.ClamWin" }
);

# All packages in this section will be installed silently. You can also install msstore apps, just as you can see below. If you chose to install more packages, please separate them with a comma ","

$apps = @(
    @{name = "7zip.7zip" },
    @{name = "Foxit.FoxitReader" },
    @{name = "Microsoft.VC++2015-2022Redist-x86" },
    @{name = "Microsoft.VC++2015-2022Redist-x64" },
    @{name = "9NCBCSZSJRSB"; source = "msstore" },      # Spotify
    @{name = "9NKSQGP7F2NH"; source = "msstore" },      # Whatsapp Desktop
    @{name = "9WZDNCRFJ3TJ"; source = "msstore" },      # Netflix
    @{name = "9P6RC76MSMMJ"; source = "msstore" },      # Prime Video
    @{name = "9PMMSR1CGPWG"; source = "msstore" },      # HEIF-PictureExtension
    @{name = "9MVZQVXJBQ9V"; source = "msstore" },      # AV1 VideoExtension
    @{name = "9NCTDW2W1BH8"; source = "msstore" },      # Raw-PictureExtension
    @{name = "9N95Q1ZZPMH4"; source = "msstore" },      # MPEG-2-VideoExtension
    @{name = "9N4WGH0Z6VHQ"; source = "msstore" }       # HEVC-VideoExtension
);

#

Usage

Add automatic updates and cleanup job

#