Skip to content

Instantly share code, notes, and snippets.

@Konfekt
Last active September 6, 2024 04:22
Show Gist options
  • Select an option

  • Save Konfekt/f1658d95fc0fc5fb3c6f079668a503f2 to your computer and use it in GitHub Desktop.

Select an option

Save Konfekt/f1658d95fc0fc5fb3c6f079668a503f2 to your computer and use it in GitHub Desktop.
add useful chocolatey packages after installation of Windows 10
Set-ExecutionPolicy Bypass -Scope Process -Force
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco feature enable -n=allowGlobalConfirmation
# remove bloat as in
# https://lifehacker.com/you-can-get-rid-of-windows-bloatware-with-one-command-1848707156
iwr -useb https://git.io/debloat | iex
iwr -useb https://christitus.com/win | iex
# ! Set default file format to DocX as in
# https://www.howtogeek.com/281166/how-to-change-the-default-file-format-in-libreoffice/
choco install jre8 libreoffice-fresh
choco install PDFXchangeEditor sumatrapdf okular pdf-ifilter-64 pdfill
choco install zoom microsoft-teams Skype
# jitsi
choco install irfanview jpegview notepadplusplus
choco install vlc
choco install clipgrab youtube-dl-gui
# ! Install add-ons from https://addons.mozilla.org/en-US/firefox/collections/17831851/Serenity/
choco install firefox uBlockOrigin-firefox brave
choco install betterbird
# chromium
choco install Everything EverythingToolbar quicklook
choco install dejavufonts droidsansmono croscorefonts-font
choco install paint.net krita
# gimp scribus imagemagick
choco install 7zip-zstd peazip
# choco install archiver easy7zip
# choco install f.lux
# choco install greenshot
# choco install sharex
# choco install ditto
# choco install goldendict --pre
choco install geekuninstaller
# iobit-uninstaller
choco install sysinternals adwcleaner patchcleaner lockhunter
# choco install unified-hosts-autoupdate shutup10 patchcleaner glaryutilities-free rapidee
# procexp winaero-tweaker speccy
# choco install backupper-standard
# choco install wsus-offline-update windows-10-update-assistant
choco install chocolateygui choco-cleaner
choco install choco-upgrade-all-at --params "'/WEEKLY:yes /DAY:SUN /TIME:12:00 /ABORTTIME:16:00'"
# choco install autohotkey python
choco install powershell-core microsoft-windows-terminal clink
# choco install /NoDesktopShortcuts vim
choco install git.install fd ripgrep fzf jdupes lf gawk sed pandoc gtypist
# choco install pandoc-crossref latexdaemon
# choco install ext2explore
choco install doublecmd
choco install qalculate
@Konfekt
Copy link
Author

Konfekt commented Mar 7, 2020

To install these packages in Windows:

  1. Connect to the Internet.

  2. press the Windows key (to the left of the space bar) once.

  3. type the words 'PowerShell ISE' and start the proposed program as adminstrator,

  4. The line below :

    $scriptURL = "https://gist.githubusercontent.com/Konfekt/f1658d95fc0fc5fb3c6f079668a503f2/raw"; $file = "$env:TEMP\windows10-add-packages.ps1"; Invoke-WebRequest $scriptURL -OutFile $file; Set-ExecutionPolicy Bypass -scope Process -Force; . $file; Remove-Item -path $file
    1. mark it completely by a fast triple click,

    2. copy it (by simultaneously pressing the 'Ctrl' and 'C' keys), and

    3. insert it into the console by pressing the 'Ctrl' and 'V' keys simultaneously

    4. press Enter.

@Konfekt
Copy link
Author

Konfekt commented Mar 7, 2020

These installation instructions are available under the web address https://tinyurl.com/addwin10.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment