mirror of
https://codeberg.org/Computertruhe/Setup-Skripte.git
synced 2025-06-28 11:26:18 +02:00
add files for unatteded Install of Windows 10 to the repo.
This commit is contained in:
parent
ef663fc3f6
commit
c26a964cbc
3 changed files with 82 additions and 0 deletions
BIN
Windows/Anleitung Win10 Custom-ISO erstellen.pdf
Executable file
BIN
Windows/Anleitung Win10 Custom-ISO erstellen.pdf
Executable file
Binary file not shown.
18
Windows/Setup.ps1
Executable file
18
Windows/Setup.ps1
Executable 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
|
64
Windows/autounattend.xml
Executable file
64
Windows/autounattend.xml
Executable file
|
@ -0,0 +1,64 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<unattend xmlns="urn:schemas-microsoft-com:unattend">
|
||||||
|
<settings pass="windowsPE">
|
||||||
|
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<SetupUILanguage>
|
||||||
|
<UILanguage>de-DE</UILanguage>
|
||||||
|
</SetupUILanguage>
|
||||||
|
<InputLocale>de-DE</InputLocale>
|
||||||
|
<SystemLocale>de-DE</SystemLocale>
|
||||||
|
<UILanguage>de-DE</UILanguage>
|
||||||
|
<UserLocale>de-DE</UserLocale>
|
||||||
|
<UILanguageFallback></UILanguageFallback>
|
||||||
|
</component>
|
||||||
|
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<UserData>
|
||||||
|
<AcceptEula>true</AcceptEula>
|
||||||
|
<Organization>computertruhe</Organization>
|
||||||
|
<ProductKey>
|
||||||
|
<Key></Key>
|
||||||
|
<WillShowUI>Always</WillShowUI>
|
||||||
|
</ProductKey>
|
||||||
|
</UserData>
|
||||||
|
</component>
|
||||||
|
</settings>
|
||||||
|
<settings pass="oobeSystem">
|
||||||
|
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<InputLocale>de-DE</InputLocale>
|
||||||
|
<SystemLocale>de-DE</SystemLocale>
|
||||||
|
<UILanguage>de-DE</UILanguage>
|
||||||
|
<UILanguageFallback></UILanguageFallback>
|
||||||
|
<UserLocale>de-DE</UserLocale>
|
||||||
|
</component>
|
||||||
|
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<OOBE>
|
||||||
|
<HideEULAPage>true</HideEULAPage>
|
||||||
|
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
||||||
|
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
||||||
|
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
||||||
|
<ProtectYourPC>3</ProtectYourPC>
|
||||||
|
</OOBE>
|
||||||
|
<UserAccounts>
|
||||||
|
<LocalAccounts>
|
||||||
|
<LocalAccount wcm:action="add">
|
||||||
|
<Description>ein Test</Description>
|
||||||
|
<DisplayName>User</DisplayName>
|
||||||
|
<Group>Administrators</Group>
|
||||||
|
<Name>User</Name>
|
||||||
|
</LocalAccount>
|
||||||
|
</LocalAccounts>
|
||||||
|
</UserAccounts>
|
||||||
|
</component>
|
||||||
|
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<FirstLogonCommands>
|
||||||
|
<SynchronousCommand wcm:action="add">
|
||||||
|
<CommandLine>powershell -ExecutionPolicy Unrestricted -F C:\Setup.ps1</CommandLine>
|
||||||
|
<Description>adds keyboard layouts</Description>
|
||||||
|
<Order>1</Order>
|
||||||
|
<RequiresUserInput>false</RequiresUserInput>
|
||||||
|
</SynchronousCommand>
|
||||||
|
</FirstLogonCommands>
|
||||||
|
</component>
|
||||||
|
</settings>
|
||||||
|
<cpi:offlineImage cpi:source="wim:c:/users/stefan/desktop/test/win10/sources/install.wim#Windows 10 Home" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
|
||||||
|
</unattend>
|
Loading…
Add table
Add a link
Reference in a new issue