5
0
Fork 0
mirror of https://codeberg.org/Computertruhe/Setup-Skripte.git synced 2025-06-29 11:56:20 +02:00

add files for unatteded Install of Windows 10 to the repo.

This commit is contained in:
stefan230 2020-01-19 08:00:12 +01:00
parent ef663fc3f6
commit c26a964cbc
3 changed files with 82 additions and 0 deletions

18
Windows/Setup.ps1 Executable file
View file

@ -0,0 +1,18 @@
Write-Host Richte arabisches und persisches Tastatur-Layout ein... -ForegroundColor Yellow
$LanguageList = Get-WinUserLanguageList
#Adds arabisch-Egypt, Persisch to layouts:
$LanguageList.Add("ar-EG")
$LanguageList.Add("fa-IR")
#sets the entries we added above.
Set-WinUserLanguageList $LanguageList
Write-Host Installiere chocolatey und weitere Software für das System -ForegroundColor Yellow
#Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
#Install Software with choclatey
choco install vlc 7zip gimp libreoffice-fresh keepass inkscape firefox thunderbird foxitreader --yes