Skip to content

Commit dff9741

Browse files
authored
Remove mentions of Windows 11 Edition and pull latest (#3598)
1 parent 7db0b8a commit dff9741

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

functions/microwin/Invoke-MicrowinGetIso.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function Invoke-MicrowinGetIso {
7373
}
7474

7575
Invoke-MicrowinBusyInfo -action "wip" -message "Downloading Windows ISO... (This may take a long time)" -interactive $false
76-
& $fidopath -Win 'Windows 11' -Rel $sync["ISORelease"].SelectedItem -Arch "x64" -Lang $lang -Ed "Windows 11 Home/Pro/Edu"
76+
& $fidopath -Win 'Windows 11' -Rel Latest -Arch "x64" -Lang $lang
7777
if (-not $?)
7878
{
7979
Write-Host "Could not download the ISO file. Look at the output of the console for more information."

scripts/main.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -359,18 +359,13 @@ $sync["Form"].Add_ContentRendered({
359359

360360
# Add event handlers for the RadioButtons
361361
$sync["ISOdownloader"].add_Checked({
362-
$sync["ISORelease"].Visibility = [System.Windows.Visibility]::Visible
363362
$sync["ISOLanguage"].Visibility = [System.Windows.Visibility]::Visible
364363
})
365364

366365
$sync["ISOmanual"].add_Checked({
367-
$sync["ISORelease"].Visibility = [System.Windows.Visibility]::Collapsed
368366
$sync["ISOLanguage"].Visibility = [System.Windows.Visibility]::Collapsed
369367
})
370368

371-
$sync["ISORelease"].Items.Add("24H2") | Out-Null
372-
$sync["ISORelease"].SelectedItem = "24H2"
373-
374369
$sync["ISOLanguage"].Items.Add("System Language ($(Microwin-GetLangFromCulture -langName $((Get-Culture).Name)))") | Out-Null
375370
if ($currentCulture -ne "English International") {
376371
$sync["ISOLanguage"].Items.Add("English International") | Out-Null

xaml/inputXML.xaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,6 @@
13941394
/>
13951395
<RadioButton x:Name="ISOmanual" Content="Select your own ISO" GroupName="Options" Margin="0,10,0,0" IsChecked="True"/>
13961396
<RadioButton x:Name="ISOdownloader" Content="Get newest ISO automatically" GroupName="Options" Margin="0,5,0,5"/>
1397-
<ComboBox x:Name="ISORelease" Visibility="Collapsed"/>
13981397
<ComboBox x:Name="ISOLanguage" Visibility="Collapsed"/>
13991398
<Button Name="WPFGetIso" Margin="2" Padding="15">
14001399
<Button.Content>

0 commit comments

Comments
 (0)