You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [Enhance] Configure all apps view in start menu
To keep look consistent with older Win11
* [Enhance] Additional Start menu settings
* [MicroWin] Change Write-Host to Write-Debug on debug lines. (#13)
* Add a resolution to scripts being disabled (#14)
* [MicroWin] Change Write-Host to Write-Debug on debug lines.
* Add a resolution to scripts being disabled
* Add skip first logon anim option
* Unrelated: indentation fixes from compile script
* Some little touches to the first-run script
---------
Co-authored-by: Real-MullaC <callumjanes2007new+github@gmail.com>
Copy file name to clipboardExpand all lines: functions/microwin/Invoke-MicrowinGetIso.ps1
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ function Invoke-MicrowinGetIso {
4
4
Function to get the path to Iso file for MicroWin, unpack that isom=, read basic information and populate the UI Options
5
5
#>
6
6
7
-
Write-Host"Invoking WPFGetIso"
7
+
Write-Debug"Invoking WPFGetIso"
8
8
9
9
if($sync.ProcessRunning) {
10
10
$msg="GetIso process is currently running."
@@ -77,6 +77,7 @@ function Invoke-MicrowinGetIso {
77
77
if (-not$?)
78
78
{
79
79
Write-Host"Could not download the ISO file. Look at the output of the console for more information."
80
+
Write-Host"If you get an error about scripts is disabled on this system please close WinUtil and run - 'Set-ExecutionPolicy -ExecutionPolicy Unrestricted' and select 'A' and retry using MicroWin again."
Write-Host "The taskbar will take around a minute to show up, but you can start using your computer now. Try pressing the Windows key to open the Start menu, or Windows + E to launch File Explorer."
108
+
Start-Sleep -Seconds 10
109
+
91
110
if (Test-Path -Path "$env:HOMEDRIVE\winutil-config.json")
Copy file name to clipboardExpand all lines: xaml/inputXML.xaml
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1463,6 +1463,7 @@
1463
1463
<CheckBoxName="MicroWinWPBT"Margin="{DynamicResource MicrowinCheckBoxMargin}"IsChecked="False"ToolTip="If enabled then allows your computer vendor to execute a program each time it boots. It enables computer vendors to force install anti-theft software, software drivers, or a software program conveniently. This could also be a security risk."><AccessTextTextWrapping="Wrap"Text="Disable Windows Platform Binary Table (WPBT) (ADVANCED TWEAK)" /></CheckBox>
1464
1464
<CheckBoxName="MicroWinUnsupported"Margin="{DynamicResource MicrowinCheckBoxMargin}"IsChecked="False"ToolTip="If enabled then it will allow you to upgrade your PC to Windows 11 if your PC does not support Windows 11 yet. This is good for if you do not have a USB and want to upgrade to Windows 11 on unsupported hardware."><AccessTextTextWrapping="Wrap"Text="Allow this PC to upgrade to Windows 11" /></CheckBox>
1465
1465
<CheckBoxName="MicroWinESD"Margin="{DynamicResource MicrowinCheckBoxMargin}"IsChecked="False"ToolTip="The ESD file format compresses the installation image even further, therefore reducing ISO file sizes a little more. Select this if you have a small USB."><AccessTextTextWrapping="Wrap"Text="Convert this image to ESD (This will take longer)" /></CheckBox>
1466
+
<CheckBoxName="MicroWinNoFLA"Margin="{DynamicResource MicrowinCheckBoxMargin}"IsChecked="True"ToolTip="The First Logon Animation is an animation that is played when a user logs on for the first time. It can artificially increase wait times. Select this option to automatically close the first logon animation and reach the desktop quicker (additional system preparation will still be done)"><AccessTextTextWrapping="Wrap"Text="Skip First Logon Animation" /></CheckBox>
0 commit comments