User Profiles - Relocate to another Partition or Disk

How to Relocate User Profiles to another Partition or Disk in Windows 8

information   Information
The method described in this tutorial allows relocating user profiles and folders already while installing Windows 8, before any user accounts are created, as well as after installation on an already installed system.

The advantage of this method is that it changes some internal Windows 8 environment variables, being a “Do it once and forget” procedure. Changing the variables takes care of all existing and future user profiles, locating them when created to selected drive or partition. The method is fail proof and reversible.

When Windows 8 is installed, 5 or 6 system folders are created depending on chosen bit-version:
  • PerfLogs (Performance Logs), where Windows stores performance and reliability logs
  • Program Files, where applications and software are installed. Windows x86 (32-bit) stores all applications here, Windows x64 (64-bit) only native 64-bit applications
  • Program Files (x86), exists only in Windows x64. All non-x64 applications are stored here
  • Windows, which contains core operating system files and drivers
  • ProgramData, where some applications store application and user specific settings and configuration files.
  • Users. This is the “home” of all user profiles. When a new user account is created and this new user logs in first time, Windows creates a set of user specific folders (Users\Username)

Microsoft does not recommend relocating, moving ProgramData, Program Files, Program Files (x86) and Windows folders. Too much is depending on information and data stored on these folders. However, there's simply nothing preventing us to move the Users folder. In this tutorial we show how to move (relocate) the Users folder by changing an internal Windows Environment Variable.

Moving Users folder can save a lot of space on system disk. Pictures, mp3’s videos, documents and so on, a user folder with its subfolders can be tens, sometimes hundreds of gigabytes.

Personally, when installing Windows 8 I always use Audit Mode to relocate Users folder, leaving system drive only for Windows and applications.



Note   Note
Screenshots from pre-release version Windows 8 Consumer Preview. Actual Windows 8 has different colors but the functions are the same, tutorial can be used as it is.



warning   Warning

An upgraded Windows cannot be sysprepped. As this method is based in sysprepping, this tutorial is valid only for Windows setups which have not been upgraded.

This means that if you have for instance in-place upgraded Vista or Seven to Eight you cannot sysprep and this tutorial cannot be used in your case. The same applies if you have upgraded Windows 8 to Windows 8 Pro or Windows 8 to 8.1.

Notice that a repair install is also an upgrade install, so if you have ever done a repair install (= in-place upgrade to same edition), you cannot sysprep.

When sysprepping an existing Windows setup, it only works if the Windows 8 was installed clean and has never been upgraded or repaired using repair install, or if it is the original pre-installed Windows 8

Although I have repeatedly told that relocating ProgramData will cause Windows Store and Apps as well as PC Settings not to function, people keep doing it using the method described in this tutorial.

DO NOT RELOCATE PROGRAMDATA! YOUR WINDOWS STORE AND APPS WILL NOT WORK IF PROGRAMDATA IS MOVED FROM ITS DEFAULT LOCATION.




1.Audit Mode

1.1. Boot to Audit Mode when installing Windows 8


(If you have already installed Windows 8, continue from step 1.2.)

Start Windows 8 installation normally.

When installation after a reboot or two is completed and Windows 8 comes to Personalize page (see screenshot below) press CTRL + SHIFT + F3 (press and hold down CTRL and SHIFT, press F3 still holding CTRL and SHIFT down, release all three keys).


Win8_RelocateUsers_012.png

DO NOT ENTER PC NAME HERE OR CLICK NEXT! Just press CTRL + SHIFT + F3.

Your computer reboots now. Don’t panic, it’s just doing what it really should do. Windows 8 starts now in so called Audit Mode, using built-in administrator account to let you to modify Windows before any user profiles and user specific folders are created.

Continue from step 2.


1.2. Boot to Audit Mode from existing Windows 8 installation

First you need to open Command Prompt using built-in administrative account: hover pointer over bottom left corner of the desktop, right click to open Start Menu , select Command Prompt (Admin):

Win8_RelocateUsers_005.png Win8_RelocateUsers_006.png

Command Prompt window opens. Type this to command prompt:
Code:
[B]C:\Windows\System32\Sysprep\Sysprep.exe /audit /reboot[/B]

Win8_RelocateUsers_015.png

Hit Enter.Windows reboots now to Audit Mode, "thinking" it's been started first time. Text Preparing can be seen on screen.

If you are interested to know more about Audit Mode, here are some links for you to read:




2. Audit Mode

Windows has now booted in Audit Mode using built-in administrator account, and you should see Metro interface. Click Desktop to enter classic Windows desktop:

Win8_RelocateUsers_003.png

To start, click Cancel to close System Preparation Tool:

Win8_RelocateUsers_004.png


If you don’t have a second internal hard disk or you have not created and formatted an extra partition on your system disk, you need first to create one. Notice that the drive or partition don't have to be empty, but especially if relocating on an existing installation it must be big enough to allow Users folder to be moved there. When we sysprep with answer file on next step these two folders are physically moved to new location.

If you already have a formatted second HD or partition, you are ready to go.


2.1. Creating an answer file (script) for System Preparation Tool

Audit Mode lets us to start Windows without creating any user accounts. At the moment we are using the built-in administrator account. Your own accounts are created later.

We are going to use System Preparation Tool (sysprep) to run an XML-script (so called Answer file) which modifies the Windows registry and settings as we want to, relocating Users folder to another partition, E: in this example, by changing a so called Windows Environment Variable. You can of course use any internal drive you want to.

Extensible Markup Language (XML) is a set of rules for encoding documents in machine readable form.
To make changes to Windows registry, we will now create a script in XML and run it with sysprep.

Open Windows Notepad text editor (press Win + R, type Notepad, hit Enter). Type the following script, or copy it from here and paste to Notepad (please do not forget to read the notes below code lines 4, 6 and 11 regarding said lines):


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3. <settings pass="oobeSystem">
  4. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=[noparse]"http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"[/noparse]>
    Note   Note
    (If you are installing Windows x64 (64-bit), value prosessorArchitecture should be amd64​, also on Intel processors. For x86 (32-bit) it should be x86.)

  5. <FolderLocations>
  6. <ProfilesDirectory>e:\Users</ProfilesDirectory>
    Note   Note
    In this example the new location of Users would be E:\Users. Change the drive letter according your needs.

  7. </FolderLocations>
  8. </component>
  9. </settings>
  10. [noparse]<cpi:eek:fflineImage[/noparse] cpi:source="wim:F:/sources/install.wim#Windows 8" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    Note   Note
    (Change the drive letter in wim:F: to that of your CD/DVD drive, USB stick or virtual drive containing your Windows 8 installation media (DVD/ISO). Notice that installation media has to be available to system when running sysprep. Change Windows version accordingly, Windows 8, Windows 8 Pro, Windows 8.1 or Windows 8.1 Pro.

  11. </unattend>
(Please leave the row numbers out when typing or copying the above code. Answer file generated with Windows System Image Manager).

If you are installing Windows 8 PRO x64 from CD/DVD/USB F: and relocating Users to E: you don’t have to change anything, you can use the script as it is.

Select Save As from Notepad’s File menu. Select Save as type: All Files. Name the file as you want, add .xml extension to the filename. Save the script to the root of any drive:

SaveAs.png

Alternatively you can download the answer file here: View attachment relocate.rar

2.2. Using System Preparation Tool

Open the Start Menu (Win + X), select Command Prompt (Admin).

First stop the Windows Media Player Network Sharing Service (WMPNetworkSvc) by giving the following command:
Code:
net stop WMPNetworkSvc

When the service has stopped, type the following to the command prompt and press
Enter to move to the right folder:
Code:
cd c:\Windows\System32\Sysprep

Win8_RelocateUsers_007.png

Now type the following and press Enter (notice the name and path of the script we created above, change it if needed. I saved answer file on E so the path is E:\relocate.xml):
Code:
Sysprep.exe /audit /reboot /unattend:E:\relocate.xml

Win8_RelocateUsers_008.png

You should now see System Preparation Tool dialog telling it is working on our script:

Win8_RelocateUsers_010.png

Let it run, don’t touch mouse or keyboard now. When System Preparation Tool is ready, Windows must and will reboot. It reboots back to Audit Mode.


2.3. Exiting Audit Mode

To continue Windows installation we have to exit Audit Mode and reboot. After reboot you’ll land back on Metro interface. Click Desktop to enter classic Windows desktop, click OK on System Preparation Tool dialog to boot normally in OOBE i.e. normal mode.

Before clicking OK, check that System Cleanup Action is set to OOBE, and Shutdown Options set to Reboot:

Win8_RelocateUsers_009.png



3. Finalizing installation

Finalize Windows installation.

If you did this from an existing Windows installation, you will notice that for your Windows this is as if it were the first time Windows was booted i.e you are back on OOBE boot, inserting product key and personalizing Windows. It also means that you have to enter so called initial user. In this case Windows does not accept any of the users created earlier, whether local or Microsoft accounts; instead you need to create a new user.

An example from this PC I am using now: I had already created two users and installed software when I decided to do sysprep to relocate Users. I had a local account for me and an Microsoft account using my email address. After finalizing sysprep, I needed to create a third user Test because system does not let me to use either Kari (local account) or Kari (Microsoft account) usernames because those accounts already existed on this PC.

So I created user Test (local), then from Welcome screen logged in as Kari (Microsoft account) and simply deleted the new Test account which I had just created. An extra step, small annoyance but there's nothing to do to avoid it.

When Windows finally boots first time to Start Screen you will see that Users folder is now located on the new drive or partition with all its subfolders.

When you check your system drive [noparse](C:) still [/noparse]contains Users folder. The old, original Users on C: can contain some Windows Store information that may not be moved, so let the old Users folder stay on C:. It will no longer grow, all new user data will be stored on a new location, but it is essential it remains on C:. You can hide it if you want, you are never again going to need it.

Notice that Users folder is not created on or moved to new location when you return to Audit Mode after running sysprep. Relocation will first happen when you exit Audit Mode and boot to OOBE (Welcome) mode to continue installation. If done on an existing system the first OOBE boot after sysprepping can take quite a long time, depending on how big those folders are that sysprep is physically moving to new location.

Remember also that when you create a new user profile the user folders are not created before the new user logs in first time.

That’s it, folks! Welcome to the Windows 8:


Win8_RelocateUsers_016.png

Win8_RelocateUsers_017.png

Now create a system image and you wont have to ever again remember jumplists and links everytime you restore the system to earlier point or system image. User account folders are now permanently moved to another drive, all new user profiles are automatically created on this new location and your system drive won’t be full so soon.

Thanks for reading.

Written and published on 02[SUP]nd[/SUP] of March 2012
Edited and updated on 6[SUP]th[/SUP] of February 2013
Edited, answer file's validity checked on 14[SUP]th[/SUP] of April 2013
Added instructions for Windows 8.1 Pro preview on 29th of June 2013


Kari



 

Attachments

  • Win8_RelocateUsers_014.png
    Win8_RelocateUsers_014.png
    16.2 KB · Views: 1,542
  • 2013-06-29_122425.png
    2013-06-29_122425.png
    6.4 KB · Views: 2,069
  • 2013-06-29_122904.png
    2013-06-29_122904.png
    7 KB · Views: 1,857
Last edited by a moderator:
Dear Kari

Yesterday I started a new setup that's why you will find the date 03-06-2015. I am facing this problem from a week.

2015-06-03 17:27:40, Info SYSPRP ========================================================
2015-06-03 17:27:40, Info SYSPRP === Beginning of a new sysprep run ===
2015-06-03 17:27:40, Info SYSPRP ========================================================
2015-06-03 17:27:40, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:40
2015-06-03 17:27:40, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-03 17:27:40, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:27:40, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:27:40, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:27:40, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:27:40, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:27:40, Info [0x0f00d7] SYSPRP WinMain:pre-validing 'cleanup' internal providers.
2015-06-03 17:27:40, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:27:40, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:27:40, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:27:40, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:27:40, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:27:40, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:27:40, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:27:40, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:27:40, Info [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:27:40, Info [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [c:\relocate.xml]...
2015-06-03 17:27:40, Error [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [c:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:27:40, Error [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:40, Error [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:44, Info [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:27:44, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:27:44, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:44
2015-06-03 17:28:22, Info SYSPRP ========================================================
2015-06-03 17:28:22, Info SYSPRP === Beginning of a new sysprep run ===
2015-06-03 17:28:22, Info SYSPRP ========================================================
2015-06-03 17:28:22, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:22
2015-06-03 17:28:22, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-03 17:28:22, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:28:22, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:28:22, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:28:22, Info [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-03 17:28:33, Error [0x0f0043] SYSPRP WinMain:The sysprep dialog box returned FALSE
2015-06-03 17:28:33, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:28:33, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:33
2015-06-03 17:29:55, Info SYSPRP ========================================================
2015-06-03 17:29:55, Info SYSPRP === Beginning of a new sysprep run ===
2015-06-03 17:29:55, Info SYSPRP ========================================================
2015-06-03 17:29:55, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:29:55
2015-06-03 17:29:55, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 17:29:55, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:29:55, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:29:55, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:29:55, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:29:55, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:29:55, Info [0x0f00d7] SYSPRP WinMain:pre-validing 'cleanup' internal providers.
2015-06-03 17:29:55, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:29:55, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:29:55, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:29:55, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:29:55, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:29:55, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:29:55, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:29:55, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:29:55, Info [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:29:55, Info [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 17:29:55, Error [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:29:55, Error [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:29:55, Error [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:30:04, Info [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:30:04, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:30:04, Info [0x0f004d] SYSPRP The time is now 2015-06-03 17:30:04
2015-06-03 18:11:57, Info SYSPRP ========================================================
2015-06-03 18:11:57, Info SYSPRP === Beginning of a new sysprep run ===
2015-06-03 18:11:57, Info SYSPRP ========================================================
2015-06-03 18:11:57, Info [0x0f004d] SYSPRP The time is now 2015-06-03 18:11:57
2015-06-03 18:11:57, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 18:11:57, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 18:11:57, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 18:11:57, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 18:11:57, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 18:11:57, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 18:11:57, Info [0x0f00d7] SYSPRP WinMain:pre-validing 'cleanup' internal providers.
2015-06-03 18:11:57, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 18:11:57, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 18:11:57, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 18:11:57, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 18:11:57, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 18:11:57, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 18:11:57, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 18:11:57, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 18:11:57, Info [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 18:11:57, Info [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 18:11:57, Error [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 18:11:57, Error [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 18:11:57, Error [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 18:12:14, Info [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 18:12:14, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 18:12:14, Info [0x0f004d] SYSPRP The time is now 2015-06-03 18:12:14


Waiting for your reply
Thank you vary much for helping me
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
I will look at this, might take a while.
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
OK, quite clear user error according to the log file:
2015-06-04_11h15_19.png

When Sysprep starts searching for the answer file C:\relocate.xml (yellow highlight in above screenshot) it cannot find it (red highlight). This means that the file C:\relocate.xml does not exist and cannot be found when Sysprep looks for it.

Check that you have not made a typo when saving the answer file. A quite normal typo which often goes unnoticed is that you have accidentally given a wrong file extension, for instance naming the file as relocate.xlm instead of relocate.xml.

In rare occasions this same error can be shown if the answer file contains customizations like PC name, usernames, custom locations and so on, and any of these names contains characters which are not allowed in names (>, <, &, ; and so on). All names given in answer file should only use upper and lower case letters, numbers, dot, hyphen and underscore.

Also, do not save the answer file on the root of the C: drive. Any other drive is OK, I usually save it to a flash drive or to the drive to which I am relocating the Users folder, in your case D:.

Kari
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
A fatal error occurred while trying to sysprep the machine

Hi Kari
I re-checked and confirmed the file extensions and please find the New Uploaded file which I have done again just now.

Once again Thank you for your help and support for solving this problem.

Still the same error.
Waiting for your reply
 

Attachments

  • setupact.log
    67.1 KB · Views: 181

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
Hi Kari
Just Now I tried again by placing the relocate.xml file in D drive and tested found the same error.

Thanks
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
Post your answer file, the relocate.xml here. I need to check and test it.
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Hi Kari

Kindly find the Relocate.XML file below and Setupact text file.

Relocate.XML
Code:
<?xml version="1.0" encoding="utf-8?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchiture="amd64"
publicKeyToken="31df3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcn="[URL]http://schemas.microsoft.com/WMIConfig/2002/State[/URL]"
xmlns:xsi="[URL]http://www.w3.org/2001/XMLSchema-instance[/URL]">
<FolderLocations>
<ProfilesDirectory>D:\Users</ProfilesDirectory>
<ProgramData>D:\ProgramData\ProgramData>
</FolderLocations>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:E:/sources/install.wim#Windows 8" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

setupact
2015-06-03 17:27:40, Info                  SYSPRP ========================================================
2015-06-03 17:27:40, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:27:40, Info                  SYSPRP ========================================================
2015-06-03 17:27:40, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:40
2015-06-03 17:27:40, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-03 17:27:40, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:27:40, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:27:40, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 17:27:40, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:27:40, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:27:40, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:27:40, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:27:40, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:27:40, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [c:\relocate.xml]...
2015-06-03 17:27:40, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [c:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:27:40, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:40, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:44, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:27:44, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:27:44, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:44
2015-06-03 17:28:22, Info                  SYSPRP ========================================================
2015-06-03 17:28:22, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:28:22, Info                  SYSPRP ========================================================
2015-06-03 17:28:22, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:22
2015-06-03 17:28:22, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-03 17:28:22, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:28:22, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:28:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:28:22, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-03 17:28:33, Error      [0x0f0043] SYSPRP WinMain:The sysprep dialog box returned FALSE
2015-06-03 17:28:33, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:28:33, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:33
2015-06-03 17:29:55, Info                  SYSPRP ========================================================
2015-06-03 17:29:55, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:29:55, Info                  SYSPRP ========================================================
2015-06-03 17:29:55, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:29:55
2015-06-03 17:29:55, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 17:29:55, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:29:55, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:29:55, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 17:29:55, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:29:55, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:29:55, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:29:55, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:29:55, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:29:55, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 17:29:55, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:29:55, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:29:55, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:30:04, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:30:04, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:30:04, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:30:04
2015-06-03 18:11:57, Info                  SYSPRP ========================================================
2015-06-03 18:11:57, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 18:11:57, Info                  SYSPRP ========================================================
2015-06-03 18:11:57, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 18:11:57
2015-06-03 18:11:57, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 18:11:57, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 18:11:57, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 18:11:57, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 18:11:57, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 18:11:57, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 18:11:57, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 18:11:57, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 18:11:57, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 18:11:57, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 18:11:57, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 18:11:57, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 18:11:57, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 18:12:14, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 18:12:14, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 18:12:14, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 18:12:14
2015-06-04 17:47:48, Info                  SYSPRP ========================================================
2015-06-04 17:47:48, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 17:47:48, Info                  SYSPRP ========================================================
2015-06-04 17:47:48, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:47:48
2015-06-04 17:47:48, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 17:47:48, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 17:47:48, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 17:47:48, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 17:47:48, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-04 17:52:31, Error      [0x0f0043] SYSPRP WinMain:The sysprep dialog box returned FALSE
2015-06-04 17:52:31, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 17:52:31, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:52:31
2015-06-04 17:57:51, Info                  SYSPRP ========================================================
2015-06-04 17:57:51, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 17:57:51, Info                  SYSPRP ========================================================
2015-06-04 17:57:51, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:57:51
2015-06-04 17:57:51, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 17:57:51, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 17:57:51, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 17:57:51, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 17:57:51, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 17:57:51, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 17:57:51, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 17:57:51, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 17:57:51, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 17:57:51, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 17:57:51, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [D:\relocate.xml]...
2015-06-04 17:57:51, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [D:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 17:57:51, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 17:57:51, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 17:58:09, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 17:58:09, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 17:58:09, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:58:09
2015-06-04 18:53:53, Info                  SYSPRP ========================================================
2015-06-04 18:53:53, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 18:53:53, Info                  SYSPRP ========================================================
2015-06-04 18:53:53, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:53:53
2015-06-04 18:53:53, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 18:53:53, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 18:53:53, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 18:53:53, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 18:53:53, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 18:53:53, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:53:53, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 18:53:53, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 18:53:53, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 18:53:53, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 18:53:53, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-04 18:53:53, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 18:53:53, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 18:53:53, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 18:53:57, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 18:53:57, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 18:53:57, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:53:57
2015-06-04 18:56:22, Info                  SYSPRP ========================================================
2015-06-04 18:56:22, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 18:56:22, Info                  SYSPRP ========================================================
2015-06-04 18:56:22, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:56:22
2015-06-04 18:56:22, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 18:56:22, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 18:56:22, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 18:56:22, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 18:56:22, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 18:56:22, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:56:22, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 18:56:22, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 18:56:22, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 18:56:22, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 18:56:22, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [F:\relocate.xml]...
2015-06-04 18:56:22, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [F:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 18:56:22, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 18:56:22, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 18:56:25, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 18:56:25, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 18:56:25, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:56:25
2015-06-04 22:27:05, Info                  SYSPRP ========================================================
2015-06-04 22:27:05, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:27:05, Info                  SYSPRP ========================================================
2015-06-04 22:27:05, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:27:05
2015-06-04 22:27:05, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 22:27:05, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:27:05, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 22:27:05, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:27:05, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-04 22:27:45, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:27:45, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:27:45, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:45, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:27:45, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:27:46, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:27:46, Info                  SYSPRP SysprepSearchForUnattend: No unattend file was specified or located; skipping unattend generalize pass.
2015-06-04 22:27:46, Info       [0x0f00ac] SYSPRP WinMain:Processing 'cleanup' external provider request.
2015-06-04 22:27:46, Info       [0x0f006c] SYSPRP RunExternalDlls:Running DLLs listed in registry for phase 3
2015-06-04 22:27:46, Info       [0x0f008a] SYSPRP RunRegistryDlls:Retrieved section name for this phase as Cleanup
2015-06-04 22:27:46, Warning    [0x0f008f] SYSPRP RunRegistryDlls:Registry key is either empty or malformed: SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\SysPrepExternal\Cleanup
2015-06-04 22:27:46, Info       [0x0f003f] SYSPRP WinMain:Processing 'cleanup' internal provider request.
2015-06-04 22:27:46, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:27:46, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::Execute: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:46, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: After sorting, providers will be excuted in this order:
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Sysprep-SpOpk, order: 100d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SQMApi, order: 300d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-EventLog, order: 400d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-LpkSetup, order: 500d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SystemMaintenanceService-Core, order: 600d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-MediaPlayer-DRM, order: 700d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SystemRestore-Main, order: 800d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Shell-Setup, order: 900d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-ErrorReportingCore, order: a00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:WindowsSearchEngine, order: b00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-IE-Sysprep, order: c00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Sysprep-SpNet, order: d00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TaskScheduler-Service, order: e00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Cryptography, order: f00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-UXInit, order: 1000d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-COM-DTC-Runtime, order: 1100d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TapiSetup, order: 1200d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TabletPC-InputPersonalization, order: 1300d
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Sysprep-SpOpk
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SQMApi
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SqmSysprepCleanup' in sqmapi.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SqmSysprepCleanup' from sqmapi.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-EventLog
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'EvtIntSysprepCleanup' in C:\Windows\System32\wevtapi.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'EvtIntSysprepCleanup' from C:\Windows\System32\wevtapi.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-LpkSetup
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Generalize_MUILangCleanup' in C:\Windows\System32\LangCleanupSysprepAction.dll; executing it
2015-06-04 22:27:46, Info                  SYSPRP Sysprep_Generalize_MUILangCleanup Start.
2015-06-04 22:27:46, Info                  SYSPRP Disabling CMF cache SUCCEEDED
2015-06-04 22:27:46, Info                  SYSPRP Removing scheduled task for running lpremove.exe and all related data
2015-06-04 22:27:46, Info                  SYSPRP Removing scheduled task for lpremove.exe succeeed
2015-06-04 22:27:46, Info                  SYSPRP Removing MUIUnattend-OOBE handshake value
2015-06-04 22:27:46, Info                  SYSPRP MUIUnattend-OOBE handshake value is not present on the system
2015-06-04 22:27:46, Info                  SYSPRP Sysprep_Generalize_MUILangCleanup End.
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Generalize_MUILangCleanup' from C:\Windows\System32\LangCleanupSysprepAction.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SystemMaintenanceService-Core
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'PfSvSysprepCleanup' in C:\Windows\System32\sysmain.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'PfSvSysprepCleanup' from C:\Windows\System32\sysmain.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-MediaPlayer-DRM
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep' in drmv2clt.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep' from drmv2clt.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SystemRestore-Main
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SysprepCleanup' in srclient.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SysprepCleanup' from srclient.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Shell-Setup
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_Shell' in C:\Windows\System32\shsetup.dll; executing it
2015-06-04 22:27:47, Info                         [shsetup] Sysprep_Cleanup_Shell entered
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SkipMachineOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SkipUserOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideEULAPage' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'NetworkLocation' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'ProtectYourPC' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideWirelessSetupInOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideOnlineAccountScreens' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideLocalAccountScreen' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideOEMRegistrationScreen' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'OEMAppId' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SysprepUserSid' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'MediaBootInstall' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedProductKey' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedEula' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedLanguageSelection' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupSQMOptIn' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendCreatedUser' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendSetTimeZone' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendSetAutologon' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SysprepSetVMMode' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'AutoAdminLogon' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'DefaultUserName' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'DefaultDomainName' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'HideWizard' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Accent' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-18'
2015-06-04 22:27:47, Info                         [shsetup] SHCreateItemFromParsingName failed on 'C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent' (0x80070002)
2015-06-04 22:27:47, Info                         [shsetup] SHCreateItemFromParsingName failed on 'C:\Windows\system32\config\systemprofile\AppData\Local\Temp' (0x80070002)
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x8000ffff
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-19'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-19'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\LocalService\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x8000ffff
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-20'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-20'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x00000000
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-21-4191472449-1031029750-3626055614-500'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-21-4191472449-1031029750-3626055614-500'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Users\Administrator\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x00000000
2015-06-04 22:27:47, Info                         [shsetup] SanitizeDeskBands entered
2015-06-04 22:27:47, Info                         [shsetup] SanitizeDeskBands exit
2015-06-04 22:27:47, Info                         [shsetup] PrimeStartMenuShortcuts entered
2015-06-04 22:27:48, Info                         [shsetup] PrimeStartMenuShortcuts exit
2015-06-04 22:27:48, Info                         [shsetup] CleanUpImmersiveLauncher: layout successfully exported to xml
2015-06-04 22:27:48, Info                         [shsetup] Sysprep_Cleanup_Shell exit
2015-06-04 22:27:48, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_Shell' from C:\Windows\System32\shsetup.dll without error
2015-06-04 22:27:48, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-ErrorReportingCore
2015-06-04 22:27:48, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'WerSysprepCleanup' in wer.dll; executing it
2015-06-04 22:27:48, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'WerSysprepCleanup' from wer.dll without error
2015-06-04 22:27:48, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component WindowsSearchEngine
2015-06-04 22:27:48, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'MSSrch_SysPrep_Cleanup' in C:\Windows\System32\mssrch.dll; executing it
2015-06-04 22:27:48, Info                  SYSPRP MSS: MSSrch_SysPrep_Cleanup _DisableService returned successfully.
2015-06-04 22:27:48, Info                  SYSPRP MSS: MSSrch_SysPrep_Cleanup _CreateBlockingRegKey returned successfully.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Stopping service WSearch and its dependents.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Service WSearch has no active dependents.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Stopping service WSearch.
2015-06-04 22:27:48, Info                  SYSPRP MSS: _StopService status checking loop 0 round, QueryServiceStatus return TRUE, the status is 0x3
2015-06-04 22:27:49, Info                  SYSPRP MSS: _StopService status checking loop 1 round, QueryServiceStatus return TRUE, the status is 0x1
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'MSSrch_SysPrep_Cleanup' from C:\Windows\System32\mssrch.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-IE-Sysprep
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_IE' in C:\Windows\System32\iesysprep.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_IE' from C:\Windows\System32\iesysprep.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Sysprep-SpNet
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Net' in C:\Windows\System32\spnet.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0008] SYSPRP spnet.dll::IsDomainMember:This machine is not joined to a domain
2015-06-04 22:27:49, Info       [0x0f000e] SYSPRP spnet.dll::UnjoinNetworkDomain:Not a domain member, nothing to do
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Net' from C:\Windows\System32\spnet.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TaskScheduler-Service
2015-06-04 22:27:49, Info       [0x0f00c6] SYSPRP ActionPlatform::DeleteValue: Deleting registry value HashingCompleted under key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Cryptography
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'CryptoSysPrep_Clean' in C:\Windows\system32\capisp.dll; executing it
2015-06-04 22:27:49, Info                         capisp.dll::DisableAdministratorIfApplicable disabled the admin account.
2015-06-04 22:27:49, Info                         capisp.dll::CryptoSysPrep_Clean: returning 0
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'CryptoSysPrep_Clean' from C:\Windows\system32\capisp.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-UXInit
2015-06-04 22:27:49, Info       [0x0f00c0] SYSPRP ActionPlatform::DeleteFilePattern: Deleting file(s) * under the directory C:\Windows\Resources\Themes\aero\VSCache\
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-COM-DTC-Runtime
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SysPrepDtcCleanup' in C:\Windows\system32\msdtcprx.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SysPrepDtcCleanup' from C:\Windows\system32\msdtcprx.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TapiSetup
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'TapiSysPrepClean' in C:\Windows\System32\tapisysprep; executing it
2015-06-04 22:27:49, Warning                      TapiSysPrep.dll:RetainTapiLocations:RegQueryValueEx() returned 2
2015-06-04 22:27:49, Info                         TapiSysPrep.dll:RetainTapiLocations:returning 1
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'TapiSysPrepClean' from C:\Windows\System32\tapisysprep without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TabletPC-InputPersonalization
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_IPS' in C:\Program Files\Common Files\Microsoft Shared\Ink\IpsMigrationPlugin.dll; executing it
2015-06-04 22:27:49, Info                  SYSPRP Sysprep_Cleanup_IPS: No IPS user registry data found to delete
2015-06-04 22:27:49, Info                  SYSPRP Sysprep_Cleanup_IPS: Cleaned up IPS user profile files
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_IPS' from C:\Program Files\Common Files\Microsoft Shared\Ink\IpsMigrationPlugin.dll without error
2015-06-04 22:27:49, Info       [0x0f00b8] SYSPRP SysprepSession::Execute: Sysprep mode was not specified, deleting it from registry
2015-06-04 22:27:49, Info       [0x0f00c6] SYSPRP ActionPlatform::DeleteValue: Deleting registry value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:49, Warning               SYSPRP ActionPlatform::DeleteValue: Registry value SysprepMode to be deleted does not exist under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:49, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:27:49, Info       [0x0f007a] SYSPRP FCreateTagFile:Successfully created tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag
2015-06-04 22:27:49, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:27:49, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:27:49
2015-06-04 22:30:27, Info                  SYSPRP ========================================================
2015-06-04 22:30:27, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:30:27, Info                  SYSPRP ========================================================
2015-06-04 22:30:27, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:30:27
2015-06-04 22:30:27, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 22:30:27, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:30:27, Info       [0x0f007c] SYSPRP FCreateTagFile:Successfully deleted tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 22:30:27, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:30:27, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:30:27, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:30:27, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:30:27, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:30:27, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:30:27, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:30:27, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-04 22:30:27, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 22:30:27, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 22:30:27, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 22:30:32, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:30:32, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:30:32, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:30:32
2015-06-04 22:46:24, Info                  SYSPRP ========================================================
2015-06-04 22:46:24, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:46:24, Info                  SYSPRP ========================================================
2015-06-04 22:46:24, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:46:24
2015-06-04 22:46:24, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 22:46:24, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:46:24, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 22:46:24, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:46:24, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:46:24, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:46:24, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:46:24, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:46:24, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:46:24, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:46:24, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [D:\relocate.xml]...
2015-06-04 22:46:24, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [D:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 22:46:24, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 22:46:24, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 22:46:26, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:46:26, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:46:26, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:46:26

Thank you for your help
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
Hi Kari

Kindly find the Relocate.XML file below and Setupact text file.

First, in my first response to you (this post) I told you to UPLOAD the files, not paste them in your posts which makes the posts extremely long and annoying to read. I even posted a link to the tutorial which tells you how to upload files here instead of Copy & Pasting them.

Please if you will post any more log files follow the instructions given to you.

That being said, I need time to study your files. Two errors which I could spot straight away in your answer file, one really bad:

  • The Really Bad Error: As clearly warned in the beginning of the tutorial, do not relocate the ProgramData folder in Windows 8 or later. It will totally screw up your Windows installation!
  • Another error: If you are preparing Windows 8.1 Enterprise, why does your answer file tell the version as Windows 8:
    • Your answer file now: cpi:source="wim:E:/sources/install.wim#Windows 8"
    • That should of course be cpi:source="wim:E:/sources/install.wim#[hl]Windows 8.1 ENTERPRISE[/hl]"

Kari
 
Last edited:

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Hi Kari

Kindly find the Relocate.XML file below and Setupact text file.

Code:
Relocate.XML
<?xml version="1.0" encoding="utf-8?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchiture="amd64"
publicKeyToken="31df3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcn="[URL]http://schemas.microsoft.com/WMIConfig/2002/State[/URL]"
xmlns:xsi="[URL]http://www.w3.org/2001/XMLSchema-instance[/URL]">
<FolderLocations>
<ProfilesDirectory>D:\Users</ProfilesDirectory>
<ProgramData>D:\ProgramData\ProgramData>
</FolderLocations>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:E:/sources/install.wim#Windows 8" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

setupact
2015-06-03 17:27:40, Info                  SYSPRP ========================================================
2015-06-03 17:27:40, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:27:40, Info                  SYSPRP ========================================================
2015-06-03 17:27:40, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:40
2015-06-03 17:27:40, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-03 17:27:40, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:27:40, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:27:40, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:27:40, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 17:27:40, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:27:40, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:27:40, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:27:40, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:27:40, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:27:40, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:27:40, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:27:40, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [c:\relocate.xml]...
2015-06-03 17:27:40, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [c:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:27:40, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:40, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:27:44, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:27:44, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:27:44, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:27:44
2015-06-03 17:28:22, Info                  SYSPRP ========================================================
2015-06-03 17:28:22, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:28:22, Info                  SYSPRP ========================================================
2015-06-03 17:28:22, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:22
2015-06-03 17:28:22, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-03 17:28:22, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:28:22, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:28:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:28:22, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-03 17:28:33, Error      [0x0f0043] SYSPRP WinMain:The sysprep dialog box returned FALSE
2015-06-03 17:28:33, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:28:33, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:28:33
2015-06-03 17:29:55, Info                  SYSPRP ========================================================
2015-06-03 17:29:55, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 17:29:55, Info                  SYSPRP ========================================================
2015-06-03 17:29:55, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:29:55
2015-06-03 17:29:55, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 17:29:55, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 17:29:55, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 17:29:55, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 17:29:55, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 17:29:55, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 17:29:55, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 17:29:55, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 17:29:55, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 17:29:55, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 17:29:55, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 17:29:55, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 17:29:55, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 17:29:55, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 17:29:55, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 17:29:55, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 17:30:04, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 17:30:04, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 17:30:04, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 17:30:04
2015-06-03 18:11:57, Info                  SYSPRP ========================================================
2015-06-03 18:11:57, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-03 18:11:57, Info                  SYSPRP ========================================================
2015-06-03 18:11:57, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 18:11:57
2015-06-03 18:11:57, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2015-06-03 18:11:57, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-03 18:11:57, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-03 18:11:57, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-03 18:11:57, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-03 18:11:57, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-03 18:11:57, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-03 18:11:57, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-03 18:11:57, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-03 18:11:57, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-03 18:11:57, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-03 18:11:57, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-03 18:11:57, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-03 18:11:57, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80070246, hrResult = 0x0.
2015-06-03 18:11:57, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80070246
2015-06-03 18:11:57, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80070246
2015-06-03 18:12:14, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-03 18:12:14, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-03 18:12:14, Info       [0x0f004d] SYSPRP The time is now 2015-06-03 18:12:14
2015-06-04 17:47:48, Info                  SYSPRP ========================================================
2015-06-04 17:47:48, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 17:47:48, Info                  SYSPRP ========================================================
2015-06-04 17:47:48, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:47:48
2015-06-04 17:47:48, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 17:47:48, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 17:47:48, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 17:47:48, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 17:47:48, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-04 17:52:31, Error      [0x0f0043] SYSPRP WinMain:The sysprep dialog box returned FALSE
2015-06-04 17:52:31, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 17:52:31, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:52:31
2015-06-04 17:57:51, Info                  SYSPRP ========================================================
2015-06-04 17:57:51, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 17:57:51, Info                  SYSPRP ========================================================
2015-06-04 17:57:51, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:57:51
2015-06-04 17:57:51, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 17:57:51, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 17:57:51, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 17:57:51, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 17:57:51, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 17:57:51, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 17:57:51, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 17:57:51, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 17:57:51, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 17:57:51, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 17:57:51, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 17:57:51, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 17:57:51, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 17:57:51, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [D:\relocate.xml]...
2015-06-04 17:57:51, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [D:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 17:57:51, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 17:57:51, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 17:58:09, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 17:58:09, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 17:58:09, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 17:58:09
2015-06-04 18:53:53, Info                  SYSPRP ========================================================
2015-06-04 18:53:53, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 18:53:53, Info                  SYSPRP ========================================================
2015-06-04 18:53:53, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:53:53
2015-06-04 18:53:53, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 18:53:53, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 18:53:53, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 18:53:53, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 18:53:53, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 18:53:53, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 18:53:53, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:53:53, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:53:53, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:53:53, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 18:53:53, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 18:53:53, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 18:53:53, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 18:53:53, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-04 18:53:53, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 18:53:53, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 18:53:53, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 18:53:57, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 18:53:57, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 18:53:57, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:53:57
2015-06-04 18:56:22, Info                  SYSPRP ========================================================
2015-06-04 18:56:22, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 18:56:22, Info                  SYSPRP ========================================================
2015-06-04 18:56:22, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:56:22
2015-06-04 18:56:22, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 18:56:22, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 18:56:22, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 18:56:22, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 18:56:22, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 18:56:22, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 18:56:22, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 18:56:22, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:56:22, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 18:56:22, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 18:56:22, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 18:56:22, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 18:56:22, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 18:56:22, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [F:\relocate.xml]...
2015-06-04 18:56:22, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [F:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 18:56:22, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 18:56:22, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 18:56:25, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 18:56:25, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 18:56:25, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 18:56:25
2015-06-04 22:27:05, Info                  SYSPRP ========================================================
2015-06-04 22:27:05, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:27:05, Info                  SYSPRP ========================================================
2015-06-04 22:27:05, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:27:05
2015-06-04 22:27:05, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\system32\sysprep\Panther
2015-06-04 22:27:05, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:27:05, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 22:27:05, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:27:05, Info       [0x0f003d] SYSPRP WinMain:Displaying dialog box for user to choose sysprep mode...
2015-06-04 22:27:45, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:27:45, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:27:45, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:45, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:45, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:45, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:27:45, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:27:46, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:27:46, Info                  SYSPRP SysprepSearchForUnattend: No unattend file was specified or located; skipping unattend generalize pass.
2015-06-04 22:27:46, Info       [0x0f00ac] SYSPRP WinMain:Processing 'cleanup' external provider request.
2015-06-04 22:27:46, Info       [0x0f006c] SYSPRP RunExternalDlls:Running DLLs listed in registry for phase 3
2015-06-04 22:27:46, Info       [0x0f008a] SYSPRP RunRegistryDlls:Retrieved section name for this phase as Cleanup
2015-06-04 22:27:46, Warning    [0x0f008f] SYSPRP RunRegistryDlls:Registry key is either empty or malformed: SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\SysPrepExternal\Cleanup
2015-06-04 22:27:46, Info       [0x0f003f] SYSPRP WinMain:Processing 'cleanup' internal provider request.
2015-06-04 22:27:46, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:27:46, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::Execute: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:46, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:46, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: After sorting, providers will be excuted in this order:
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Sysprep-SpOpk, order: 100d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SQMApi, order: 300d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-EventLog, order: 400d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-LpkSetup, order: 500d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SystemMaintenanceService-Core, order: 600d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-MediaPlayer-DRM, order: 700d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-SystemRestore-Main, order: 800d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Shell-Setup, order: 900d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-ErrorReportingCore, order: a00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:WindowsSearchEngine, order: b00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-IE-Sysprep, order: c00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Sysprep-SpNet, order: d00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TaskScheduler-Service, order: e00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-Cryptography, order: f00d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-UXInit, order: 1000d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-COM-DTC-Runtime, order: 1100d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TapiSetup, order: 1200d
2015-06-04 22:27:46, Info                  SYSPRP SysprepSession::ExecuteInternal: name:Microsoft-Windows-TabletPC-InputPersonalization, order: 1300d
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Sysprep-SpOpk
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SQMApi
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SqmSysprepCleanup' in sqmapi.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SqmSysprepCleanup' from sqmapi.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-EventLog
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'EvtIntSysprepCleanup' in C:\Windows\System32\wevtapi.dll; executing it
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'EvtIntSysprepCleanup' from C:\Windows\System32\wevtapi.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-LpkSetup
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Generalize_MUILangCleanup' in C:\Windows\System32\LangCleanupSysprepAction.dll; executing it
2015-06-04 22:27:46, Info                  SYSPRP Sysprep_Generalize_MUILangCleanup Start.
2015-06-04 22:27:46, Info                  SYSPRP Disabling CMF cache SUCCEEDED
2015-06-04 22:27:46, Info                  SYSPRP Removing scheduled task for running lpremove.exe and all related data
2015-06-04 22:27:46, Info                  SYSPRP Removing scheduled task for lpremove.exe succeeed
2015-06-04 22:27:46, Info                  SYSPRP Removing MUIUnattend-OOBE handshake value
2015-06-04 22:27:46, Info                  SYSPRP MUIUnattend-OOBE handshake value is not present on the system
2015-06-04 22:27:46, Info                  SYSPRP Sysprep_Generalize_MUILangCleanup End.
2015-06-04 22:27:46, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Generalize_MUILangCleanup' from C:\Windows\System32\LangCleanupSysprepAction.dll without error
2015-06-04 22:27:46, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SystemMaintenanceService-Core
2015-06-04 22:27:46, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'PfSvSysprepCleanup' in C:\Windows\System32\sysmain.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'PfSvSysprepCleanup' from C:\Windows\System32\sysmain.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-MediaPlayer-DRM
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep' in drmv2clt.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep' from drmv2clt.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-SystemRestore-Main
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SysprepCleanup' in srclient.dll; executing it
2015-06-04 22:27:47, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SysprepCleanup' from srclient.dll without error
2015-06-04 22:27:47, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Shell-Setup
2015-06-04 22:27:47, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_Shell' in C:\Windows\System32\shsetup.dll; executing it
2015-06-04 22:27:47, Info                         [shsetup] Sysprep_Cleanup_Shell entered
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SkipMachineOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SkipUserOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideEULAPage' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'NetworkLocation' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'ProtectYourPC' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideWirelessSetupInOOBE' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideOnlineAccountScreens' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideLocalAccountScreen' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'HideOEMRegistrationScreen' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'OEMAppId' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\OOBE' + 'SysprepUserSid' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'MediaBootInstall' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedProductKey' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedEula' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupDisplayedLanguageSelection' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SetupSQMOptIn' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendCreatedUser' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendSetTimeZone' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'UnattendSetAutologon' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Setup\OOBE' + 'SysprepSetVMMode' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'AutoAdminLogon' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'DefaultUserName' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows NT\CurrentVersion\WinLogon' + 'DefaultDomainName' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'HideWizard' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Accent' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-18'
2015-06-04 22:27:47, Info                         [shsetup] SHCreateItemFromParsingName failed on 'C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent' (0x80070002)
2015-06-04 22:27:47, Info                         [shsetup] SHCreateItemFromParsingName failed on 'C:\Windows\system32\config\systemprofile\AppData\Local\Temp' (0x80070002)
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x8000ffff
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-19'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-19'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\LocalService\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x8000ffff
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-20'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-20'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x00000000
2015-06-04 22:27:47, Info                         [shsetup] Cleaning up user hive for 'S-1-5-21-4191472449-1031029750-3626055614-500'
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'ExplorerStartupTraceRecorded' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer' + 'SIDUpdatedOnLibraries' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'System\CurrentControlSet\Control\Network\NetworkLocationWizard' + 'ShowCount' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteKey on 'Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' + 'StartMenuInit' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'Favorites' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesChanges' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesVersion' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband' + 'FavoritesResolve' returned 0
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'Favorites' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesChanges' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesVersion' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage' + 'FavoritesResolve' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Fontsmoothing' + 'DefaultApplied' returned 2
2015-06-04 22:27:47, Info                         [shsetup] SHDeleteValue on 'Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' + 'Last used time' returned 2
2015-06-04 22:27:47, Info                         [shsetup] Deleting temp files for 'S-1-5-21-4191472449-1031029750-3626055614-500'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Recent'
2015-06-04 22:27:47, Info                         [shsetup] Deleting contents of 'C:\Users\Administrator\AppData\Local\Temp'
2015-06-04 22:27:47, Info                         [shsetup] IFileOperation::PerformOperations returned 0x00000000
2015-06-04 22:27:47, Info                         [shsetup] SanitizeDeskBands entered
2015-06-04 22:27:47, Info                         [shsetup] SanitizeDeskBands exit
2015-06-04 22:27:47, Info                         [shsetup] PrimeStartMenuShortcuts entered
2015-06-04 22:27:48, Info                         [shsetup] PrimeStartMenuShortcuts exit
2015-06-04 22:27:48, Info                         [shsetup] CleanUpImmersiveLauncher: layout successfully exported to xml
2015-06-04 22:27:48, Info                         [shsetup] Sysprep_Cleanup_Shell exit
2015-06-04 22:27:48, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_Shell' from C:\Windows\System32\shsetup.dll without error
2015-06-04 22:27:48, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-ErrorReportingCore
2015-06-04 22:27:48, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'WerSysprepCleanup' in wer.dll; executing it
2015-06-04 22:27:48, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'WerSysprepCleanup' from wer.dll without error
2015-06-04 22:27:48, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component WindowsSearchEngine
2015-06-04 22:27:48, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'MSSrch_SysPrep_Cleanup' in C:\Windows\System32\mssrch.dll; executing it
2015-06-04 22:27:48, Info                  SYSPRP MSS: MSSrch_SysPrep_Cleanup _DisableService returned successfully.
2015-06-04 22:27:48, Info                  SYSPRP MSS: MSSrch_SysPrep_Cleanup _CreateBlockingRegKey returned successfully.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Stopping service WSearch and its dependents.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Service WSearch has no active dependents.
2015-06-04 22:27:48, Info                  SYSPRP MSS: Stopping service WSearch.
2015-06-04 22:27:48, Info                  SYSPRP MSS: _StopService status checking loop 0 round, QueryServiceStatus return TRUE, the status is 0x3
2015-06-04 22:27:49, Info                  SYSPRP MSS: _StopService status checking loop 1 round, QueryServiceStatus return TRUE, the status is 0x1
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'MSSrch_SysPrep_Cleanup' from C:\Windows\System32\mssrch.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-IE-Sysprep
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_IE' in C:\Windows\System32\iesysprep.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_IE' from C:\Windows\System32\iesysprep.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Sysprep-SpNet
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Net' in C:\Windows\System32\spnet.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0008] SYSPRP spnet.dll::IsDomainMember:This machine is not joined to a domain
2015-06-04 22:27:49, Info       [0x0f000e] SYSPRP spnet.dll::UnjoinNetworkDomain:Not a domain member, nothing to do
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Net' from C:\Windows\System32\spnet.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TaskScheduler-Service
2015-06-04 22:27:49, Info       [0x0f00c6] SYSPRP ActionPlatform::DeleteValue: Deleting registry value HashingCompleted under key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-Cryptography
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'CryptoSysPrep_Clean' in C:\Windows\system32\capisp.dll; executing it
2015-06-04 22:27:49, Info                         capisp.dll::DisableAdministratorIfApplicable disabled the admin account.
2015-06-04 22:27:49, Info                         capisp.dll::CryptoSysPrep_Clean: returning 0
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'CryptoSysPrep_Clean' from C:\Windows\system32\capisp.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-UXInit
2015-06-04 22:27:49, Info       [0x0f00c0] SYSPRP ActionPlatform::DeleteFilePattern: Deleting file(s) * under the directory C:\Windows\Resources\Themes\aero\VSCache\
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-COM-DTC-Runtime
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'SysPrepDtcCleanup' in C:\Windows\system32\msdtcprx.dll; executing it
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'SysPrepDtcCleanup' from C:\Windows\system32\msdtcprx.dll without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TapiSetup
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'TapiSysPrepClean' in C:\Windows\System32\tapisysprep; executing it
2015-06-04 22:27:49, Warning                      TapiSysPrep.dll:RetainTapiLocations:RegQueryValueEx() returned 2
2015-06-04 22:27:49, Info                         TapiSysPrep.dll:RetainTapiLocations:returning 1
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'TapiSysPrepClean' from C:\Windows\System32\tapisysprep without error
2015-06-04 22:27:49, Info       [0x0f00bd] SYSPRP CreateSysprepActionList: Building action list for component Microsoft-Windows-TabletPC-InputPersonalization
2015-06-04 22:27:49, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Cleanup_IPS' in C:\Program Files\Common Files\Microsoft Shared\Ink\IpsMigrationPlugin.dll; executing it
2015-06-04 22:27:49, Info                  SYSPRP Sysprep_Cleanup_IPS: No IPS user registry data found to delete
2015-06-04 22:27:49, Info                  SYSPRP Sysprep_Cleanup_IPS: Cleaned up IPS user profile files
2015-06-04 22:27:49, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Cleanup_IPS' from C:\Program Files\Common Files\Microsoft Shared\Ink\IpsMigrationPlugin.dll without error
2015-06-04 22:27:49, Info       [0x0f00b8] SYSPRP SysprepSession::Execute: Sysprep mode was not specified, deleting it from registry
2015-06-04 22:27:49, Info       [0x0f00c6] SYSPRP ActionPlatform::DeleteValue: Deleting registry value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:49, Warning               SYSPRP ActionPlatform::DeleteValue: Registry value SysprepMode to be deleted does not exist under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:27:49, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:27:49, Info       [0x0f007a] SYSPRP FCreateTagFile:Successfully created tag file C:\Windows\system32\sysprep\Sysprep_succeeded.tag
2015-06-04 22:27:49, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:27:49, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:27:49
2015-06-04 22:30:27, Info                  SYSPRP ========================================================
2015-06-04 22:30:27, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:30:27, Info                  SYSPRP ========================================================
2015-06-04 22:30:27, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:30:27
2015-06-04 22:30:27, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 22:30:27, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:30:27, Info       [0x0f007c] SYSPRP FCreateTagFile:Successfully deleted tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:30:27, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 22:30:27, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:30:27, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:30:27, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:30:27, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:30:27, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:30:27, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:30:27, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:30:27, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:30:27, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:30:27, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [C:\relocate.xml]...
2015-06-04 22:30:27, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [C:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 22:30:27, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 22:30:27, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 22:30:32, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:30:32, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:30:32, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:30:32
2015-06-04 22:46:24, Info                  SYSPRP ========================================================
2015-06-04 22:46:24, Info                  SYSPRP ===          Beginning of a new sysprep run          ===
2015-06-04 22:46:24, Info                  SYSPRP ========================================================
2015-06-04 22:46:24, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:46:24
2015-06-04 22:46:24, Info       [0x0f004e] SYSPRP Initialized SysPrep log at C:\Windows\System32\Sysprep\Panther
2015-06-04 22:46:24, Info       [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2015-06-04 22:46:24, Info       [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\Windows\System32\Sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'AUDIT'
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'REBOOT'
2015-06-04 22:46:24, Info       [0x0f005f] SYSPRP ParseCommands:Found supported command line option 'UNATTEND'
2015-06-04 22:46:24, Info       [0x0f00d7] SYSPRP WinMain:Pre-validing 'cleanup' internal providers.
2015-06-04 22:46:24, Info                  SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2015-06-04 22:46:24, Info       [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode <null>
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2015-06-04 22:46:24, Warning               SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is <null>
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:46:24, Info                  SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2015-06-04 22:46:24, Info                  SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2015-06-04 22:46:24, Info       [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found 'Sysprep_Clean_Validate_Opk' in C:\Windows\System32\spopk.dll; executing it
2015-06-04 22:46:24, Info       [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed 'Sysprep_Clean_Validate_Opk' from C:\Windows\System32\spopk.dll without error
2015-06-04 22:46:24, Info       [0x0f004a] SYSPRP WaitThread:Entering spawned waiting thread
2015-06-04 22:46:24, Info                         [sysprep.exe] UnattendFindAnswerFile: Looking at explicitly provided unattend file [D:\relocate.xml]...
2015-06-04 22:46:24, Error                        [sysprep.exe] UnattendFindAnswerFile: Unable to deserialize explicitly provided unattend file [D:\relocate.xml]; status = 0x80073714, hrResult = 0x0.
2015-06-04 22:46:24, Error      [0x0f009e] SYSPRP SysprepSearchForUnattend: Failed while searching for unattend file; hr = 0x80073714
2015-06-04 22:46:24, Error      [0x0f00a5] SYSPRP WinMain:Encountered error while searching for unattend file; hr = 0x80073714
2015-06-04 22:46:26, Info       [0x0f004c] SYSPRP WaitThread:Exiting spawned waiting thread
2015-06-04 22:46:26, Info       [0x0f0052] SYSPRP Shutting down SysPrep log
2015-06-04 22:46:26, Info       [0x0f004d] SYSPRP The time is now 2015-06-04 22:46:26
Thank you for your help
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
You make this really difficult for me!

Quoting my earlier post:

First, in my first response to you (this post) I told you to UPLOAD the files, not paste them in your posts which makes the posts extremely long and annoying to read. I even posted a link to the tutorial which tells you how to upload files here instead of Copy & Pasting them.

After telling you that, you repost the same awfully long and extremely difficult and annoying to read post!
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Hi Kari

Kindly find the attached the setupact log file and relocate xml file and I have given last try by changing like this
<cpi:eek:fflineImage cpi:source="wim:E:/sources/install.wim#Windows 8" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
but still the same problem persists.

If the xml file is wrong then please suggent me and provide me so that I can try this on sunday and update you.
If this fails also then tell me is there any step by step tutorial in registry to do.

Thanks for your great help and support in this matter.
 

Attachments

  • setupact.log
    71.4 KB · Views: 182
  • relocate.xml
    677 bytes · Views: 178

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
I am somewhat preoccupied now, I will check your files as soon as possible. It might be first tomorrow that I am able to reply.
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
OK, I have checked the files and the mystery remains. Your answer file works, when I have fixed those two errors or rather mistakes I already mentioned, removed the ProgramData from FolderOptions tags and corrected the Windows version.

Please answer the following questions:
  • Is this an upgrade or clean install? I mean, is this for example a Windows 8 Enterprise which was later upgraded to 8.1 Enterprise?
  • Is this PC in a domain?
  • Do have a valid Windows 8.1 Enterprise install media on drive E: as told in your answer file when you Sysprep?
  • Are you trying to do this in a clean install in Audit Mode, or later when the user accounts are already created?
 
Last edited:

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Hi Kari
It is a clean and new PC Installation. For your information. Begining Network cable was connected to the PC and started a New fresh Windows 8.1 Enterprise 64 bit setup to this PC.
No this is not a domain PC.
Yes this is a Valid Windows 8.1 Enterprise and the media Drive is E:
Just Followed your tutorial and fresh and clean install in Audit Mode. Still the Complete windows setup not done.
Started fresh and clean installation and enter into Audit Mode. i.e. when setup reached to enter PC Name there I pressed CTRL+Shift+F3 and PC restarted and entered built in Administrator profile carried on as per your tutorial.

This same steps worked for 32bit but failed 64bit. This is just a beginning step once completed relocate Profile then I can do remaining.

As suggested I will try again by removing the ProgramData from FolderOptions tags and what excatly I need to write for windows version. I will be doing on sunday morning.
Thank you for your kind support for helping me.
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
Hi Kari

First of Thanks a Ton:) with cheers and with your support I have Corrected those two errors and completed sucessfully just now.

I whole heartedly Thank you for helping in completing this task. Now left with Default user.
Kindly Regards for your support
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
You are welcome :).
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
to anyone reads tutor: DONT DO IT! ! so many problems OMG

Don't move your Windows user profiles folder to another drive | ZDNet

this tutor is bad advise

I hope that the readers of this thread would first check the facts before posting something like that.

As I have repeatedly told in several occasions, that article, although published in 2013, was based on one Microsoft support article written when Windows Vista was still in beta stage. Since then both Windows and its Sysprep tool have changed. This procedure is totally safe, widely used and works without any issues whatsoever in Windows 7, 8, 8.1 and 10. I recommend you also read the comments of that article where it is several times mentioned that the article gives false information.

To start with, the error message the article mentions does not exist. "Sorry, it looks like this PC can't run Windows 8.1. This might be because the Users or Program Files folder is being redirected to another partition." Really, that error message is never shown, it does not exist. The only message shown when upgrading a system where some system folders are relocated to another drive is that you cannot upgrade keeping your installed software. But, as so often in Windows, there's an easy workaround. I have myself, as have many other users upgraded a Windows system with relocated Users folder without issues. Several times, every time without an issue.

This system will also create no issues with Windows Update.

Read this post at our sister site the Seven Forums, it answers the question about upgrading to 8.1 when the Users folder is relocated: Windows 7 Help Forums - View Single Post - User Profiles - Create and Move During Windows 7 Installation

Complete instructions to upgrade at another of our sister sites, the Ten Forums: Users Folder - Move Location in Windows 10 - Windows 10 Forums

This procedure works flawless. It is created and made possible by Microsoft and is done by a Windows native tool Sysprep using command options in a so called answer file created and designed by Microsoft. No third party tools are involved, no features that are not natively coded to Windows are used.

Here are some facts for you:

  • On Windows Seven, Eight and Ten there's not a single rational reason NOT to relocate the Users folder, and ProgramData on Seven (on Eight and Ten, Store & apps need ProgramData being on drive [noparse]C:[/noparse] and it cannot be relocated)
  • You can in-place upgrade even after relocating Users and ProgramData simply by relocating them back to C:
  • You will have absolutely totally completely NO Windows Update issues caused by relocated Users and / or Programdata folders
  • All my Vista, Seven, Eight and Ten systems have always been sysprepped to relocate Users (V, 7, 8 & 10) and ProgramData (V & 7)
  • I have never ever had a single Windows Update issue which when solved had shown to be due relocated folders, never an unsolved update issue to start with
  • I have always managed to both in-place upgrade and upgrade by clean install all Windows rigs I have decided to upgrade to either a superior edition of the same version or to next Windows generation.


Kari
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Hi Kari
Yes by Sysprep there are no issues in Windows 8.1 32 or 64 bit I have tested from past 1 month in 32 bit and now checking in 64bit.

Hands Off to you and Great Honour of Saulte to you with respect.
 

My Computer

System One

  • OS
    Windows 8.1 Enterprise 32bit and 64 bit
Hi Kari
Yes by Sysprep there are no issues in Windows 8.1 32 or 64 bit I have tested from past 1 month in 32 bit and now checking in 64bit.

Hands Off to you and Great Honour of Saulte to you with respect.
:) Thanks Potency!

This tutorial thread has been read over 600,000 times, and if you read it through, all issues the users have had, we have found out they have been caused by the user (usually not reading the instructions before starting), not by this procedure. When done correctly as told in the tutorial it works as a dream.
 

My Computer

System One

  • OS
    Windows 8.1 Pro with Media Center
    Computer type
    Laptop
    System Manufacturer/Model
    HP ENVY 17-1150eg
    CPU
    1.6 GHz Intel Core i7-720QM Processor
    Memory
    6 GB
    Graphics Card(s)
    ATI Mobility Radeon HD 5850 Graphics
    Sound Card
    Beats sound system with integrated subwoofer
    Monitor(s) Displays
    17" laptop display, 22" LED and 32" Full HD TV through HDMI
    Screen Resolution
    1600*900 (1), 1920*1080 (2&3)
    Hard Drives
    Internal: 2 x 500 GB SATA Hard Disk Drive 7200 rpm
    External: 2TB for backups, 3TB USB3 network drive for media
    Cooling
    As Envy runs a bit warm, I have it on a Cooler Master pad
    Keyboard
    Logitech diNovo Media Desktop Laser (bluetooth)
    Mouse
    Logitech MX1000 Laser (Bluetooth)
    Internet Speed
    50 MB VDSL
    Browser
    Maxthon 3.5.2., IE11
    Antivirus
    Windows Defender 4.3.9431.0
    Other Info
    Windows in English, additional user accounts in Finnish, German and Swedish.
Back
Top