Skip to content

Commit

Permalink
Verbiage Correction(s) -> (#1217)
Browse files Browse the repository at this point in the history
Based from:
#1211 (comment)
-------------------------------------------
Utility addition ->
Nushell
- Added under Utilities.
-------------------------------------------
Feature addition ->
Based from:
#1196 (comment)
- Added Windows Sandbox under Features.
  • Loading branch information
munkk01 authored Nov 30, 2023
1 parent b3bbb8a commit 78b3d02
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 32 deletions.
4 changes: 4 additions & 0 deletions config/applications.json
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,10 @@
"winget": "Microsoft.NuGet",
"choco": "nuget.commandline"
},
"WPFInstallnushell": {
"winget": "Nushell.Nushell",
"choco": "nushell"
},
"WPFInstallnvclean": {
"winget": "TechPowerUp.NVCleanstall",
"choco": "na"
Expand Down
8 changes: 8 additions & 0 deletions config/feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@

]
},
"WPFFeaturesandbox": {
"feature": [
"Containers-DisposableClientVM"
],
"InvokeScript": [

]
},
"WPFFeaturenfs": {
"feature": [
"ServicesForNFS-ClientOnly",
Expand Down
47 changes: 31 additions & 16 deletions winutil.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4252,6 +4252,7 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
<CheckBox Name="WPFInstallmsiafterburner" Content="MSI Afterburner" Margin="5,0"/>
<CheckBox Name="WPFInstallnanazip" Content="NanaZip" Margin="5,0"/>
<CheckBox Name="WPFInstallnextclouddesktop" Content="Nextcloud Desktop" Margin="5,0"/>
<CheckBox Name="WPFInstallnushell" Content="Nushell" Margin="5,0"/>
<CheckBox Name="WPFInstallnvclean" Content="NVCleanstall" Margin="5,0"/>
<CheckBox Name="WPFInstallOVirtualBox" Content="Oracle VirtualBox" Margin="5,0"/>
<CheckBox Name="WPFInstallopenrgb" Content="OpenRGB" Margin="5,0" />
Expand Down Expand Up @@ -4417,6 +4418,7 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
<CheckBox Name="WPFFeatureslegacymedia" Content="Legacy Media (WMP, DirectPlay)" Margin="5,0"/>
<CheckBox Name="WPFFeaturenfs" Content="NFS - Network File System" Margin="5,0"/>
<CheckBox Name="WPFFeaturewsl" Content="Windows Subsystem for Linux" Margin="5,0"/>
<CheckBox Name="WPFFeaturesandbox" Content="Windows Sandbox" Margin="5,0"/>
<Button Name="WPFFeatureInstall" FontSize="14" Content="Install Features" HorizontalAlignment = "Left" Margin="5" Padding="20,5" Width="150"/>
<Label Content="Fixes" FontSize="16"/>
<Button Name="WPFPanelAutologin" FontSize="14" Content="Set Up Autologin" HorizontalAlignment = "Left" Margin="5,2" Padding="20,5" Width="300"/>
Expand Down Expand Up @@ -4472,8 +4474,8 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
<StackPanel Name="MicrowinMain" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Column="0" Grid.Row="0">
<StackPanel Background="Transparent" SnapsToDevicePixels="True" Margin="1">
<TextBlock Margin="1" Padding="1" TextWrapping="Wrap" Foreground="{ComboBoxForegroundColor}">
Choose a Windows ISO file that you''ve downloaded. <LineBreak/>
Check for status in the console.
Choose a Windows ISO file that you''ve downloaded <LineBreak/>
Check the status in the console
</TextBlock>
<TextBox Name="MicrowinFinalIsoLocation" Background="Transparent" BorderThickness="1" BorderBrush="{MainForegroundColor}"
Text="ISO location will be printed here"
Expand Down Expand Up @@ -4565,21 +4567,21 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
<LineBreak/>
<Bold>INSTRUCTIONS</Bold> <LineBreak/>
- Download latest Windows 11 image from Microsoft <LineBreak/>
https://www.microsoft.com/software-download/windows11
several minutes to process the ISO depending on your machine. <LineBreak/>
- Put it somewhere on the C: drive so it is easily accessible <LineBreak/>
- Download the latest Windows 11 image from Microsoft <LineBreak/>
LINK: https://www.microsoft.com/software-download/windows11 <LineBreak/>
NOTE: May take several minutes to process the ISO depending on your machine and connection <LineBreak/>
- Put it somewhere on the C:\ drive so it is easily accessible <LineBreak/>
- Launch WinUtil and MicroWin <LineBreak/>
- Click on Get Iso image button and wait for WinUtil to process the Image <LineBreak/>
It will be processed and unpacked which could take some time <LineBreak/>
- Once done, chose which Windows flavor you want to base your image on <LineBreak/>
- Chose which features you want to keep <LineBreak/>
- Click Start Process button <LineBreak/>
NOTE: Process of creating Windows image will take a long time, please check the Console and wait for it to say "Done" <LineBreak/>
<Bold>Once it is done the microwin.iso will be in the %temp% directory</Bold> <LineBreak/>
Copy this image to your Ventoy USB Stick, boot to this image. gg,
- Click on the "Select Windows ISO" button and wait for WinUtil to process the image <LineBreak/>
NOTE: It will be processed and unpacked which may take some time <LineBreak/>
- Once complete, choose which Windows flavor you want to base your image on <LineBreak/>
- Choose which features you want to keep <LineBreak/>
- Click the "Start Process" button <LineBreak/>
NOTE: The process of creating the Windows image may take some time, please check the console and wait for it to say "Done" <LineBreak/>
- Once complete, the microwin.iso will be in the %temp% directory <LineBreak/>
- Copy this image to your Ventoy USB Stick, boot to this image, gg
<LineBreak/>
If you are injecting drivers make sure to put all your inf, sys and dll file for each driver into a separate directory. For example:
NOTE: If you are injecting drivers ensure you put all your inf, sys, and dll files for each driver into a separate directory
</TextBlock>
<TextBlock Margin="15,0,15,15"
Padding = "1"
Expand All @@ -4590,7 +4592,8 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
Foreground = "{ComboBoxForegroundColor}"
xml:space = "preserve"
>
C:\drivers\
<Bold>Example:</Bold>
C:\drivers\
|-- Driver1\
| |-- Driver1.inf
| |-- Driver1.sys
Expand Down Expand Up @@ -5041,6 +5044,10 @@ $sync.configs.applications = '{
"winget": "Microsoft.NuGet",
"choco": "nuget.commandline"
},
"WPFInstallnushell": {
"winget": "Nushell.Nushell",
"choco": "nushell"
},
"WPFInstallnvclean": {
"winget": "TechPowerUp.NVCleanstall",
"choco": "na"
Expand Down Expand Up @@ -5449,6 +5456,14 @@ $sync.configs.feature = '{
]
},
"WPFFeaturesandbox": {
"feature": [
"Containers-DisposableClientVM"
],
"InvokeScript": [
]
},
"WPFFeaturenfs": {
"feature": [
"ServicesForNFS-ClientOnly",
Expand Down
35 changes: 19 additions & 16 deletions xaml/inputXML.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@
<CheckBox Name="WPFInstallmsiafterburner" Content="MSI Afterburner" Margin="5,0"/>
<CheckBox Name="WPFInstallnanazip" Content="NanaZip" Margin="5,0"/>
<CheckBox Name="WPFInstallnextclouddesktop" Content="Nextcloud Desktop" Margin="5,0"/>
<CheckBox Name="WPFInstallnushell" Content="Nushell" Margin="5,0"/>
<CheckBox Name="WPFInstallnvclean" Content="NVCleanstall" Margin="5,0"/>
<CheckBox Name="WPFInstallOVirtualBox" Content="Oracle VirtualBox" Margin="5,0"/>
<CheckBox Name="WPFInstallopenrgb" Content="OpenRGB" Margin="5,0" />
Expand Down Expand Up @@ -872,6 +873,7 @@
<CheckBox Name="WPFFeatureslegacymedia" Content="Legacy Media (WMP, DirectPlay)" Margin="5,0"/>
<CheckBox Name="WPFFeaturenfs" Content="NFS - Network File System" Margin="5,0"/>
<CheckBox Name="WPFFeaturewsl" Content="Windows Subsystem for Linux" Margin="5,0"/>
<CheckBox Name="WPFFeaturesandbox" Content="Windows Sandbox" Margin="5,0"/>
<Button Name="WPFFeatureInstall" FontSize="14" Content="Install Features" HorizontalAlignment = "Left" Margin="5" Padding="20,5" Width="150"/>
<Label Content="Fixes" FontSize="16"/>
<Button Name="WPFPanelAutologin" FontSize="14" Content="Set Up Autologin" HorizontalAlignment = "Left" Margin="5,2" Padding="20,5" Width="300"/>
Expand Down Expand Up @@ -927,8 +929,8 @@
<StackPanel Name="MicrowinMain" Background="{MainBackgroundColor}" SnapsToDevicePixels="True" Grid.Column="0" Grid.Row="0">
<StackPanel Background="Transparent" SnapsToDevicePixels="True" Margin="1">
<TextBlock Margin="1" Padding="1" TextWrapping="Wrap" Foreground="{ComboBoxForegroundColor}">
Choose a Windows ISO file that you've downloaded. <LineBreak/>
Check for status in the console.
Choose a Windows ISO file that you've downloaded <LineBreak/>
Check the status in the console
</TextBlock>
<TextBox Name="MicrowinFinalIsoLocation" Background="Transparent" BorderThickness="1" BorderBrush="{MainForegroundColor}"
Text="ISO location will be printed here"
Expand Down Expand Up @@ -1020,21 +1022,21 @@
<LineBreak/>

<Bold>INSTRUCTIONS</Bold> <LineBreak/>
- Download latest Windows 11 image from Microsoft <LineBreak/>
https://www.microsoft.com/software-download/windows11
several minutes to process the ISO depending on your machine. <LineBreak/>
- Put it somewhere on the C: drive so it is easily accessible <LineBreak/>
- Download the latest Windows 11 image from Microsoft <LineBreak/>
LINK: https://www.microsoft.com/software-download/windows11 <LineBreak/>
NOTE: May take several minutes to process the ISO depending on your machine and connection <LineBreak/>
- Put it somewhere on the C:\ drive so it is easily accessible <LineBreak/>
- Launch WinUtil and MicroWin <LineBreak/>
- Click on Get Iso image button and wait for WinUtil to process the Image <LineBreak/>
It will be processed and unpacked which could take some time <LineBreak/>
- Once done, chose which Windows flavor you want to base your image on <LineBreak/>
- Chose which features you want to keep <LineBreak/>
- Click Start Process button <LineBreak/>
NOTE: Process of creating Windows image will take a long time, please check the Console and wait for it to say "Done" <LineBreak/>
<Bold>Once it is done the microwin.iso will be in the %temp% directory</Bold> <LineBreak/>
Copy this image to your Ventoy USB Stick, boot to this image. gg,
- Click on the "Select Windows ISO" button and wait for WinUtil to process the image <LineBreak/>
NOTE: It will be processed and unpacked which may take some time <LineBreak/>
- Once complete, choose which Windows flavor you want to base your image on <LineBreak/>
- Choose which features you want to keep <LineBreak/>
- Click the "Start Process" button <LineBreak/>
NOTE: The process of creating the Windows image may take some time, please check the console and wait for it to say "Done" <LineBreak/>
- Once complete, the microwin.iso will be in the %temp% directory <LineBreak/>
- Copy this image to your Ventoy USB Stick, boot to this image, gg
<LineBreak/>
If you are injecting drivers make sure to put all your inf, sys and dll file for each driver into a separate directory. For example:
NOTE: If you are injecting drivers ensure you put all your inf, sys, and dll files for each driver into a separate directory
</TextBlock>
<TextBlock Margin="15,0,15,15"
Padding = "1"
Expand All @@ -1045,7 +1047,8 @@
Foreground = "{ComboBoxForegroundColor}"
xml:space = "preserve"
>
C:\drivers\
<Bold>Example:</Bold>
C:\drivers\
|-- Driver1\
| |-- Driver1.inf
| |-- Driver1.sys
Expand Down

0 comments on commit 78b3d02

Please sign in to comment.