Jump to content

FireGeier

Member
  • Posts

    405
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Posts posted by FireGeier

  1. Hello zedox!

    There is something else missing in your Autounattend.xml. You need to change this:

    <RunSynchronousCommand wcm:action="add">
    <Order>120</Order>
    <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /oobe /reboot</Path>
    <Description>Restarting</Description>
    </RunSynchronousCommand>

    to this here:

    <RunSynchronousCommand wcm:action="add">
    <Order>120</Order>
    <Path>%WINDIR%\system32\sysprep\sysprep.exe /generalize /quiet /oobe /reboot</Path>
    <Description>Restarting</Description>
    </RunSynchronousCommand>

    Without generalize CopyProfile will NOT work.

    Regards,

    Martin

  2. Hello ruudboek!

    Your error is cause by a double slash, look at the following parts inside your Autounattend.xml:

    <RunSynchronousCommand wcm:action="add">
    <Path>cmd /c "FOR %i IN (C D E F G H I J K L N M O P Q R S T U V W X Y Z) DO IF EXIST %i:\AppsRoot.txt SETX AppsRoot %i:\ -m"</Path>
    <Order>1</Order>
    </RunSynchronousCommand>

    and:

    <RunSynchronousCommand wcm:action="add">
    <Order>1</Order>
    <Path>cmd /c regedit /s %appsroot%\install\default.reg</Path>
    </RunSynchronousCommand>

    Your %Appsroot% variable will looke like this for example:

    D:\

    That means your calling command looks like this for the moment for example - this is the way setup will read it:

    cmd /c regedit /s D:\\install\default.reg

    The two slashes will setup let fail!

    That means you have to remove the slash here, like this:

    cmd /c "FOR %i IN (C D E F G H I J K L N M O P Q R S T U V W X Y Z) DO IF EXIST %i:\AppsRoot.txt SETX AppsRoot %i: -m"

    Regards,

    Martin

  3. Well the workaround described on TechNet is a bit contradictorily. On the one hand it says to execute the reg add command after sysprep, which does mean after audit mode, cause you have to use sysprep to leave audit mode. On the other hand it says you could run the command in audit pass, too.

    I don't know how to leave audit mode, than.

    I'm still havin probelms with network location setting, too.

    Regards,

    Martin

  4. Hello idbirch2!

    The introduction explains, what BDD 2007 is. If you don't have it installed now, don't install it. It's not necessary to get the updates part to work.

    But you're right the guide is missing a little step here. If you don't have an Distribution Share folder already, you need to choose Create Distribution Share... from Tools menu in WSIM. And there you can choose any folder.

    Regards,

    Martin

×
×
  • Create New...