Skip to content

Instantly share code, notes, and snippets.

@TeroKeso
Last active August 15, 2022 06:58
Show Gist options
  • Save TeroKeso/4412435d560bdfca3bee2ad1796f2823 to your computer and use it in GitHub Desktop.
Save TeroKeso/4412435d560bdfca3bee2ad1796f2823 to your computer and use it in GitHub Desktop.
HAMK Basic programs

Installation of basic programs (HAMK BYOD) in students' personal devices (Windows).

The following guidelines utilizes the chocolatey package manager for Windows to install several applications that are used in different modules in HAMK.

Step 1: Install CHOCOLATEY

Requirements

  • Windows 7 or newer version of Windows Operating System (Recommended Windows 10 or 11)
  • PowerShell v2+
  • .NET Framework 4+

Installation Process (with PowerShell)

  • Start Powershell with Adminitrator rights (Run as Administrator)

If you already have choco installed in your device, run the following command in your powershell

rm C:\ProgramData\chocolatey -erroraction 'silentlycontinue'
  • Run the following command in Powershell to install CHOCOLATEY
Set-ExecutionPolicy Bypass -Scope Process -Force; iwr https://community.chocolatey.org/install.ps1 -UseBasicParsing | iex

Step 2: Programs/Apps Installation

The list of apss that you are going to install is as below:

powershell-core, git, vscode, putty, greenshot, notepadplusplus, winscp, 7zip, paint.net, windirstat, zoom, sudo, vmrc, vmware-horizon-client, github-desktop, docker-desktop, google drive, google chrome & obs-studio

To install the above mentioned programs run the following script

choco install powershell-core git vscode putty greenshot notepadplusplus winscp 7zip paint.net google-drive-file-stream googlechrome windirstat zoom sudo vmrc vmware-horizon-client github-desktop obs-studio docker-desktop -y

Step 3: Installing some useful VScode addons

  • Restart your Powershell session
  • Run the following commands
code --install-extension ms-vscode.powershell
code --install-extension vsls-contrib.gistfs
code --install-extension hashicorp.terraform
code --install-extension ms-vscode-remote.remote-containers
code --install-extension ms-azuretools.vscode-docker
code --install-extension ms-vscode-remote.vscode-remote-extensionpack

Installation of basic programs (HAMK BYOD) in students' personal devices (Mac Users)

The following guidelines utilizes the brew package manager for macOS to install several applications that are used in different modules in HAMK.

Step 1: Install brew

Requirements

Install Xcode

xcode-select --install

Install Brew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Step 2: Programs/Apps Installation

The list of apss that you are going to install is as below:

Vscode, vmware-horizon-client, disk-inventroy, git, github, obs, vmware-fusion & zoom.

To install the above mentioned programs run the following script

brew install --cask visual-studio-code && brew install --cask vmware-horizon-client && brew install --cask disk-inventory-x && brew install --cask zoom && brew install git && brew install --cask github && brew install --cask obs && brew install --cask vmware-fusion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment