The ISO is available on the VLSC - it was only the 1909 that wasn't and that was because it was the same as the previous version.
Thanks Leon.
FODs are only available from the Windows Updates site as opposed to the old versions being available as an ISO or cached on WSUS.
It is however possible to export a repository from a Windows install that has acquired the FODs from WU and then host those FODs on other installs. To do this requires using DISM like so:
Deployment Image Servicing and Management tool
Version: 10.0.19041.1
Image Version: 10.0.19041.264
/Export-Source {/CapabilityName:<name_in_image> | /Recipe:<path_to_recipe_file>}
/Source:<source> /Target:<target> [/IncludeImageCapabilities]
Export a set of capabilities into a new repository.
Use the /CapabilityName to specify the capability you would like to
export. Multiple /CapabilityName arguments can be used. You can use /Recipe
instead of /CapabilityName to specify multiple capabilities at a time.
Use the /Source argument to specify the location of the source repository.
Use the /Target to specify the location of the new repository.
Use the /IncludeImageCapabilities to export image capabilities into the
new repository.
Examples:
Dism /Image:C:\test\offline /Export-Source /Source:C:\test\source
/Target:C:\test\target /CapabilityName:Language.Basic~~~en-US~0.0.1.0
Dism /Image:C:\test\offline /Export-Source /Source:C:\test\source
/Target:C:\test\target /Recipe:C:\test\recipe\recipe.xml
I'm stuck wondering what I should enter for the Source parameter.