-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstallSoftware.ps1
78 lines (62 loc) · 1.97 KB
/
InstallSoftware.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
set-executionpolicy remotesigned
choco feature enable -n allowGlobalConfirmation
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit }
choco feature enable -n allowGlobalConfirmation
# No Reboot
# http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/Orcomp/Boxstarter/master/InstallSoftware.txt
# Runtimes
#==========
# General
#=========
cinst googlechrome
cinst firefox
# cinst greenshot
cinst vlc
cinst f.lux
# cinst keepass.install
# cinst FoxitReader
# cinst kdiff3
cinst dropbox
choco install jre8
choco install adobereader-update
choco install sysinternals
choco install teamviewer
choco install em-client
cinst skype
cinst paint.net
cinst ccleaner
cinst malwarebytes
cinst avastfreeantivirus
choco install adobereader
# cinst filezilla
# cinst zoom
# cinst putty.install
# cinst screentogif
cinst microsoft-teams
cinst treesizefree
cinst processhacker
# http://www.tweaking.com/content/page/simple_system_tweaker.html
cinst simplesystemtweaker
cinst itunes
# Dev tools
#===========
# Git will install credentials manager as well
# https://github.com/Microsoft/Git-Credential-Manager-for-Windows/
# cinst git.install
#
# cinst vscode
# cinst vscode-csharp
# cinst vscode-powershell
# cinst vscode-icons
# cinst vscode-gitlens
# cinst vscode-codespellchecker
# cinst vscode-markdownlint
cinst notepadplusplus.install
# Set notepad2 as the default notepad editor.
cinst notepad2-mod
cinst 7zip.install
# Fix SSH-Agent error by adding the bin directory to the `Path` environment variable
$env:PSModulePath = $env:PSModulePath + ";C:\Program Files (x86)\Git\bin"
# Tweaks
#========
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Google\Chrome\Application\chrome.exe"