mirror of
https://codeberg.org/Computertruhe/Setup-Skripte.git
synced 2025-06-30 04:19:20 +02:00
more of the changes ml requested. cleanup of old files, restructuring of folder structure to fit master-branch of computertruhe-repo. Add screenshots to Instruction how to create custom windows-iso
This commit is contained in:
parent
a48119ad97
commit
50bc96aff1
8 changed files with 160 additions and 303 deletions
18
docs/Setup.ps1
Normal file
18
docs/Setup.ps1
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue