diff --git a/README.md b/README.md index 4c8b655..74e065e 100644 --- a/README.md +++ b/README.md @@ -31,29 +31,30 @@ Instructions: 6. When the image is completed, you will see it in the folder where the script was extracted, with the name tiny11.iso What is removed: -Clipchamp, -News, -Weather, -Xbox (although Xbox Identity provider is still here, so it should be possible to be reinstalled with no issues), -GetHelp, -GetStarted, -Office Hub, -Solitaire, -PeopleApp, -PowerAutomate, -ToDo, -Alarms, -Mail and Calendar, -Feedback Hub, -Maps, -Sound Recorder, -Your Phone, -Media Player, -QuickAssist, -Internet Explorer, -Tablet PC Math, -Edge, -OneDrive + +- Clipchamp +- News +- Weather +- Xbox (although Xbox Identity provider is still here, so it should be possible to be reinstalled with no issues) +- GetHelp +- GetStarted +- Office Hub +- Solitaire +- PeopleApp +- PowerAutomate +- ToDo +- Alarms +- Mail and Calendar +- Feedback Hub +- Maps +- Sound Recorder +- Your Phone +- Media Player +- QuickAssist +- Internet Explorer +- Tablet PC Math +- Edge +- OneDrive Known issues: diff --git a/autounattend.xml b/autounattend.xml index 9d845e5..08897e9 100644 --- a/autounattend.xml +++ b/autounattend.xml @@ -1,37 +1,37 @@ - + - - - - true - - - - - false - - - - - OnError - - - - true - OnError - - - /IMAGE/INDEX - 1 - - - - - - - - - - - + + + + true + + + + + false + + + + + OnError + + + + true + OnError + + + /IMAGE/INDEX + 1 + + + + + + + + + + + diff --git a/tiny11maker.ps1 b/tiny11maker.ps1 index c97105a..fab8207 100644 --- a/tiny11maker.ps1 +++ b/tiny11maker.ps1 @@ -13,16 +13,16 @@ $myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWin $adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator if ($myWindowsPrincipal.IsInRole($adminRole)) { - $Host.UI.RawUI.WindowTitle = "tiny11 builder" - Clear-Host + $Host.UI.RawUI.WindowTitle = "tiny11 builder" + Clear-Host } else { - $newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell"; - $newProcess.Arguments = $myInvocation.MyCommand.Definition; - $newProcess.Verb = "runas"; - [System.Diagnostics.Process]::Start($newProcess); - exit + $newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell"; + $newProcess.Arguments = $myInvocation.MyCommand.Definition; + $newProcess.Verb = "runas"; + [System.Diagnostics.Process]::Start($newProcess); + exit } Write-Host "Welcome to the tiny11 image creator!" Start-Sleep -Seconds 3 @@ -33,9 +33,9 @@ $DriveLetter = Read-Host "Please enter the drive letter for the Windows 11 image $DriveLetter = $DriveLetter + ":" if ((Test-Path "$DriveLetter\sources\boot.wim") -eq $false -or (Test-Path "$DriveLetter\sources\install.wim") -eq $false) { - Write-Host "Can't find Windows OS Installation files in the specified Drive Letter.." - Write-Host "Please enter the correct DVD Drive Letter.." - exit + Write-Host "Can't find Windows OS Installation files in the specified Drive Letter.." + Write-Host "Please enter the correct DVD Drive Letter.." + exit } New-Item -ItemType Directory -Force -Path "$mainOSDrive\tiny11"