I am trying to import a Win10 Startmenu .xml in a sysprep unattend.xml file. There are no errors reported when the unattend xml is validated with MS WSI. Sysprep runs without an error, but the startmenu layout is not imported. Not sure if this is where I should place these powershell commands to import the layout. This is a segment of the unattend.xml file I am using.
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Sh
ell-Setup"
processorArchitecture="amd
64" publicKeyToken="31bf3856ad
364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance">
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Description>Set Powershell Execution Policy to Unrestricted</Description>
<CommandLine>powershell.ex
e Set-ExecutionPolicy Unrestricted -force</CommandLine>
<Order>3</Order>
<RequiresUserInput>false</
RequiresUs
erInput>
</SynchronousCommand>
<SynchronousCommand wcm:action="add">
<Description>Load Start Menu</Description>
<Order>4</Order>
<CommandLine>powershell.ex
e Import-StartLayout –LayoutPath C:\W10Setup\StartLayout\St
artLayout.
xml –MountPath $env:SystemDrive\</Command
Line>
<RequiresUserInput>false</
RequiresUs
erInput>
</SynchronousCommand>
</FirstLogonCommands>
</component>
</settings>
Any help or suggestions is appreciated.
Thanks
ArtW
DUH.. Turns out I had a misspelling on the startlayout .xml file that my unattend answer file was pointing at. Found it by trying to run the same command manually as you suggested.
Thanks for the help.
ArtW