mirror of
https://github.com/rbalsleyMSFT/FFU.git
synced 2026-06-14 02:09:35 -06:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e95ff92b1 | |||
| d4274d54d2 | |||
| aee33a6a4b | |||
| 25a0928195 |
@@ -395,7 +395,7 @@ param(
|
|||||||
[string]$ExportConfigFile,
|
[string]$ExportConfigFile,
|
||||||
[bool]$UpdateADK = $true
|
[bool]$UpdateADK = $true
|
||||||
)
|
)
|
||||||
$version = '2505.1'
|
$version = '2505.2'
|
||||||
|
|
||||||
# If a config file is specified and it exists, load it
|
# If a config file is specified and it exists, load it
|
||||||
if ($ConfigFile -and (Test-Path -Path $ConfigFile)) {
|
if ($ConfigFile -and (Test-Path -Path $ConfigFile)) {
|
||||||
@@ -2529,7 +2529,7 @@ function Get-KBLink {
|
|||||||
# Extract the first KB article ID from the HTML content and store it globally
|
# Extract the first KB article ID from the HTML content and store it globally
|
||||||
# Edge and Defender do not have KB article IDs
|
# Edge and Defender do not have KB article IDs
|
||||||
if ($Name -notmatch 'Defender|Edge') {
|
if ($Name -notmatch 'Defender|Edge') {
|
||||||
if ($results.Content -match '>\s*([^\(<]+)\(KB(\d+)\)\s*<') {
|
if ($results.Content -match '>\s*([^\(<]+)\(KB(\d+)\)(?:\s*\([^)]+\))*\s*<') {
|
||||||
$kbArticleID = "KB$($matches[2])"
|
$kbArticleID = "KB$($matches[2])"
|
||||||
$global:LastKBArticleID = $kbArticleID
|
$global:LastKBArticleID = $kbArticleID
|
||||||
WriteLog "Found KB article ID: $kbArticleID"
|
WriteLog "Found KB article ID: $kbArticleID"
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ $LogFileName = 'ScriptLog.txt'
|
|||||||
$USBDrive = Get-USBDrive
|
$USBDrive = Get-USBDrive
|
||||||
New-item -Path $USBDrive -Name $LogFileName -ItemType "file" -Force | Out-Null
|
New-item -Path $USBDrive -Name $LogFileName -ItemType "file" -Force | Out-Null
|
||||||
$LogFile = $USBDrive + $LogFilename
|
$LogFile = $USBDrive + $LogFilename
|
||||||
$version = '2505.1'
|
$version = '2505.2'
|
||||||
WriteLog 'Begin Logging'
|
WriteLog 'Begin Logging'
|
||||||
WriteLog "Script version: $version"
|
WriteLog "Script version: $version"
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
**Update 2025-08-01:** [2507.2 UI Preview is now available](https://github.com/rbalsleyMSFT/FFU/releases) - click the link to get the build and check out the Youtube walk-through.
|
||||||
|
|
||||||
# Using Full Flash Update (FFU) files to speed up Windows deployment
|
# Using Full Flash Update (FFU) files to speed up Windows deployment
|
||||||
|
|
||||||
What if you could have a Windows image (Windows 10/11 or Server) that has:
|
What if you could have a Windows image (Windows 10/11 or Server) that has:
|
||||||
@@ -18,10 +20,6 @@ And the best part: it takes less than two minutes to apply the image, even with
|
|||||||
|
|
||||||
The Full-Flash update (FFU) process can automatically download the latest release of Windows 11, the updates mentioned above, and creates a USB drive that can be used to quickly reimage a machine.
|
The Full-Flash update (FFU) process can automatically download the latest release of Windows 11, the updates mentioned above, and creates a USB drive that can be used to quickly reimage a machine.
|
||||||
|
|
||||||
# Updates
|
|
||||||
|
|
||||||
2412.1 has been released! Check out the changes in the [Change Log](ChangeLog.md)
|
|
||||||
|
|
||||||
# Getting Started
|
# Getting Started
|
||||||
|
|
||||||
- Download the latest [release](https://github.com/rbalsleyMSFT/FFU/releases)
|
- Download the latest [release](https://github.com/rbalsleyMSFT/FFU/releases)
|
||||||
|
|||||||
Reference in New Issue
Block a user