Skip to content

Commit

Permalink
26100
Browse files Browse the repository at this point in the history
  • Loading branch information
xrgzs committed May 7, 2024
1 parent 728085e commit 3a1bf35
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- w1164
- w1064
- w1032
- w11lt2464
- w10lt2164
- w10lt2132
- w10lt1964
Expand Down
27 changes: 26 additions & 1 deletion msupdate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,33 @@ switch ($MakeVersion) {
$NETScript = "https://mirror.ghproxy.com/https://raw.githubusercontent.com/adavak/Win_ISO_Patching_Scripts/master/Scripts/netfx4.8.1/script_netfx4.8.1_19041_x86.meta4"
$msstore = $true
}
"w1124h264" {
# make 11 24h2 64
$ospath = "not ready"
$UpdateFromUUP = $true
$uupid = ((Invoke-WebRequest -Uri "https://uupdump.net/known.php?q=category:w11-24h2").Links | Where-Object {$_.href -like "selectlang.php?id=*"} | Where-Object {$_.outerHTML -like "*amd64*"})[0].href.replace("selectlang.php?id=","")
$UUPScript = "https://uupdump.net/get.php?id=$uupid&pack=0&edition=updateOnly&aria2=2"
Start-Sleep -Seconds 3
$Miracast = ((Invoke-WebRequest -Uri "https://uupdump.net/getfile.php?id=$uupid&file=Microsoft-Windows-WirelessDisplay-FOD-Package-amd64.cab").Links | Where-Object {$_.outerHTML -like *microsoft.com*"})[0].href
Start-Sleep -Seconds 3
$MiracastLP = ((Invoke-WebRequest -Uri "https://uupdump.net/getfile.php?id=$uupid&file=Microsoft-Windows-WirelessDisplay-FOD-Package-amd64-zh-cn.cab").Links | Where-Object {$_.outerHTML -like *microsoft.com*"})[0].href
Start-Sleep -Seconds 3
$entgpack = ((Invoke-WebRequest -Uri "https://uupdump.net/getfile.php?id=$uupid&file=Microsoft-Windows-EditionSpecific-EnterpriseG-Package.ESD").Links | Where-Object {$_.outerHTML -like *microsoft.com*"})[0].href
Start-Sleep -Seconds 3
$msstore = $true
}
"w11lt2464" {
# make 11 ltsc2024 64
$ospath = "/系统/Windows/Win10/LTSC2024/26100.1.240406-1435.ge_release_CLIENT_ENTERPRISES_OEM_x64FRE_zh-cn.iso"
$UpdateFromUUP = $true
$uupid = ((Invoke-WebRequest -Uri "https://uupdump.net/known.php?q=category:w11-24h2").Links | Where-Object {$_.href -like "selectlang.php?id=*"} | Where-Object {$_.outerHTML -like "*amd64*"})[0].href.replace("selectlang.php?id=","")
$UUPScript = "https://uupdump.net/get.php?id=$uupid&pack=0&edition=updateOnly&aria2=2"
Start-Sleep -Seconds 3
$MultiEdition = $false
$msstore = $true
}
"w10lt2164" {
# make 10 ltsc2021 64
# make 10 ltsc2021 64
$ospath = "/系统/MSDN/NT10.0_Win10/19044_LTSC2021/zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso"
if ($true -eq $UpdateFromUUP) {
$uupid = ((Invoke-WebRequest -Uri "https://uupdump.net/known.php?q=category:w10-22h2").Links | Where-Object {$_.href -like "selectlang.php?id=*"} | Where-Object {$_.outerHTML -like "*amd64*"})[0].href.replace("selectlang.php?id=","")
Expand Down

0 comments on commit 3a1bf35

Please sign in to comment.