-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_base-windows.ps1
82 lines (72 loc) · 2.27 KB
/
_base-windows.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
79
80
81
82
# Install via the following command command (administrative PowerShell):
# Invoke-WebRequest -UseBasicParsing https://raw.githubusercontent.com/mob-programming-meetup/cloud-mob-station/master/install.windows.ps1 | Invoke-Expression
& {
# Set-PSDebug -Trace 1 # Trace script lines as they run. # Disable as not working as expected
# Install Chocolatey package manager
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'))
# Install software packages
choco install -y `
7zip `
adobereader `
adoptopenjdk `
anydesk `
beyondcompare `
brave `
cmake `
dart-sdk `
dotnet-sdk `
firefox `
filezilla `
git `
git-fork `
github-desktop `
GoogleChrome `
greenshot `
intellijidea-ultimate `
irfanview `
jetbrains-rider `
mariadb `
microsoft-windows-terminal `
miniconda3 `
nodejs-lts `
notepadplusplus `
paint.net `
postman `
procexp `
putty `
pycharm `
python3 `
ruby `
sliksvn `
sublimetext3 `
teamviewer `
terraform `
tortoisegit `
treesizefree `
vlc `
vscode `
webstorm `
win-no-annoy `
winscp
# add C:\Users\harald_reingruber\AppData\Roaming\Python\Python39\Scripts to path
# add software opengl driver: https://github.com/pal1000/mesa-dist-win
# Install Mobster Mob-Programming timer
mkdir "$env:TEMP\cloud-desktop"
pushd "$env:TEMP\cloud-desktop"
Invoke-WebRequest https://github.com/dillonkearns/mobster/releases/download/v0.0.48/Mobster-Setup-0.0.48.exe -OutFile Mobster-Setup-0.0.48.exe
.\Mobster-Setup-0.0.48.exe /S
popd
# Chocolatey prerelease packages
choco install -y --pre `
firefox-dev
# # Use Node Version Manager (NVM) to install multiple Node.js versions
# RefreshEnv # Reload environment variables (system path)
# choco install -y nvm
# nvm install 8
# nvm install 14 # LTS version
# nvm use 14 # LTS version
# Set Timezone
Set-Timezone -Id "W. Europe Standard Time" -PassThru
# Enable Audio Service
Set-Service Audiosrv -StartupType Automatic
} *> "$env:TEMP\cloud-startup.log"