frandepa
New Member
- Messages
- 1
- Reaction score
- 0
- Points
- 1
hi all.
i have a strange problem with my new task sequence for Windows 10 22H2.
SAME task sequence with Windows 10 20H2 work fine without problem....
i try to explicate my scenario / TS
i have one simple task sequence with:
windows PE mode
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Basic-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Handwriting-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-OCR-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Speech-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-TextToSpeech-it-it-Package~31bf3856ad364e35~amd64~~.cab"
microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab
.PS1
$currentLocation = Split-Path -Parent $MyInvocation.MyCommand.Path;
Enable-WindowsOptionalFeature -Online -FeatureName NetFx3 -Source $currentLocation -LimitAccess -All
when the task sequence reaches the install application step the task sequence times out, stops at the first Visual C++ step, but the same problem also happens with any other software. (acrobat, notepad++, etc, etc... )if I delete the unattended.xml file from the task sequence then the task sequence continues to the end without problems.
same task sequence with Windows 10 20H2 work without problem
anyone with the same problem?
any help is appreciated
grazie !!!
content of file.xml
*********************************************************************************
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<ProtectYourPC>3</ProtectYourPC>
</OOBE>
</component>
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>0410:00000410;0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>it-IT</UILanguage>
<UserLocale>it-IT</UserLocale>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>0410:00000410;0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>it-IT</UILanguage>
<UserLocale>it-IT</UserLocale>
</component>
</settings>
</unattend>
*********************************************************************************
i have a strange problem with my new task sequence for Windows 10 22H2.
SAME task sequence with Windows 10 20H2 work fine without problem....
i try to explicate my scenario / TS
i have one simple task sequence with:
windows PE mode
- format e partition disk
- install OS - with answer file.xml (W10 22H2) i can attach .xml file.
- install language pack and FOD (installed during winpe process) file from original DVD (SW_DVD9_NTRL_Win_10_2004_32_64_ARM64_MultiLang_LangPackAll_LIP_X22-21307.ISO) Same DVD for Windows 10 20H2 --> 21H2 etc...
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Basic-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Handwriting-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-OCR-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-Speech-it-it-Package~31bf3856ad364e35~amd64~~.cab"
Dism /Image:C:\ /Add-Package /PackagePath:"Microsoft-Windows-LanguageFeatures-TextToSpeech-it-it-Package~31bf3856ad364e35~amd64~~.cab"
- apply network settings (join on my domain)
- apply device driver: (simple device: virtual machine hyperV)
- setup windows and configuration manager and then reboot
- enable net framework (extract file from Windows 22H2 - maybe same framework for 20H2/21H2) normal package - install from .ps1
microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab
.PS1
$currentLocation = Split-Path -Parent $MyInvocation.MyCommand.Path;
Enable-WindowsOptionalFeature -Online -FeatureName NetFx3 -Source $currentLocation -LimitAccess -All
- Standby null (cmd.exe /c powercfg -x -standby-timeout-ac 0)
- Install application... in this case Visual C++
- etc etc....
when the task sequence reaches the install application step the task sequence times out, stops at the first Visual C++ step, but the same problem also happens with any other software. (acrobat, notepad++, etc, etc... )if I delete the unattended.xml file from the task sequence then the task sequence continues to the end without problems.
same task sequence with Windows 10 20H2 work without problem
anyone with the same problem?
any help is appreciated
grazie !!!
content of file.xml
*********************************************************************************
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<ProtectYourPC>3</ProtectYourPC>
</OOBE>
</component>
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>0410:00000410;0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>it-IT</UILanguage>
<UserLocale>it-IT</UserLocale>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>0410:00000410;0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>it-IT</UILanguage>
<UserLocale>it-IT</UserLocale>
</component>
</settings>
</unattend>
*********************************************************************************