33 lines
798 B
PowerShell
33 lines
798 B
PowerShell
# Install requirements via winget
|
|
|
|
$packages = @(
|
|
"gnupg.gpg4win",
|
|
"microsoft.teams",
|
|
"putty.putty",
|
|
"microsoft.windowsterminal",
|
|
"microsoft.git",
|
|
"mozilla.firefox",
|
|
"Microsoft.VisualStudio.2022.Community",
|
|
"JetBrains.Resharper",
|
|
"jandedobbeleer.ohmyposh",
|
|
"IJHack.QtPass",
|
|
"Microsoft.powertoys",
|
|
"google.chrome",
|
|
"spotify.spotify",
|
|
"microsoft.azuredatastudio",
|
|
"mozilla.thunderbird",
|
|
"yubico.authenticator",
|
|
"microsoft.powershell",
|
|
"JetBrains.ReSharper",
|
|
"Postman.Postman",
|
|
"docker.dockerdesktop"
|
|
)
|
|
|
|
# Iterate through each package and install it
|
|
foreach ($package in $packages) {
|
|
winget install $package
|
|
}
|
|
|
|
# Install mini driver for yubikey
|
|
# Follow dr duhs yubikey guide for setting up gpg agent and trusting certificate
|
|
# Install server for browserpass |