This may be something already known but do vRO Action based dropdowns on Request forms not display in ServiceNow? In ServiceNow I get a dropdown but its empty see attachment
Action based Dropdowns not working?
Re: Action based Dropdowns not working?
Also is there a way to hide Custom properties from displaying on the ServiceNow form?
Re: Converting Sierra DMG image to a Fusion vm
Hi,
Rawdiskmanager is correct, there is no partition layout on the dmg file, so you can't do what you want as the .dmg file wasn't made in the correct way for being able to do what you want.
dlhotka probably has the better solution, I suggest following his steps.
--
Wil
Re: Can not log in to the controll center.
My TAM proposed this kb, and it worked in my case.
It removed the previous authentification with the PSC so I'm back with a Basic Auth from the Web Server. You have to login with your root account.
I thought that by doing a reset, I would revert back to the vmware/vmware user/pass. Or my own one that i configured a while ago to replace the default one, but nah. Its really the root account its asking.
I'm waiting for a reply from the support to see if I can stay like this, or should I connect the Control Center back with the PSC. I think I'll just have to unregister and re-register the PSC... its a guess, but since I don't have the password to unregister it, I have to wait for that guy to test this part.
Re: vCenter Error 1009
Re: Add ESXi Host to VCenter but the Host is shown as (disconnected)
From the ESXi command line do you know how to get the network (Subnet mask information) wanted to confirm.
vIDM 2.8.1 and Cluster SQL AAG
Hi,
Have you success configured one cluster vIDM with a SQL AAG?
Because when I switch AAG on other SQL, I have a msg in the log of SQL Server, "login failed for user "Horizon" error 18456 / 14/ 38"
And my vIDM is down.
When I create the database Saas, I used this script. But after that database is created, I add this DB on AAG but on second server I don't have this user SQL "horizon". I add manually this user SQL, but I must forget one configuration for this account because it's doesn't work.
Is there a script to create the user on the second SQL server?
COLLATE Latin1_General_CS_AS;
ALTER DATABASE saas SET READ_COMMITTED_SNAPSHOT ON;
GO
BEGIN
CREATE LOGIN horizon WITH PASSWORD = YourPassword;
END
GO
USE saas;
IF EXISTS (SELECT * FROM sys.database_principals WHERE name = YourPassword)
DROP USER [horizon]
GO
CREATE USER horizon FOR LOGIN horizon
WITH DEFAULT_SCHEMA = saas;
GO
CREATE SCHEMA saas AUTHORIZATION horizon
GRANT ALL ON DATABASE::saas TO horizon;
GO
Thanks all, for reply
Weird Java Script issue
I am currently using vRO 7.2 and am running into this issue, ive browed around some javascript websites for anyone who has written something similar but I never seen any have an issue with there calling of dates past 13 .Is this something funky in vRO or am I missing something?
var date = new Date();
var future_date = new Date();
var date_start = 1;
var date_range = 14;
var date_range_array = new Array();
while ( date_start <= date_range){
future_date.setDate(date.getDate()+ date_start);
System.log(future_date);
var numberOfMonth = future_date.getMonth() + 1 ;
var day = future_date.getDate();
var year = future_date.getFullYear();
var month;
//Conversion to Month from number
//---------------------------------------------------
if (numberOfMonth == "1"){
month = "Jan";
}
else if (numberOfMonth == "2"){
month = "Feb";
}
else if (numberOfMonth == "3"){
month = "Mar";
}
else if (numberOfMonth == "4"){
month = "Apr";
}
else if (numberOfMonth == "5"){
month = "May";
}
else if (numberOfMonth == "6"){
month = "Jun";
}
else if (numberOfMonth == "7"){
month = "Jul";
}
else if (numberOfMonth == "8"){
month = "Aug";
}
else if (numberOfMonth == "9"){
month = "Sept";
}
else if (numberOfMonth == "10"){
month = "Oct";
}
else if (numberOfMonth == "11"){
month = "Nov";
}
else if (numberOfMonth == "12"){
month = "Dec";
}
//---------------------------------------------------
var combineDate = month + "-" + day + "-" + year;
System.log(combineDate);
//---------------------------------------------------
date_start++;
}
Goal is to have it generate the date in a certain format but when it gets past day 13 it gets a little weird.
[2017-07-19 15:03:51.146] [I] Thu Jul 20 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.147] [I] Jul-20-2017
[2017-07-19 15:03:51.148] [I] Fri Jul 21 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.150] [I] Jul-21-2017
[2017-07-19 15:03:51.151] [I] Sat Jul 22 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.152] [I] Jul-22-2017
[2017-07-19 15:03:51.154] [I] Sun Jul 23 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.155] [I] Jul-23-2017
[2017-07-19 15:03:51.157] [I] Mon Jul 24 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.158] [I] Jul-24-2017
[2017-07-19 15:03:51.160] [I] Tue Jul 25 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.161] [I] Jul-25-2017
[2017-07-19 15:03:51.163] [I] Wed Jul 26 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.164] [I] Jul-26-2017
[2017-07-19 15:03:51.165] [I] Thu Jul 27 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.167] [I] Jul-27-2017
[2017-07-19 15:03:51.168] [I] Fri Jul 28 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.169] [I] Jul-28-2017
[2017-07-19 15:03:51.171] [I] Sat Jul 29 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.172] [I] Jul-29-2017
[2017-07-19 15:03:51.174] [I] Sun Jul 30 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.175] [I] Jul-30-2017
[2017-07-19 15:03:51.176] [I] Mon Jul 31 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.178] [I] Jul-31-2017
[2017-07-19 15:03:51.179] [I] Tue Aug 01 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.180] [I] Aug-1-2017
[2017-07-19 15:03:51.181] [I] Sat Sep 02 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.183] [I] Sept-2-2017
[2017-07-19 15:03:51.184] [I] Wed Oct 04 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.185] [I] Oct-4-2017
[2017-07-19 15:03:51.186] [I] Sat Nov 04 2017 19:03:51 GMT-0000 (UTC)
[2017-07-19 15:03:51.190] [I] Nov-4-2017
Thanks for the help in advance!
The file specified is not a virtual disk error when opening a snapshot (original disk descriptor is missing)
Hello everyone. I recently accidentally removed a very important snapshot. Then I was able to restore all its sparse .vmdk files (s001 through s011), but unfortunately not the descriptor vmdk file and not the old vmsd file. The snapshot was in suspended state. I attempted to manually add it to the vmsd file and to recreate the descriptor vmdk file myself, but always says "The file specified is not a virtual disk" when attempting to fire up the snapshot.
Kali-Linux-2016.2-vm-amd64-000005.vmdk is attached as an example of a working snapshot's descriptor file based on which I recreated Kali-Linux-2016.2-vm-amd64-000004.vmdk. Also I attached the descriptor file of the main virtual disc (
Re: The file specified is not a virtual disk error when opening a snapshot (original disk descriptor is missing)
P.S. forgot to add that I also recovered .vmem and .vmsn files. Basically I recovered everything but the original descriptor.
vmware esxi multi writer Centos 7
Hello!
I have a vmware esxi 6.5 I followed the procedure https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1034165
I have two VMs with Centos 7 I would like to share the same disk actively / active. Has anyone ever made it work? I am using ext4 as a filesystem.
Tanks!!
Re: bug
Re: Shortcuts won't go away
Gotcha! The log shown below includes two logon/logoff cycles. In the first, the user was part of the security group that provided access to the AppStack and triggered the shortcut creation. In the second cycle, they are no longer part of that group.
I see from the logs that an Outlook startup shortcut was removed at logoff, but I don't see that happening for WinSCP.
2017-07-19 14:31:42.640 [DEBUG] Successfully removed shortcut 'C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Outlook 2016.lnk' ('Outlook 2016-startup.xml')
I had also seen some other threads suggesting other customizations (specifically printer mappings) could cause problems, so those have been temporary disabled in this run - without any beneficial effect.
User in Appv-WINSCP security group:
2017-07-19 14:30:59.149 [INFO ] Log file truncated due to reaching configured maximum size (512 kilobytes)
2017-07-19 14:30:59.149 [INFO ] Starting FlexEngine v9.2.0.701 [IFP#0086d2ad-875da5>>]
2017-07-19 14:30:59.149 [DEBUG] Performing path-based export
2017-07-19 14:30:59.149 [DEBUG] User: PERA\UserName (A), Computer: PERA070005, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 5028/4292/1C
2017-07-19 14:30:59.149 [DEBUG] Policy "Always wait for the network at computer startup and logon" is enabled
2017-07-19 14:30:59.149 [DEBUG] Policy "Run logon scripts synchronously" is not configured
2017-07-19 14:30:59.164 [DEBUG] Redirected folders: Personal
2017-07-19 14:30:59.164 [DEBUG] Policy "Point and Print Restrictions" is not configured
2017-07-19 14:30:59.164 [DEBUG] User policy last applied at 2017-07-19 14:29:36.825 (took 9.343 s)
2017-07-19 14:30:59.164 [DEBUG] Boot time: 2017-07-19 03:56:13.977, Logon time: 2017-07-19 14:29:46.169
2017-07-19 14:30:59.164 [DEBUG] Recursively processing config files from path '\\156.98.45.106\UEM_Config\General'
2017-07-19 14:30:59.164 [DEBUG] Using profile archive path '\\156.98.45.106\UEM_Profiles\UserName\archives'
2017-07-19 14:30:59.164 [DEBUG] Profile archives will be compressed
2017-07-19 14:30:59.164 [DEBUG] Creating 1 backup in path '\\156.98.45.106\UEM_Profiles\UserName\backups'
2017-07-19 14:30:59.164 [DEBUG] Logging to file '\\156.98.45.106\UEM_profiles\UserName\logs\flexengine.log'
2017-07-19 14:30:59.164 [DEBUG] Log file will be overwritten when larger than 512 kilobytes
2017-07-19 14:30:59.164 [DEBUG] If Flex config files path is not available at logon, log off automatically
2017-07-19 14:30:59.164 [DEBUG] If profile archive path is not available at logon, skip import but apply user environment settings
2017-07-19 14:30:59.164 [DEBUG] Import status flag indicates success, so performing export
2017-07-19 14:30:59.164 [DEBUG] Clearing import status flag for next import
2017-07-19 14:30:59.180 [DEBUG] Stopped injection
2017-07-19 14:30:59.180 [DEBUG] Processing pre-export UEM tasks
2017-07-19 14:30:59.196 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Acrobat Reader.INI'.
2017-07-19 14:30:59.196 [INFO ] Exporting profile using config file 'Calculator.INI' (\\156.98.45.106\UEM_Config\General\Applications\Calculator.INI)
2017-07-19 14:30:59.196 [INFO ] Binary Settings: Applied Application Template 'Microsoft Calculator'
2017-07-19 14:30:59.196 [INFO ] Exporting Registry information
2017-07-19 14:30:59.196 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Calc'
2017-07-19 14:30:59.196 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Calc' does not exist
2017-07-19 14:30:59.196 [INFO ] Exported Registry information successfully
2017-07-19 14:30:59.196 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:30:59.211 [INFO ] Exporting profile using config file 'Chrome.INI' (\\156.98.45.106\UEM_Config\General\Applications\Chrome.INI)
2017-07-19 14:30:59.211 [INFO ] Exporting Registry information
2017-07-19 14:30:59.211 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Google'
2017-07-19 14:30:59.211 [INFO ] Exported Registry information successfully
2017-07-19 14:30:59.211 [INFO ] Exporting file information
2017-07-19 14:30:59.211 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Application Cache'
2017-07-19 14:30:59.211 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Cache'
2017-07-19 14:30:59.211 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Local Storage'
2017-07-19 14:30:59.211 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Media Cache'
2017-07-19 14:30:59.211 [DEBUG] ExcludeFiles: Adding exclusion for '*.tmp'
2017-07-19 14:30:59.211 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Google\Chrome'
2017-07-19 14:31:06.086 [INFO ] Exported file information successfully
2017-07-19 14:31:06.117 [DEBUG] Stored 779 entries in profile archive (size: 100680148; compressed: 51638639)
2017-07-19 14:31:06.117 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Chrome.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Chrome 2017-07-19 142018.zip'
2017-07-19 14:31:06.133 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Chrome 2017-07-19 035502.zip'
2017-07-19 14:31:06.133 [INFO ] Exporting profile using config file 'Greenshot.ini' (\\156.98.45.106\UEM_Config\General\Applications\Greenshot.ini)
2017-07-19 14:31:06.133 [INFO ] Exporting file information
2017-07-19 14:31:06.133 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Greenshot'
2017-07-19 14:31:06.133 [INFO ] Exported file information successfully
2017-07-19 14:31:06.133 [DEBUG] Stored 1 entry in profile archive (size: 0; compressed: 2)
2017-07-19 14:31:06.133 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Greenshot.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Greenshot 2017-07-19 142018.zip'
2017-07-19 14:31:06.149 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Greenshot 2017-07-19 035502.zip'
2017-07-19 14:31:06.149 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Notepad.INI'.
2017-07-19 14:31:06.149 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Paint.INI'.
2017-07-19 14:31:06.149 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\PaintDotNet.ini'.
2017-07-19 14:31:06.149 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Remote Desktop Connection.INI'.
2017-07-19 14:31:06.149 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Tortoise SVN 64bit.ini'.
2017-07-19 14:31:06.164 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\VLC.ini'.
2017-07-19 14:31:06.164 [INFO ] Exporting profile using config file 'WinSCP.INI' (\\156.98.45.106\UEM_Config\General\Applications\WinSCP.INI)
2017-07-19 14:31:06.164 [INFO ] Exporting Registry information
2017-07-19 14:31:06.164 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Martin Prikryl\WinSCP 2'
2017-07-19 14:31:06.164 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.164 [INFO ] Exporting file information
2017-07-19 14:31:06.164 [DEBUG] ExportFiles: Processing file '<AppData>\winscp.ini'
2017-07-19 14:31:06.164 [DEBUG] ExportFiles: Individual file '<AppData>\winscp.ini' does not exist
2017-07-19 14:31:06.164 [DEBUG] ExportFiles: Processing file '<AppData>\winscp.rnd'
2017-07-19 14:31:06.164 [INFO ] Exported file information successfully
2017-07-19 14:31:06.164 [DEBUG] Stored 2 entries in profile archive (size: 46836; compressed: 8983)
2017-07-19 14:31:06.164 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\WinSCP.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\WinSCP 2017-07-19 142018.zip'
2017-07-19 14:31:06.180 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\WinSCP 2017-07-19 035502.zip'
2017-07-19 14:31:06.180 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Wordpad.INI'.
2017-07-19 14:31:06.180 [DEBUG] Conditions: Evaluating condition set 'Microsoft Office 2016.xml'
2017-07-19 14:31:06.180 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Microsoft Office\Office16' = true
2017-07-19 14:31:06.180 [INFO ] Exporting profile using config file 'Access.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Access.ini)
2017-07-19 14:31:06.180 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Access'
2017-07-19 14:31:06.196 [INFO ] Exporting Registry information
2017-07-19 14:31:06.196 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Access'
2017-07-19 14:31:06.196 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Access'
2017-07-19 14:31:06.196 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\Access' does not exist
2017-07-19 14:31:06.196 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.196 [INFO ] Exporting file information
2017-07-19 14:31:06.196 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Access'
2017-07-19 14:31:06.196 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Access' does not exist
2017-07-19 14:31:06.196 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Access.officeUI'
2017-07-19 14:31:06.196 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Access.officeUI' does not exist
2017-07-19 14:31:06.196 [INFO ] Exported file information successfully
2017-07-19 14:31:06.196 [DEBUG] Stored 1 entry in profile archive (size: 3312; compressed: 666)
2017-07-19 14:31:06.196 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Access.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Access 2017-07-19 142018.zip'
2017-07-19 14:31:06.211 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Access 2017-07-19 035502.zip'
2017-07-19 14:31:06.211 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.211 [INFO ] Exporting profile using config file 'Excel.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Excel.ini)
2017-07-19 14:31:06.211 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Excel'
2017-07-19 14:31:06.211 [INFO ] Exporting Registry information
2017-07-19 14:31:06.211 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Excel'
2017-07-19 14:31:06.211 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Excel'
2017-07-19 14:31:06.211 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.211 [INFO ] Exporting file information
2017-07-19 14:31:06.211 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Excel'
2017-07-19 14:31:06.211 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Excel' does not exist
2017-07-19 14:31:06.211 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Excel.officeUI'
2017-07-19 14:31:06.211 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Excel.officeUI' does not exist
2017-07-19 14:31:06.211 [INFO ] Exported file information successfully
2017-07-19 14:31:06.211 [DEBUG] Stored 1 entry in profile archive (size: 5182; compressed: 850)
2017-07-19 14:31:06.211 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Excel.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Excel 2017-07-19 142018.zip'
2017-07-19 14:31:06.227 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Excel 2017-07-19 035502.zip'
2017-07-19 14:31:06.227 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.227 [INFO ] Exporting profile using config file 'OneDrive for Business.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneDrive for Business.ini)
2017-07-19 14:31:06.227 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'OneDrive for Business'
2017-07-19 14:31:06.227 [INFO ] Exporting Registry information
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Groove'
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\SyncCenter'
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\SyncCenter' does not exist
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\SyncProc'
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\SyncProc' does not exist
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Workspaces'
2017-07-19 14:31:06.227 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Workspaces' does not exist
2017-07-19 14:31:06.227 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.227 [DEBUG] Stored 1 entry in profile archive (size: 852; compressed: 260)
2017-07-19 14:31:06.242 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneDrive for Business.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneDrive for Business 2017-07-19 142018.zip'
2017-07-19 14:31:06.242 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneDrive for Business 2017-07-19 035502.zip'
2017-07-19 14:31:06.242 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.258 [INFO ] Exporting profile using config file 'OneNote.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneNote.ini)
2017-07-19 14:31:06.258 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'OneNote'
2017-07-19 14:31:06.258 [INFO ] Exporting Registry information
2017-07-19 14:31:06.258 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\OneNote'
2017-07-19 14:31:06.258 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\OneNote'
2017-07-19 14:31:06.258 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.258 [INFO ] Exporting file information
2017-07-19 14:31:06.258 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\OneNote'
2017-07-19 14:31:06.258 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\OneNote.officeUI'
2017-07-19 14:31:06.258 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\OneNote.officeUI' does not exist
2017-07-19 14:31:06.258 [INFO ] Exported file information successfully
2017-07-19 14:31:06.258 [DEBUG] Stored 2 entries in profile archive (size: 28072; compressed: 2135)
2017-07-19 14:31:06.258 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneNote.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneNote 2017-07-19 142018.zip'
2017-07-19 14:31:06.274 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneNote 2017-07-19 035502.zip'
2017-07-19 14:31:06.274 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.274 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini'.
2017-07-19 14:31:06.274 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.274 [INFO ] Exporting profile using config file 'PowerPoint.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\PowerPoint.ini)
2017-07-19 14:31:06.274 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'PowerPoint'
2017-07-19 14:31:06.274 [INFO ] Exporting Registry information
2017-07-19 14:31:06.274 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\PowerPoint'
2017-07-19 14:31:06.274 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\PowerPoint'
2017-07-19 14:31:06.274 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.274 [INFO ] Exporting file information
2017-07-19 14:31:06.274 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Powerpoint'
2017-07-19 14:31:06.274 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Powerpoint' does not exist
2017-07-19 14:31:06.274 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Powerpoint.officeUI'
2017-07-19 14:31:06.274 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Powerpoint.officeUI' does not exist
2017-07-19 14:31:06.289 [INFO ] Exported file information successfully
2017-07-19 14:31:06.289 [DEBUG] Stored 1 entry in profile archive (size: 7610; compressed: 1453)
2017-07-19 14:31:06.289 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\PowerPoint.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\PowerPoint 2017-07-19 142018.zip'
2017-07-19 14:31:06.305 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\PowerPoint 2017-07-19 035502.zip'
2017-07-19 14:31:06.305 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.305 [INFO ] Exporting profile using config file 'Project.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Project.ini)
2017-07-19 14:31:06.305 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Project'
2017-07-19 14:31:06.305 [INFO ] Exporting Registry information
2017-07-19 14:31:06.305 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\MS Project'
2017-07-19 14:31:06.305 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\MS Project' does not exist
2017-07-19 14:31:06.305 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Project'
2017-07-19 14:31:06.305 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Project' does not exist
2017-07-19 14:31:06.305 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.305 [INFO ] Exporting file information
2017-07-19 14:31:06.305 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\MS Project'
2017-07-19 14:31:06.305 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\MS Project' does not exist
2017-07-19 14:31:06.305 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\MSProject.officeUI'
2017-07-19 14:31:06.305 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\MSProject.officeUI' does not exist
2017-07-19 14:31:06.305 [INFO ] Exported file information successfully
2017-07-19 14:31:06.305 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:31:06.321 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.321 [INFO ] Exporting profile using config file 'Publisher.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Publisher.ini)
2017-07-19 14:31:06.321 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Publisher'
2017-07-19 14:31:06.321 [INFO ] Exporting Registry information
2017-07-19 14:31:06.321 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Publisher'
2017-07-19 14:31:06.321 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Publisher' does not exist
2017-07-19 14:31:06.321 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.321 [INFO ] Exporting file information
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Publisher'
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Publisher' does not exist
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Publisher Building Blocks'
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Publisher Building Blocks' does not exist
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Publisher.officeUI'
2017-07-19 14:31:06.321 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Publisher.officeUI' does not exist
2017-07-19 14:31:06.321 [INFO ] Exported file information successfully
2017-07-19 14:31:06.321 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:31:06.321 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.321 [INFO ] Exporting profile using config file 'Shared Settings.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Shared Settings.ini)
2017-07-19 14:31:06.321 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Shared Office settings'
2017-07-19 14:31:06.336 [INFO ] Exporting Registry information
2017-07-19 14:31:06.336 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Common'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\FirstRun'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\FirstRun' does not exist
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Microsoft Office 2016'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Microsoft Office 2016' does not exist
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Registration'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\User Settings'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Common'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Shared Tools\Proofing Tools'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\VBA'
2017-07-19 14:31:06.352 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\VBA' does not exist
2017-07-19 14:31:06.352 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.352 [INFO ] Exporting file information
2017-07-19 14:31:06.352 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<AppData>\Microsoft\Templates\LiveContent'
2017-07-19 14:31:06.352 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\AddIns'
2017-07-19 14:31:06.352 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Bibliography'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Office'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Office' does not exist
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Proof'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Spelling'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Spelling' does not exist
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Templates'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Templates' does not exist
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\UProof'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Office\ONetConfig'
2017-07-19 14:31:06.430 [DEBUG] ExportFiles: Folder '<LocalAppData>\Microsoft\Office\ONetConfig' does not exist
2017-07-19 14:31:06.430 [INFO ] Exported file information successfully
2017-07-19 14:31:06.446 [DEBUG] Stored 17 entries in profile archive (size: 3654990; compressed: 340424)
2017-07-19 14:31:06.446 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Shared Settings.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Shared Settings 2017-07-19 142018.zip'
2017-07-19 14:31:06.446 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Shared Settings 2017-07-19 035503.zip'
2017-07-19 14:31:06.461 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.461 [INFO ] Exporting profile using config file 'Skype for Business.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Skype for Business.ini)
2017-07-19 14:31:06.461 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Skype for Business'
2017-07-19 14:31:06.461 [INFO ] Exporting Registry information
2017-07-19 14:31:06.461 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Lync'
2017-07-19 14:31:06.461 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.461 [INFO ] Exporting file information
2017-07-19 14:31:06.461 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Office\16.0\Lync'
2017-07-19 14:31:06.461 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Office\16.0\Lync' does not exist
2017-07-19 14:31:06.461 [INFO ] Exported file information successfully
2017-07-19 14:31:06.461 [DEBUG] Stored 1 entry in profile archive (size: 890; compressed: 275)
2017-07-19 14:31:06.461 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Skype for Business.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Skype for Business 2017-07-19 142018.zip'
2017-07-19 14:31:06.477 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Skype for Business 2017-07-19 035503.zip'
2017-07-19 14:31:06.477 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.477 [INFO ] Exporting profile using config file 'Visio.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Visio.ini)
2017-07-19 14:31:06.477 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Visio'
2017-07-19 14:31:06.477 [INFO ] Exporting Registry information
2017-07-19 14:31:06.477 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Visio'
2017-07-19 14:31:06.477 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Visio' does not exist
2017-07-19 14:31:06.477 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Visio'
2017-07-19 14:31:06.477 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\Visio' does not exist
2017-07-19 14:31:06.477 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.477 [INFO ] Exporting file information
2017-07-19 14:31:06.477 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Visio'
2017-07-19 14:31:06.477 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Visio' does not exist
2017-07-19 14:31:06.477 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Visio.officeUI'
2017-07-19 14:31:06.477 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Visio.officeUI' does not exist
2017-07-19 14:31:06.477 [INFO ] Exported file information successfully
2017-07-19 14:31:06.477 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:31:06.492 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:06.492 [INFO ] Exporting profile using config file 'Word.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Word.ini)
2017-07-19 14:31:06.492 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Word'
2017-07-19 14:31:06.492 [INFO ] Exporting Registry information
2017-07-19 14:31:06.492 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Word'
2017-07-19 14:31:06.492 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Word'
2017-07-19 14:31:06.492 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.492 [INFO ] Exporting file information
2017-07-19 14:31:06.492 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Word'
2017-07-19 14:31:06.492 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Word' does not exist
2017-07-19 14:31:06.492 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Word.officeUI'
2017-07-19 14:31:06.492 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Word.officeUI' does not exist
2017-07-19 14:31:06.492 [INFO ] Exported file information successfully
2017-07-19 14:31:06.492 [DEBUG] Stored 1 entry in profile archive (size: 26894; compressed: 3541)
2017-07-19 14:31:06.492 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Word.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Word 2017-07-19 142018.zip'
2017-07-19 14:31:06.508 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Word 2017-07-19 035503.zip'
2017-07-19 14:31:06.508 [DEBUG] Conditions: Check for OS 10.0W = false (Running on 6.1W)
2017-07-19 14:31:06.508 [INFO ] Skipping export for config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Default Apps and FTAs.INI' due to conditions.
2017-07-19 14:31:06.508 [INFO ] Exporting profile using config file 'IE Passwords.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\IE Passwords.INI)
2017-07-19 14:31:06.508 [INFO ] Binary Settings: Applied Common Setting 'Internet Explorer 7 – 10 - AutoComplete passwords - AppData NOT redirected'
2017-07-19 14:31:06.508 [INFO ] Exporting Registry information
2017-07-19 14:31:06.508 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer\IntelliForms'
2017-07-19 14:31:06.508 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.508 [INFO ] Exporting file information
2017-07-19 14:31:06.508 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Protect'
2017-07-19 14:31:06.524 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Vault'
2017-07-19 14:31:06.524 [INFO ] Exported file information successfully
2017-07-19 14:31:06.524 [DEBUG] Stored 13 entries in profile archive (size: 7448; compressed: 5818)
2017-07-19 14:31:06.524 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\IE Passwords.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\IE Passwords 2017-07-19 142018.zip'
2017-07-19 14:31:06.539 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\IE Passwords 2017-07-19 035503.zip'
2017-07-19 14:31:06.539 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\IE WebCache.INI'
2017-07-19 14:31:06.539 [INFO ] Exporting profile using config file 'Internet Explorer.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Internet Explorer.INI)
2017-07-19 14:31:06.539 [INFO ] Binary Settings: Applied Common Setting 'Internet Explorer - Personal settings'
2017-07-19 14:31:06.539 [INFO ] Exporting Registry information
2017-07-19 14:31:06.539 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\IdentityCRL'
2017-07-19 14:31:06.539 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\IdentityCRL' does not exist
2017-07-19 14:31:06.539 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer'
2017-07-19 14:31:06.555 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites'
2017-07-19 14:31:06.555 [DEBUG] ExportRegistry: Exporting tree 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings'
2017-07-19 14:31:06.555 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.555 [INFO ] Exporting file information
2017-07-19 14:31:06.555 [DEBUG] ExcludeFiles: Adding exclusion for '<Favorites>\desktop.ini'
2017-07-19 14:31:06.555 [DEBUG] ExcludeFiles: Adding exclusion for '<Favorites>\links\desktop.ini'
2017-07-19 14:31:06.555 [DEBUG] ExportFiles: Recursively processing folder '<Cookies>'
2017-07-19 14:31:06.649 [DEBUG] ExportFiles: Recursively processing folder '<Favorites>'
2017-07-19 14:31:06.664 [INFO ] Exported file information successfully
2017-07-19 14:31:06.664 [DEBUG] Stored 182 entries in profile archive (size: 178982; compressed: 49075)
2017-07-19 14:31:06.664 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Internet Explorer.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Internet Explorer 2017-07-19 142018.zip'
2017-07-19 14:31:06.680 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Internet Explorer 2017-07-19 035503.zip'
2017-07-19 14:31:06.680 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Microsoft Edge.INI'.
2017-07-19 14:31:06.680 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Network Printers.INI'
2017-07-19 14:31:06.680 [INFO ] Exporting profile using config file 'Personal Certificates.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Personal Certificates.INI)
2017-07-19 14:31:06.680 [INFO ] Binary Settings: Applied Common Setting 'Personal Certificates – AppData NOT redirected'
2017-07-19 14:31:06.680 [INFO ] Exporting Registry information
2017-07-19 14:31:06.680 [DEBUG] ExcludeRegistryTrees: Adding exclusion for 'HKCU\Software\Microsoft\SystemCertificates\Root\ProtectedRoots'
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Cryptography'
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Cryptography' does not exist
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Identities'
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Identities' does not exist
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\SystemCertificates'
2017-07-19 14:31:06.680 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows NT\CurrentVersion\EFS'
2017-07-19 14:31:06.680 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.680 [INFO ] Exporting file information
2017-07-19 14:31:06.680 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\CLR Security Config'
2017-07-19 14:31:06.680 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\CLR Security Config' does not exist
2017-07-19 14:31:06.680 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Credentials'
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\CryptnetUrlCache'
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\CryptnetUrlCache' does not exist
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Crypto'
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Protect'
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\SystemCertificates'
2017-07-19 14:31:06.696 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Credentials'
2017-07-19 14:31:06.696 [INFO ] Exported file information successfully
2017-07-19 14:31:06.696 [DEBUG] Stored 22 entries in profile archive (size: 8190; compressed: 2773)
2017-07-19 14:31:06.696 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Personal Certificates.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Personal Certificates 2017-07-19 142018.zip'
2017-07-19 14:31:06.711 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Personal Certificates 2017-07-19 035503.zip'
2017-07-19 14:31:06.711 [INFO ] Exporting profile using config file 'Regedit.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Regedit.INI)
2017-07-19 14:31:06.711 [INFO ] Exporting Registry information
2017-07-19 14:31:06.711 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit'
2017-07-19 14:31:06.711 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.711 [DEBUG] Stored 1 entry in profile archive (size: 1220; compressed: 404)
2017-07-19 14:31:06.711 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Regedit.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Regedit 2017-07-19 142018.zip'
2017-07-19 14:31:06.727 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Regedit 2017-07-19 035503.zip'
2017-07-19 14:31:06.727 [INFO ] Exporting profile using config file 'Screensaver.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Screensaver.INI)
2017-07-19 14:31:06.727 [INFO ] Binary Settings: Applied Common Setting 'Screensaver settings'
2017-07-19 14:31:06.727 [INFO ] Exporting Registry information
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers'
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaveActive'
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaverIsSecure'
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry::ExportValue: Value 'ScreenSaverIsSecure' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaveTimeOut'
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry::ExportValue: Value 'ScreenSaveTimeOut' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\SCRNSAVE.EXE'
2017-07-19 14:31:06.727 [DEBUG] ExportRegistry::ExportValue: Value 'SCRNSAVE.EXE' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.727 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.727 [DEBUG] Stored 1 entry in profile archive (size: 3222; compressed: 406)
2017-07-19 14:31:06.742 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Screensaver.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Screensaver 2017-07-19 142018.zip'
2017-07-19 14:31:06.742 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Screensaver 2017-07-19 035503.zip'
2017-07-19 14:31:06.742 [INFO ] Exporting profile using config file 'Taskbar.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Taskbar.INI)
2017-07-19 14:31:06.742 [INFO ] Binary Settings: Applied Common Setting 'Taskbar and list of recent items'
2017-07-19 14:31:06.758 [INFO ] Exporting Registry information
2017-07-19 14:31:06.758 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\StartMenu2\Programs'
2017-07-19 14:31:06.758 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\StartMenu2\Programs' does not exist
2017-07-19 14:31:06.758 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage'
2017-07-19 14:31:06.758 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2'
2017-07-19 14:31:06.774 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarSizeMove'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\EnableAutoTray'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\Settings'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3\Settings'
2017-07-19 14:31:06.789 [DEBUG] ExportRegistry::ExportValue: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3' does not exist (value: 'Settings')
2017-07-19 14:31:06.789 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.789 [INFO ] Exporting file information
2017-07-19 14:31:06.789 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Internet Explorer\Quick Launch'
2017-07-19 14:31:06.789 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar'
2017-07-19 14:31:06.789 [DEBUG] ExportFiles: Folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar' does not exist
2017-07-19 14:31:06.789 [DEBUG] ExportFiles: Recursively processing folder '<RecentFiles>'
2017-07-19 14:31:06.805 [DEBUG] ExportFiles: Processing folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar'
2017-07-19 14:31:06.805 [DEBUG] ExportFiles: Folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar' does not exist
2017-07-19 14:31:06.805 [INFO ] Exported file information successfully
2017-07-19 14:31:06.805 [DEBUG] Stored 23 entries in profile archive (size: 733576; compressed: 104559)
2017-07-19 14:31:06.821 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Taskbar.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Taskbar 2017-07-19 142018.zip'
2017-07-19 14:31:06.821 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Taskbar 2017-07-19 035503.zip'
2017-07-19 14:31:06.821 [INFO ] Exporting profile using config file 'Typed History.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Typed History.INI)
2017-07-19 14:31:06.821 [INFO ] Binary Settings: Applied Common Setting 'Typed History - In Internet Explorer and Windows Explorer'
2017-07-19 14:31:06.821 [INFO ] Exporting Registry information
2017-07-19 14:31:06.821 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer\TypedURLs'
2017-07-19 14:31:06.821 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU'
2017-07-19 14:31:06.836 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.836 [DEBUG] Stored 1 entry in profile archive (size: 2432; compressed: 817)
2017-07-19 14:31:06.836 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Typed History.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Typed History 2017-07-19 142018.zip'
2017-07-19 14:31:06.836 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Typed History 2017-07-19 035503.zip'
2017-07-19 14:31:06.852 [DEBUG] Using OS-specific extension 'win7'
2017-07-19 14:31:06.852 [INFO ] Exporting profile using config file 'Wallpaper.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Wallpaper.INI)
2017-07-19 14:31:06.852 [INFO ] Binary Settings: Applied Common Setting 'Wallpaper - AppData NOT redirected'
2017-07-19 14:31:06.852 [INFO ] Exporting Registry information
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Control Panel\Personalization\Desktop Slideshow'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\ThemeManager'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Themes'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Colors\Background'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TileWallpaper'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCache'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCache' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCache_000'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCache_000' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCount'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCount' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\Wallpaper'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\control panel\desktop\wallpaper\wallpaper'
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry::ExportValue: Key 'HKEY_CURRENT_USER\control panel\desktop\wallpaper' does not exist (value: 'wallpaper')
2017-07-19 14:31:06.852 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\WallpaperStyle'
2017-07-19 14:31:06.852 [INFO ] Exported Registry information successfully
2017-07-19 14:31:06.852 [INFO ] Exporting file information
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\slideshow.ini'
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\Transcoded_000'
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Individual file '<AppData>\Microsoft\Windows\Themes\Transcoded_000' does not exist
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\TranscodedWallpaper'
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Individual file '<AppData>\Microsoft\Windows\Themes\TranscodedWallpaper' does not exist
2017-07-19 14:31:06.852 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\transcodedwallpaper.jpg'
2017-07-19 14:31:06.977 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Wallpaper1.bmp'
2017-07-19 14:31:06.977 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Wallpaper1.bmp' does not exist
2017-07-19 14:31:06.977 [INFO ] Exported file information successfully
2017-07-19 14:31:06.992 [DEBUG] Stored 3 entries in profile archive (size: 1239188; compressed: 1226269)
2017-07-19 14:31:06.992 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Wallpaper-win7.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Wallpaper-win7 2017-07-19 142018.zip'
2017-07-19 14:31:07.008 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Wallpaper-win7 2017-07-19 035503.zip'
2017-07-19 14:31:07.008 [INFO ] Exporting profile using config file 'Windows Explorer.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Windows Explorer.INI)
2017-07-19 14:31:07.008 [INFO ] Binary Settings: Applied Common Setting 'Windows Explorer and view settings'
2017-07-19 14:31:07.024 [INFO ] Exporting Registry information
2017-07-19 14:31:07.024 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU'
2017-07-19 14:31:07.024 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags'
2017-07-19 14:31:07.039 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
2017-07-19 14:31:07.039 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' does not exist
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons' does not exist
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites\Links\Order'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites\Links\Order' does not exist
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer' does not exist
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagMRU' does not exist
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags'
2017-07-19 14:31:07.055 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags' does not exist
2017-07-19 14:31:07.055 [INFO ] Exported Registry information successfully
2017-07-19 14:31:07.055 [INFO ] Exporting file information
2017-07-19 14:31:07.055 [DEBUG] ExportFiles: Processing folder '<Desktop>'
2017-07-19 14:31:07.071 [INFO ] Exported file information successfully
2017-07-19 14:31:07.071 [DEBUG] Stored 5 entries in profile archive (size: 576444; compressed: 53001)
2017-07-19 14:31:07.071 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Windows Explorer.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Windows Explorer 2017-07-19 142018.zip'
2017-07-19 14:31:07.086 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Windows Explorer 2017-07-19 035503.zip'
2017-07-19 14:31:07.086 [WARN ] Triggering DirectFlex export for config file 'Microsoft Office 2016\Outlook.ini' due to interrupted FlexEngine export
2017-07-19 14:31:07.086 [DEBUG] Running pending DirectFlex exports [IFP#0a645c75-875da5>>]
2017-07-19 14:31:07.086 [INFO ] Performing DirectFlex export for config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini' [IFP#401f8cdd-875da5>>]
2017-07-19 14:31:07.086 [DEBUG] User: PERA\UserName (A), Computer: PERA070005, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 5028/4292/1C
2017-07-19 14:31:07.086 [DEBUG] Using profile archive '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip'
2017-07-19 14:31:07.086 [DEBUG] Triggered by 'C:\Program Files (x86)\Microsoft Office\Office16\OUTLOOK.EXE'
2017-07-19 14:31:07.086 [INFO ] Exporting profile using config file 'Outlook.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini)
2017-07-19 14:31:07.086 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Outlook (with Mail profiles)'
2017-07-19 14:31:07.086 [INFO ] Exporting Registry information
2017-07-19 14:31:07.086 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\MAPI'
2017-07-19 14:31:07.086 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Outlook'
2017-07-19 14:31:07.102 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Outlook'
2017-07-19 14:31:07.102 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles'
2017-07-19 14:31:07.102 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles' does not exist
2017-07-19 14:31:07.102 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Exchange\Client\Options\PickLogonProfile'
2017-07-19 14:31:07.102 [INFO ] Exported Registry information successfully
2017-07-19 14:31:07.102 [INFO ] Exporting file information
2017-07-19 14:31:07.102 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Outlook'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Signatures'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkaddritem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkaddritem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkapptitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkapptitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkdlstitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkdlstitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkexplorer.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkexplorer.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olklogitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olklogitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmailitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmailitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmailread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmailread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmmsedit.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmmsedit.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmmsread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmmsread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmreqread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmreqread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmreqsend.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmreqsend.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkpostitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkpostitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkpostread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkpostread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkreportitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkreportitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresenditem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresenditem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkrespcounter.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkrespcounter.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresponseread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresponseread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresponsesend.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresponsesend.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkrssitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkrssitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkshareitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkshareitem.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkshareread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkshareread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olksmsedit.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olksmsedit.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olksmsread.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olksmsread.officeUI' does not exist
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olktaskitem.officeUI'
2017-07-19 14:31:07.117 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olktaskitem.officeUI' does not exist
2017-07-19 14:31:07.117 [INFO ] Exported file information successfully
2017-07-19 14:31:07.133 [DEBUG] Stored 8 entries in profile archive (size: 296270; compressed: 44151)
2017-07-19 14:31:07.133 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Outlook 2017-07-19 141955.zip'
2017-07-19 14:31:07.149 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Outlook 2017-07-18 155711.zip'
2017-07-19 14:31:07.149 [INFO ] Completed DirectFlex export (56 ms) [<<IFP#401f8cdd-875da5]
2017-07-19 14:31:07.149 [DEBUG] Done with pending DirectFlex exports (60 ms) [<<IFP#0a645c75-875da5]
2017-07-19 14:31:07.149 [DEBUG] Processing post-export UEM tasks
2017-07-19 14:31:07.149 [DEBUG] Running post-export task ('\\pera_dise\UserName$\EmptyQuickLaunch.cmd') ('Empty QuickLaunch.xml')
2017-07-19 14:31:07.242 [INFO ] Processing path-based UEM undo actions and/or creation of 'run once' flag files
2017-07-19 14:31:07.242 [DEBUG] Successfully removed file type association ('SDR.xml')
2017-07-19 14:31:07.242 [DEBUG] Successfully removed file type association ('abc.xml')
2017-07-19 14:31:07.242 [DEBUG] Successfully reverted ADMX-based settings
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted UEM drive hiding changes
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection settings
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection for 'Videos' ('HomeDrive.xml')
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection for 'Pictures' ('HomeDrive.xml')
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection for 'Music' ('HomeDrive.xml')
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection for 'Downloads' ('HomeDrive.xml')
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted folder redirection for 'Documents' ('HomeDrive.xml')
2017-07-19 14:31:07.258 [DEBUG] Successfully reverted Horizon Smart Policies settings
2017-07-19 14:31:07.258 [DEBUG] Successfully removed shortcut 'C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Outlook 2016.lnk' ('Outlook 2016-startup.xml')
2017-07-19 14:31:07.258 [DEBUG] No UEM triggered tasks have been performed
2017-07-19 14:31:07.274 [DEBUG] Deleted application blocking and privilege elevation configuration
2017-07-19 14:31:07.274 [DEBUG] Processed 38 Flex config files (25 successful, 11 skipped, 2 disabled)
2017-07-19 14:31:07.274 [DEBUG] Processed 1 UEM shortcut undo action (1 successful)
2017-07-19 14:31:07.274 [DEBUG] Processed 2 UEM file type association undo actions (2 successful)
2017-07-19 14:31:07.274 [DEBUG] Processed 2 UEM export tasks (2 successful)
2017-07-19 14:31:07.274 [DEBUG] Processed 5 UEM folder redirection setting undo actions (5 successful)
2017-07-19 14:31:07.274 [INFO ] Done (8125 ms) [<<IFP#0086d2ad-875da5]
2017-07-19 14:31:33.047 [INFO ] Starting FlexEngine v9.2.0.701 [IFP#0572367a-3e7>>]
2017-07-19 14:31:33.047 [INFO ] Running as Group Policy client-side extension
2017-07-19 14:31:33.047 [DEBUG] Performing path-based import
2017-07-19 14:31:33.047 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 1192/3688/1CT
2017-07-19 14:31:33.047 [DEBUG] Profile state: local (0x00000100)
2017-07-19 14:31:33.047 [DEBUG] Recursively processing config files from path '\\156.98.45.106\UEM_Config\General'
2017-07-19 14:31:33.047 [DEBUG] Using profile archive path '\\156.98.45.106\UEM_Profiles\UserName\archives'
2017-07-19 14:31:33.047 [DEBUG] Logging to file '\\156.98.45.106\UEM_profiles\UserName\logs\flexengine.log'
2017-07-19 14:31:33.047 [DEBUG] Log file will be overwritten when larger than 512 kilobytes
2017-07-19 14:31:33.078 [DEBUG] Setting import status flag
2017-07-19 14:31:33.094 [DEBUG] Skipping disabled UEM Horizon Smart Policies setting ('Allow USB redirection.xml')
2017-07-19 14:31:33.094 [DEBUG] Collected Horizon Smart Policies settings to apply for USB redirection ('USB redirection disabled.xml')
2017-07-19 14:31:33.094 [INFO ] Applied Horizon Smart Policies settings
2017-07-19 14:31:33.156 [INFO ] Successfully redirected 'Documents' folder to '\\pera_dise\%username%$\Documents' ('HomeDrive.xml')
2017-07-19 14:31:33.172 [INFO ] Successfully redirected 'Downloads' folder to '\\pera_dise\%username%$\Downloads' ('HomeDrive.xml')
2017-07-19 14:31:33.203 [INFO ] Successfully redirected 'Music' folder to '\\pera_dise\%username%$\Music' ('HomeDrive.xml')
2017-07-19 14:31:33.219 [INFO ] Successfully redirected 'Pictures' folder to '\\pera_dise\%username%$\Pictures' ('HomeDrive.xml')
2017-07-19 14:31:33.250 [INFO ] Successfully redirected 'Videos' folder to '\\pera_dise\%username%$\Videos' ('HomeDrive.xml')
2017-07-19 14:31:33.250 [DEBUG] Deleted application blocking configuration
2017-07-19 14:31:33.265 [DEBUG] Deleted privilege elevation configuration
2017-07-19 14:31:33.265 [DEBUG] Processing pre-import UEM tasks
2017-07-19 14:31:33.265 [DEBUG] Skipping disabled UEM import task ('Delete Windows 5.x Start Menu.xml')
2017-07-19 14:31:33.265 [DEBUG] Skipping disabled UEM import task ('Delete Windows 6.x Start Menu.xml')
2017-07-19 14:31:33.265 [DEBUG] Skipping disabled UEM import task ('Run BGINFO.CMD from local install.xml')
2017-07-19 14:31:33.265 [DEBUG] Scheduled UEM drive mapping for async processing ('G-Private drive.xml')
2017-07-19 14:31:33.281 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_PubAccess' = false
2017-07-19 14:31:33.281 [INFO ] Skipping UEM drive mapping due to conditions ('I-Documents.xml')
2017-07-19 14:31:33.281 [DEBUG] Conditions: Check for user membership of group 'PERA\DEPT_PSClaims' = false
2017-07-19 14:31:33.281 [INFO ] Skipping UEM drive mapping due to conditions ('I-PS Claims.xml')
2017-07-19 14:31:33.281 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_PubAccess' = false
2017-07-19 14:31:33.281 [INFO ] Skipping UEM drive mapping due to conditions ('J-Education data disk.xml')
2017-07-19 14:31:33.297 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_MAPSSEMA4' = false
2017-07-19 14:31:33.297 [INFO ] Skipping UEM drive mapping due to conditions ('K-Great Plains Central.xml')
2017-07-19 14:31:33.297 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_PubAccess' = false
2017-07-19 14:31:33.297 [INFO ] Skipping UEM drive mapping due to conditions ('K-Publications.xml')
2017-07-19 14:31:33.297 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Developers' = false
2017-07-19 14:31:33.297 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_QA' = false
2017-07-19 14:31:33.312 [DEBUG] Conditions: Check for environment variable 'username' = false ('UserName' is not equal to 'kramercg')
2017-07-19 14:31:33.312 [DEBUG] Conditions: Check for environment variable 'username' = false ('UserName' is not equal to 'schoenhm')
2017-07-19 14:31:33.312 [DEBUG] Conditions: Check for environment variable 'username' = false ('UserName' is not equal to 'dejongde')
2017-07-19 14:31:33.312 [INFO ] Skipping UEM drive mapping due to conditions ('K-Test executables.xml')
2017-07-19 14:31:33.312 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Auditors' = false
2017-07-19 14:31:33.312 [DEBUG] Scheduled UEM drive mapping for async processing ('L-Old applications.xml')
2017-07-19 14:31:33.312 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Auditors' = false
2017-07-19 14:31:33.312 [DEBUG] Scheduled UEM drive mapping for async processing ('N-Application Files.xml')
2017-07-19 14:31:33.328 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Auditors' = false
2017-07-19 14:31:33.328 [DEBUG] Scheduled UEM drive mapping for async processing ('O-Shared files.xml')
2017-07-19 14:31:33.328 [DEBUG] Conditions: Check for user membership of group 'PERA\DEPT_Finance' = false
2017-07-19 14:31:33.328 [INFO ] Skipping UEM drive mapping due to conditions ('R-Finance CAFR.xml')
2017-07-19 14:31:33.328 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Auditors' = false
2017-07-19 14:31:33.328 [INFO ] Skipping UEM drive mapping due to conditions ('S-Auditor transfers.xml')
2017-07-19 14:31:33.328 [DEBUG] Conditions: Check for user membership of group 'PERA\WKGP_Auditors' = false
2017-07-19 14:31:33.328 [DEBUG] Scheduled UEM drive mapping for async processing ('S-Shared division drive.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('597504-AIM Division-Default.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('597504-AIM Division-Optional.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('597545-Information Systems-Default.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('597545-Information Systems-Optional.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('599051-Pension Services-Default.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('599051-Pension Services-Optional.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('599052-Pension Services-Default.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('599052-Pension Services-Optional.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('599114-Receptionist-Default.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 208.xml')
2017-07-19 14:31:33.344 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 209.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 213.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 214.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM printer mapping ('Copy of training.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM printer mapping ('DYMO LabelWriter 450.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM settings import ('Create 'Readme' file on Desktop.xml')
2017-07-19 14:31:33.359 [DEBUG] Skipping disabled UEM settings import ('Dutch.xml')
2017-07-19 14:31:33.375 [DEBUG] Skipping disabled UEM settings import ('German.xml')
2017-07-19 14:31:33.375 [DEBUG] Skipping disabled UEM drive hiding setting ('Hide some drives.xml')
2017-07-19 14:31:33.375 [INFO ] Successfully marked drives D, E as hidden
2017-07-19 14:31:33.390 [INFO ] Collected ADMX-based settings to apply ('Excel 2016.xml')
2017-07-19 14:31:33.390 [INFO ] Collected ADMX-based settings to apply ('Google Chrome.xml')
2017-07-19 14:31:33.390 [INFO ] Collected ADMX-based settings to apply ('Internet Explorer.xml')
2017-07-19 14:31:33.390 [INFO ] Collected ADMX-based settings to apply ('Outlook.xml')
2017-07-19 14:31:33.390 [INFO ] Collected ADMX-based settings to apply ('Word 2016.xml')
2017-07-19 14:31:33.406 [INFO ] Applied ADMX-based settings
2017-07-19 14:31:33.422 [DEBUG] Skipping disabled UEM triggered task ('Close Calculator at lock.xml')
2017-07-19 14:31:33.422 [DEBUG] Skipping disabled UEM triggered task ('Message at unlock.xml')
2017-07-19 14:31:33.422 [INFO ] Configured UEM refresh for trigger 'IP-dependent Unlock' ('Refresh Applications at unlock.xml')
2017-07-19 14:31:33.422 [DEBUG] Skipping disabled UEM triggered task ('Refresh Printers at reconnect.xml')
2017-07-19 14:31:33.437 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Acrobat Reader.INI'.
2017-07-19 14:31:33.437 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Acrobat Reader.INI' added to DirectFlex cache.
2017-07-19 14:31:33.437 [INFO ] Importing profile archive 'Chrome.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Chrome.zip)
2017-07-19 14:31:33.453 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLXEDF6.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.609 [DEBUG] Read 779 entries from profile archive (size: 100680148; compressed: 51638639)
2017-07-19 14:31:37.609 [INFO ] Importing profile archive 'Greenshot.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Greenshot.zip)
2017-07-19 14:31:37.609 [DEBUG] Read 1 entry from profile archive (size: 0; compressed: 2)
2017-07-19 14:31:37.609 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Notepad.INI'.
2017-07-19 14:31:37.625 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Notepad.INI' added to DirectFlex cache.
2017-07-19 14:31:37.625 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Paint.INI'.
2017-07-19 14:31:37.625 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Paint.INI' added to DirectFlex cache.
2017-07-19 14:31:37.625 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\PaintDotNet.ini'.
2017-07-19 14:31:37.640 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\PaintDotNet.ini' added to DirectFlex cache.
2017-07-19 14:31:37.640 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Remote Desktop Connection.INI'.
2017-07-19 14:31:37.640 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Remote Desktop Connection.INI' added to DirectFlex cache.
2017-07-19 14:31:37.640 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Tortoise SVN 64bit.ini'.
2017-07-19 14:31:37.640 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Tortoise SVN 64bit.ini' added to DirectFlex cache.
2017-07-19 14:31:37.640 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\VLC.ini'.
2017-07-19 14:31:37.656 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\VLC.ini' added to DirectFlex cache.
2017-07-19 14:31:37.656 [INFO ] Importing profile archive 'WinSCP.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\WinSCP.zip)
2017-07-19 14:31:37.656 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX16D.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.719 [DEBUG] Read 2 entries from profile archive (size: 46836; compressed: 8983)
2017-07-19 14:31:37.719 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Applications\Wordpad.INI'.
2017-07-19 14:31:37.719 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Applications\Wordpad.INI' added to DirectFlex cache.
2017-07-19 14:31:37.719 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Access.ini'.
2017-07-19 14:31:37.719 [DEBUG] Conditions: Evaluating condition set 'Microsoft Office 2016.xml'
2017-07-19 14:31:37.734 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Microsoft Office\Office16' = true
2017-07-19 14:31:37.734 [INFO ] Importing profile archive 'Access.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Access.zip)
2017-07-19 14:31:37.750 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX1BD.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.781 [DEBUG] Read 1 entry from profile archive (size: 3312; compressed: 666)
2017-07-19 14:31:37.781 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Excel.ini'.
2017-07-19 14:31:37.781 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:37.781 [INFO ] Importing profile archive 'Excel.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Excel.zip)
2017-07-19 14:31:37.781 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX1ED.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.812 [DEBUG] Read 1 entry from profile archive (size: 5182; compressed: 850)
2017-07-19 14:31:37.828 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneDrive for Business.ini'.
2017-07-19 14:31:37.828 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:37.844 [INFO ] Importing profile archive 'OneDrive for Business.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneDrive for Business.zip)
2017-07-19 14:31:37.859 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX23C.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.890 [DEBUG] Read 1 entry from profile archive (size: 852; compressed: 260)
2017-07-19 14:31:37.890 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneNote.ini'.
2017-07-19 14:31:37.890 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:37.890 [INFO ] Importing profile archive 'OneNote.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneNote.zip)
2017-07-19 14:31:37.906 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX26C.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:37.937 [DEBUG] Read 2 entries from profile archive (size: 28072; compressed: 2135)
2017-07-19 14:31:37.937 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini'.
2017-07-19 14:31:37.937 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:37.953 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini' added to DirectFlex cache.
2017-07-19 14:31:37.953 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\PowerPoint.ini'.
2017-07-19 14:31:37.969 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:37.969 [INFO ] Importing profile archive 'PowerPoint.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\PowerPoint.zip)
2017-07-19 14:31:37.984 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX2BC.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.015 [DEBUG] Read 1 entry from profile archive (size: 7610; compressed: 1453)
2017-07-19 14:31:38.015 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Project.ini'.
2017-07-19 14:31:38.015 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.031 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Publisher.ini'.
2017-07-19 14:31:38.031 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.031 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Shared Settings.ini'.
2017-07-19 14:31:38.031 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.031 [INFO ] Importing profile archive 'Shared Settings.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Shared Settings.zip)
2017-07-19 14:31:38.047 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX2FC.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.156 [DEBUG] Read 17 entries from profile archive (size: 3654990; compressed: 340424)
2017-07-19 14:31:38.156 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Skype for Business.ini'.
2017-07-19 14:31:38.172 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.172 [INFO ] Importing profile archive 'Skype for Business.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Skype for Business.zip)
2017-07-19 14:31:38.172 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX38A.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.203 [DEBUG] Read 1 entry from profile archive (size: 890; compressed: 275)
2017-07-19 14:31:38.203 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Visio.ini'.
2017-07-19 14:31:38.203 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.219 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Word.ini'.
2017-07-19 14:31:38.219 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:31:38.219 [INFO ] Importing profile archive 'Word.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Word.zip)
2017-07-19 14:31:38.219 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX3BA.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.250 [DEBUG] Read 1 entry from profile archive (size: 26894; compressed: 3541)
2017-07-19 14:31:38.265 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Windows Settings\Default Apps and FTAs.INI'.
2017-07-19 14:31:38.265 [DEBUG] Conditions: Check for OS 10.0W = false (Running on 6.1W)
2017-07-19 14:31:38.265 [INFO ] Skipping import for config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Default Apps and FTAs.INI' due to conditions.
2017-07-19 14:31:38.265 [INFO ] Importing profile archive 'IE Passwords.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\IE Passwords.zip)
2017-07-19 14:31:38.265 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX3EA.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.328 [DEBUG] Read 13 entries from profile archive (size: 7448; compressed: 5818)
2017-07-19 14:31:38.328 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Windows Settings\IE WebCache.INI'.
2017-07-19 14:31:38.328 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\IE WebCache.INI'
2017-07-19 14:31:38.344 [INFO ] Importing profile archive 'Internet Explorer.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Internet Explorer.zip)
2017-07-19 14:31:38.344 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX445.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.734 [DEBUG] Read 182 entries from profile archive (size: 178982; compressed: 49075)
2017-07-19 14:31:38.734 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Windows Settings\Microsoft Edge.INI'.
2017-07-19 14:31:38.750 [INFO ] Config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Microsoft Edge.INI' added to DirectFlex cache.
2017-07-19 14:31:38.750 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Windows Settings\Network Printers.INI'.
2017-07-19 14:31:38.750 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Network Printers.INI'
2017-07-19 14:31:38.750 [INFO ] Importing profile archive 'Personal Certificates.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Personal Certificates.zip)
2017-07-19 14:31:38.765 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX6A1.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.828 [DEBUG] Read 22 entries from profile archive (size: 8190; compressed: 2773)
2017-07-19 14:31:38.828 [INFO ] Importing profile archive 'Regedit.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Regedit.zip)
2017-07-19 14:31:38.844 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX705.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.875 [DEBUG] Read 1 entry from profile archive (size: 1220; compressed: 404)
2017-07-19 14:31:38.890 [INFO ] Importing profile archive 'Screensaver.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Screensaver.zip)
2017-07-19 14:31:38.906 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX744.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:38.937 [DEBUG] Read 1 entry from profile archive (size: 3222; compressed: 406)
2017-07-19 14:31:38.937 [INFO ] Importing profile archive 'Taskbar.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Taskbar.zip)
2017-07-19 14:31:38.953 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX765.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:39.047 [DEBUG] Read 23 entries from profile archive (size: 733576; compressed: 104559)
2017-07-19 14:31:39.047 [INFO ] Importing profile archive 'Typed History.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Typed History.zip)
2017-07-19 14:31:39.047 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX7E9.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:39.094 [DEBUG] Read 1 entry from profile archive (size: 2432; compressed: 817)
2017-07-19 14:31:39.094 [INFO ] Importing profile archive 'Wallpaper-win7.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Wallpaper-win7.zip)
2017-07-19 14:31:39.109 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX828.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:39.172 [DEBUG] Read 3 entries from profile archive (size: 1239188; compressed: 1226269)
2017-07-19 14:31:39.172 [INFO ] Importing profile archive 'Windows Explorer.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Windows Explorer.zip)
2017-07-19 14:31:39.187 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX87A.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:39.281 [DEBUG] Read 5 entries from profile archive (size: 576444; compressed: 53001)
2017-07-19 14:31:39.281 [DEBUG] Skipping disabled UEM shortcut ('Acrobat Reader 11.xml')
2017-07-19 14:31:39.281 [DEBUG] Skipping disabled UEM shortcut ('Calculator.xml')
2017-07-19 14:31:39.453 [INFO ] Successfully created UEM shortcut in programs menu ('Chrome-quicklaunch.xml')
2017-07-19 14:31:39.453 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe' = true
2017-07-19 14:31:39.469 [DEBUG] Scheduled UEM shortcut for async processing ('Chrome-Startup.xml')
2017-07-19 14:31:39.484 [DEBUG] Skipping disabled UEM shortcut ('Copy of WinSCP-quicklaunch.xml')
2017-07-19 14:31:39.484 [DEBUG] Skipping disabled UEM shortcut ('Excel 2016.xml')
2017-07-19 14:31:39.484 [DEBUG] Skipping disabled UEM shortcut ('MS Paint.xml')
2017-07-19 14:31:39.484 [DEBUG] Skipping disabled UEM shortcut ('Notepad.xml')
2017-07-19 14:31:39.484 [DEBUG] Conditions: Check for path 'C:\Program Files\microsoft office\office16\outlook.exe' = false
2017-07-19 14:31:39.484 [INFO ] Skipping UEM shortcut due to conditions ('Outlook 2016-quicklaunch.xml')
2017-07-19 14:31:39.500 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\outlook.exe' = true
2017-07-19 14:31:39.515 [DEBUG] Scheduled UEM shortcut for async processing ('Outlook 2016-startup.xml')
2017-07-19 14:31:39.515 [DEBUG] Skipping disabled UEM shortcut ('Paint.NET.xml')
2017-07-19 14:31:39.515 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\powerpnt.exe' = true
2017-07-19 14:31:39.531 [DEBUG] Scheduled UEM shortcut for async processing ('Powerpoint 2016-quicklaunch.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM ADMX-based settings Refresh.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM FTA Refresh.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM Helpdesk Support Tool.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM Management Console.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM Printer Refresh.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM Self-Support.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM Shortcut Refresh.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool Autostart.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool SyncNow.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('UEM User Environment Refresh.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('VLC Player.xml')
2017-07-19 14:31:39.547 [DEBUG] Skipping disabled UEM shortcut ('VMware Website.xml')
2017-07-19 14:31:39.562 [DEBUG] Conditions: Check for path 'c:\program files (x86)\WinSCP\WinSCP.exe' = false
2017-07-19 14:31:39.562 [INFO ] Skipping UEM shortcut due to conditions ('WinSCP-quicklaunch.xml')
2017-07-19 14:31:39.562 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\winword.exe' = true
2017-07-19 14:31:39.578 [DEBUG] Scheduled UEM shortcut for async processing ('Word 2016-quicklaunch.xml')
2017-07-19 14:31:39.594 [DEBUG] Skipping disabled UEM shortcut ('Wordpad.xml')
2017-07-19 14:31:39.594 [INFO ] Successfully created file type association ('abc.xml')
2017-07-19 14:31:39.609 [DEBUG] Conditions: Check for path 'C:\Program Files\Paint.NET\PaintDotNet.exe' = false
2017-07-19 14:31:39.609 [INFO ] Skipping UEM file type association due to conditions ('jpg.xml')
2017-07-19 14:31:39.609 [INFO ] Successfully created file type association ('SDR.xml')
2017-07-19 14:31:39.609 [DEBUG] Broadcasting UEM file type association and shortcut changes
2017-07-19 14:31:39.609 [INFO ] Importing UEM settings 'Add VMware to Favorites.zip' (\\156.98.45.106\UEM_Config\General\FlexRepository\Settings\File\Add VMware to Favorites.zip)
2017-07-19 14:31:39.625 [DEBUG] Read 1 entry from profile archive (size: 403; compressed: 263)
2017-07-19 14:31:39.625 [INFO ] Successfully imported UEM settings ('Add VMware to Favorites.xml')
2017-07-19 14:31:39.625 [INFO ] Importing UEM settings 'Registry demo.zip' (\\156.98.45.106\UEM_Config\General\FlexRepository\Settings\Reg\Registry demo.zip)
2017-07-19 14:31:39.625 [DEBUG] Placeholders: Found 1 placeholder in path 'Registry/Flex Profiles[Flex#].reg'
2017-07-19 14:31:39.625 [DEBUG] Placeholders: Resolved to path 'Registry/Flex Profiles.reg'
2017-07-19 14:31:39.625 [DEBUG] Placeholders: Placeholders will be replaced in file content using automatically detected code page
2017-07-19 14:31:39.625 [DEBUG] Placeholders: Found 2 placeholders in file 'Registry/Flex Profiles[Flex#].reg'
2017-07-19 14:31:39.640 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLXA35.tmp"' (RPAL: l=0 (D/E), r=0)
2017-07-19 14:31:39.672 [DEBUG] Read 1 entry from profile archive (size: 860; compressed: 346)
2017-07-19 14:31:39.672 [INFO ] Successfully imported UEM settings ('Registry demo.xml')
2017-07-19 14:31:39.672 [INFO ] Triggering scheduled UEM actions
2017-07-19 14:31:39.672 [DEBUG] Processed 37 Flex config files (24 successful, 1 skipped, 10 added to DirectFlex cache, 2 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 3 UEM import tasks (3 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 13 UEM drive mappings (5 scheduled, 8 skipped)
2017-07-19 14:31:39.687 [DEBUG] Processed 15 UEM printer mappings (15 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 7 UEM settings imports (4 successful, 3 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 2 UEM drive hiding settings (1 successful, 1 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 5 UEM ADMX-based settings (5 successful)
2017-07-19 14:31:39.687 [DEBUG] Processed 4 UEM triggered tasks (1 successful, 3 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 27 UEM shortcuts (1 successful, 4 scheduled, 2 skipped, 20 disabled)
2017-07-19 14:31:39.687 [DEBUG] Processed 3 UEM file type associations (2 successful, 1 skipped)
2017-07-19 14:31:39.687 [DEBUG] Processed 1 UEM folder redirection setting (1 successful)
2017-07-19 14:31:39.687 [DEBUG] Processed 2 UEM Horizon Smart Policies settings (1 successful, 1 disabled)
2017-07-19 14:31:39.828 [DEBUG] Started injection
2017-07-19 14:31:39.844 [DEBUG] Launched FlexEngine in DirectFlex mode
2017-07-19 14:31:39.844 [INFO ] Done (6791 ms) [<<IFP#0572367a-3e7]
2017-07-19 14:31:41.640 [INFO ] Performing UEM refresh [IFP#0635c1ca-11c484e>>]
2017-07-19 14:31:41.640 [DEBUG] Running as child process of 'cmd.exe' (612)
2017-07-19 14:31:41.640 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 1756/1572/1C
2017-07-19 14:31:41.640 [DEBUG] Recursively processing config files from path '\\156.98.45.106\UEM_Config\General'
2017-07-19 14:31:41.640 [DEBUG] Logging to file '\\156.98.45.106\UEM_profiles\UserName\logs\flexengine.log'
2017-07-19 14:31:41.640 [DEBUG] Log file will be overwritten when larger than 512 kilobytes
2017-07-19 14:31:41.656 [DEBUG] Refreshing UEM shortcuts
2017-07-19 14:31:41.656 [DEBUG] UEM Refresh: Processing UEM shortcut undo actions
2017-07-19 14:31:41.656 [DEBUG] Successfully removed shortcut 'C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Outlook 2016.lnk' ('Outlook 2016-startup.xml')
2017-07-19 14:31:41.656 [DEBUG] Skipping disabled UEM shortcut ('Acrobat Reader 11.xml')
2017-07-19 14:31:41.656 [DEBUG] Skipping disabled UEM shortcut ('Calculator.xml')
2017-07-19 14:31:41.703 [INFO ] Successfully created UEM shortcut in programs menu ('Chrome-quicklaunch.xml')
2017-07-19 14:31:41.703 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe' = true
2017-07-19 14:31:41.703 [DEBUG] Scheduled UEM shortcut for async processing ('Chrome-Startup.xml')
2017-07-19 14:31:41.703 [DEBUG] Skipping disabled UEM shortcut ('Copy of WinSCP-quicklaunch.xml')
2017-07-19 14:31:41.703 [DEBUG] Skipping disabled UEM shortcut ('Excel 2016.xml')
2017-07-19 14:31:41.719 [DEBUG] Skipping disabled UEM shortcut ('MS Paint.xml')
2017-07-19 14:31:41.719 [DEBUG] Skipping disabled UEM shortcut ('Notepad.xml')
2017-07-19 14:31:41.719 [DEBUG] Conditions: Check for path 'C:\Program Files\microsoft office\office16\outlook.exe' = false
2017-07-19 14:31:41.734 [INFO ] Skipping UEM shortcut due to conditions ('Outlook 2016-quicklaunch.xml')
2017-07-19 14:31:41.734 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\outlook.exe' = true
2017-07-19 14:31:41.734 [DEBUG] Scheduled UEM shortcut for async processing ('Outlook 2016-startup.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('Paint.NET.xml')
2017-07-19 14:31:41.750 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\powerpnt.exe' = true
2017-07-19 14:31:41.750 [DEBUG] Scheduled UEM shortcut for async processing ('Powerpoint 2016-quicklaunch.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('UEM ADMX-based settings Refresh.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('UEM FTA Refresh.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('UEM Helpdesk Support Tool.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('UEM Management Console.xml')
2017-07-19 14:31:41.750 [DEBUG] Skipping disabled UEM shortcut ('UEM Printer Refresh.xml')
2017-07-19 14:31:41.765 [DEBUG] Skipping disabled UEM shortcut ('UEM Self-Support.xml')
2017-07-19 14:31:41.765 [DEBUG] Skipping disabled UEM shortcut ('UEM Shortcut Refresh.xml')
2017-07-19 14:31:41.765 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool Autostart.xml')
2017-07-19 14:31:41.765 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool SyncNow.xml')
2017-07-19 14:31:41.765 [DEBUG] Skipping disabled UEM shortcut ('UEM User Environment Refresh.xml')
2017-07-19 14:31:41.781 [DEBUG] Skipping disabled UEM shortcut ('VLC Player.xml')
2017-07-19 14:31:41.781 [DEBUG] Skipping disabled UEM shortcut ('VMware Website.xml')
2017-07-19 14:31:41.781 [DEBUG] Conditions: Check for path 'c:\program files (x86)\WinSCP\WinSCP.exe' = false
2017-07-19 14:31:41.781 [INFO ] Skipping UEM shortcut due to conditions ('WinSCP-quicklaunch.xml')
2017-07-19 14:31:41.781 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\winword.exe' = true
2017-07-19 14:31:41.781 [DEBUG] Scheduled UEM shortcut for async processing ('Word 2016-quicklaunch.xml')
2017-07-19 14:31:41.781 [DEBUG] Skipping disabled UEM shortcut ('Wordpad.xml')
2017-07-19 14:31:41.781 [DEBUG] Broadcasting UEM shortcut changes
2017-07-19 14:31:41.781 [INFO ] Triggering scheduled UEM actions
2017-07-19 14:31:41.781 [DEBUG] Processed 27 UEM shortcuts (1 successful, 4 scheduled, 2 skipped, 20 disabled; 1 undo action (1 successful))
2017-07-19 14:31:41.797 [INFO ] Done (148 ms) [<<IFP#0635c1ca-11c484e]
2017-07-19 14:31:42.640 [INFO ] Performing UEM refresh [IFP#0642ddf3-11c484e>>]
2017-07-19 14:31:42.640 [DEBUG] Running as child process of 'wssm.exe' (1912)
2017-07-19 14:31:42.640 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 3640/4108/1C
2017-07-19 14:31:42.640 [DEBUG] Recursively processing config files from path '\\156.98.45.106\UEM_Config\General'
2017-07-19 14:31:42.640 [DEBUG] Logging to file '\\156.98.45.106\UEM_profiles\UserName\logs\flexengine.log'
2017-07-19 14:31:42.640 [DEBUG] Log file will be overwritten when larger than 512 kilobytes
2017-07-19 14:31:42.640 [DEBUG] Refreshing UEM shortcuts, file type associations, and printer mappings
2017-07-19 14:31:42.640 [DEBUG] UEM Refresh: Processing UEM shortcut undo actions
2017-07-19 14:31:42.640 [DEBUG] Successfully removed shortcut 'C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Outlook 2016.lnk' ('Outlook 2016-startup.xml')
2017-07-19 14:31:42.640 [DEBUG] Skipping disabled UEM shortcut ('Acrobat Reader 11.xml')
2017-07-19 14:31:42.656 [DEBUG] Skipping disabled UEM shortcut ('Calculator.xml')
2017-07-19 14:31:42.687 [INFO ] Successfully created UEM shortcut in programs menu ('Chrome-quicklaunch.xml')
2017-07-19 14:31:42.687 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe' = true
2017-07-19 14:31:42.687 [DEBUG] Scheduled UEM shortcut for async processing ('Chrome-Startup.xml')
2017-07-19 14:31:42.687 [DEBUG] Skipping disabled UEM shortcut ('Copy of WinSCP-quicklaunch.xml')
2017-07-19 14:31:42.687 [DEBUG] Skipping disabled UEM shortcut ('Excel 2016.xml')
2017-07-19 14:31:42.687 [DEBUG] Skipping disabled UEM shortcut ('MS Paint.xml')
2017-07-19 14:31:42.687 [DEBUG] Skipping disabled UEM shortcut ('Notepad.xml')
2017-07-19 14:31:42.703 [DEBUG] Conditions: Check for path 'C:\Program Files\microsoft office\office16\outlook.exe' = false
2017-07-19 14:31:42.703 [INFO ] Skipping UEM shortcut due to conditions ('Outlook 2016-quicklaunch.xml')
2017-07-19 14:31:42.703 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\outlook.exe' = true
2017-07-19 14:31:42.703 [DEBUG] Scheduled UEM shortcut for async processing ('Outlook 2016-startup.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('Paint.NET.xml')
2017-07-19 14:31:42.703 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\powerpnt.exe' = true
2017-07-19 14:31:42.703 [DEBUG] Scheduled UEM shortcut for async processing ('Powerpoint 2016-quicklaunch.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM ADMX-based settings Refresh.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM FTA Refresh.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM Helpdesk Support Tool.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM Management Console.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM Printer Refresh.xml')
2017-07-19 14:31:42.703 [DEBUG] Skipping disabled UEM shortcut ('UEM Self-Support.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('UEM Shortcut Refresh.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool Autostart.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('UEM SyncTool SyncNow.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('UEM User Environment Refresh.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('VLC Player.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('VMware Website.xml')
2017-07-19 14:31:42.719 [DEBUG] Conditions: Check for path 'c:\program files (x86)\WinSCP\WinSCP.exe' = false
2017-07-19 14:31:42.719 [INFO ] Skipping UEM shortcut due to conditions ('WinSCP-quicklaunch.xml')
2017-07-19 14:31:42.719 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\microsoft office\office16\winword.exe' = true
2017-07-19 14:31:42.719 [DEBUG] Scheduled UEM shortcut for async processing ('Word 2016-quicklaunch.xml')
2017-07-19 14:31:42.719 [DEBUG] Skipping disabled UEM shortcut ('Wordpad.xml')
2017-07-19 14:31:42.719 [DEBUG] UEM Refresh: Processing UEM file type association undo actions
2017-07-19 14:31:42.719 [DEBUG] Successfully removed file type association ('abc.xml')
2017-07-19 14:31:42.719 [DEBUG] Successfully removed file type association ('SDR.xml')
2017-07-19 14:31:42.734 [INFO ] Successfully created file type association ('abc.xml')
2017-07-19 14:31:42.734 [DEBUG] Conditions: Check for path 'C:\Program Files\Paint.NET\PaintDotNet.exe' = false
2017-07-19 14:31:42.734 [INFO ] Skipping UEM file type association due to conditions ('jpg.xml')
2017-07-19 14:31:42.734 [INFO ] Successfully created file type association ('SDR.xml')
2017-07-19 14:31:42.734 [DEBUG] Broadcasting UEM file type association and shortcut changes
2017-07-19 14:31:42.734 [DEBUG] Skipping disabled UEM printer mapping ('597504-AIM Division-Default.xml')
2017-07-19 14:31:42.734 [DEBUG] Skipping disabled UEM printer mapping ('597504-AIM Division-Optional.xml')
2017-07-19 14:31:42.734 [DEBUG] Skipping disabled UEM printer mapping ('597545-Information Systems-Default.xml')
2017-07-19 14:31:42.734 [DEBUG] Skipping disabled UEM printer mapping ('597545-Information Systems-Optional.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('599051-Pension Services-Default.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('599051-Pension Services-Optional.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('599052-Pension Services-Default.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('599052-Pension Services-Optional.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('599114-Receptionist-Default.xml')
2017-07-19 14:31:42.750 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 208.xml')
2017-07-19 14:31:42.765 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 209.xml')
2017-07-19 14:31:42.765 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 213.xml')
2017-07-19 14:31:42.765 [DEBUG] Skipping disabled UEM printer mapping ('Brother Counseling Room 214.xml')
2017-07-19 14:31:42.781 [DEBUG] Skipping disabled UEM printer mapping ('Copy of training.xml')
2017-07-19 14:31:42.781 [DEBUG] Skipping disabled UEM printer mapping ('DYMO LabelWriter 450.xml')
2017-07-19 14:31:42.781 [INFO ] Triggering scheduled UEM actions
2017-07-19 14:31:42.781 [DEBUG] Processed 15 UEM printer mappings (15 disabled)
2017-07-19 14:31:42.781 [DEBUG] Processed 27 UEM shortcuts (1 successful, 4 scheduled, 2 skipped, 20 disabled; 1 undo action (1 successful))
2017-07-19 14:31:42.781 [DEBUG] Processed 3 UEM file type associations (2 successful, 1 skipped; 2 undo actions (2 successful))
2017-07-19 14:31:42.797 [INFO ] Done (152 ms) [<<IFP#0642ddf3-11c484e]
2017-07-19 14:31:44.937 [INFO ] Performing DirectFlex import for config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini' [IFP#07f0e37f-11c484e>>]
2017-07-19 14:31:44.937 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 2336/4800/1C
2017-07-19 14:31:44.937 [DEBUG] Using profile archive '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip'
2017-07-19 14:31:44.937 [DEBUG] Triggered by 'C:\Program Files (x86)\Microsoft Office\Office16\OUTLOOK.EXE'
2017-07-19 14:31:44.953 [DEBUG] Found flag file for '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini'.
2017-07-19 14:31:44.984 [INFO ] Importing profile archive 'Outlook.zip' (\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip)
2017-07-19 14:31:45.015 [DEBUG] ImportRegistry::Import: Calling '"C:\Windows\REGEDIT.EXE" /S "C:\Users\UserName\AppData\Local\Temp\FLX1B21.tmp"' (RPAL: l=0 (D/P), r=0)
2017-07-19 14:31:45.281 [DEBUG] Read 8 entries from profile archive (size: 296270; compressed: 44151)
2017-07-19 14:31:45.297 [INFO ] Completed DirectFlex import (351 ms) [<<IFP#07f0e37f-11c484e]
User no longer in Appv-WINSCP security group:
2017-07-19 14:32:26.329 [INFO ] Starting FlexEngine v9.2.0.701 [IFP#06f5774a-11c484e>>]
2017-07-19 14:32:26.329 [DEBUG] Performing path-based export
2017-07-19 14:32:26.329 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 6136/5096/1C
2017-07-19 14:32:26.329 [DEBUG] Policy "Always wait for the network at computer startup and logon" is enabled
2017-07-19 14:32:26.329 [DEBUG] Policy "Run logon scripts synchronously" is not configured
2017-07-19 14:32:26.345 [DEBUG] Redirected folders: Personal
2017-07-19 14:32:26.345 [DEBUG] Policy "Point and Print Restrictions" is not configured
2017-07-19 14:32:26.345 [DEBUG] User policy last applied at 2017-07-19 14:31:31.781 (took 8.953 s)
2017-07-19 14:32:26.345 [DEBUG] Boot time: 2017-07-18 15:15:43.064, Logon time: 2017-07-19 14:31:40.734
2017-07-19 14:32:26.345 [DEBUG] Recursively processing config files from path '\\156.98.45.106\UEM_Config\General'
2017-07-19 14:32:26.345 [DEBUG] Using profile archive path '\\156.98.45.106\UEM_Profiles\UserName\archives'
2017-07-19 14:32:26.345 [DEBUG] Profile archives will be compressed
2017-07-19 14:32:26.345 [DEBUG] Creating 1 backup in path '\\156.98.45.106\UEM_Profiles\UserName\backups'
2017-07-19 14:32:26.345 [DEBUG] Logging to file '\\156.98.45.106\UEM_profiles\UserName\logs\flexengine.log'
2017-07-19 14:32:26.345 [DEBUG] Log file will be overwritten when larger than 512 kilobytes
2017-07-19 14:32:26.345 [DEBUG] If Flex config files path is not available at logon, log off automatically
2017-07-19 14:32:26.345 [DEBUG] If profile archive path is not available at logon, skip import but apply user environment settings
2017-07-19 14:32:26.360 [DEBUG] Import status flag indicates success, so performing export
2017-07-19 14:32:26.360 [DEBUG] Clearing import status flag for next import
2017-07-19 14:32:26.376 [DEBUG] Stopped injection
2017-07-19 14:32:26.376 [DEBUG] Processing pre-export UEM tasks
2017-07-19 14:32:26.392 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Acrobat Reader.INI'.
2017-07-19 14:32:26.392 [INFO ] Exporting profile using config file 'Calculator.INI' (\\156.98.45.106\UEM_Config\General\Applications\Calculator.INI)
2017-07-19 14:32:26.392 [INFO ] Binary Settings: Applied Application Template 'Microsoft Calculator'
2017-07-19 14:32:26.392 [INFO ] Exporting Registry information
2017-07-19 14:32:26.392 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Calc'
2017-07-19 14:32:26.392 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Calc' does not exist
2017-07-19 14:32:26.392 [INFO ] Exported Registry information successfully
2017-07-19 14:32:26.392 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:32:26.407 [INFO ] Exporting profile using config file 'Chrome.INI' (\\156.98.45.106\UEM_Config\General\Applications\Chrome.INI)
2017-07-19 14:32:26.407 [INFO ] Exporting Registry information
2017-07-19 14:32:26.407 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Google'
2017-07-19 14:32:26.407 [INFO ] Exported Registry information successfully
2017-07-19 14:32:26.407 [INFO ] Exporting file information
2017-07-19 14:32:26.407 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Application Cache'
2017-07-19 14:32:26.407 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Cache'
2017-07-19 14:32:26.407 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Local Storage'
2017-07-19 14:32:26.407 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<LocalAppData>\Google\Chrome\User Data\Default\Media Cache'
2017-07-19 14:32:26.407 [DEBUG] ExcludeFiles: Adding exclusion for '*.tmp'
2017-07-19 14:32:26.407 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Google\Chrome'
2017-07-19 14:32:33.610 [INFO ] Exported file information successfully
2017-07-19 14:32:33.642 [DEBUG] Stored 779 entries in profile archive (size: 100680083; compressed: 51638293)
2017-07-19 14:32:33.642 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Chrome.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Chrome 2017-07-19 143106.zip'
2017-07-19 14:32:33.657 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Chrome 2017-07-19 142018.zip'
2017-07-19 14:32:33.657 [INFO ] Exporting profile using config file 'Greenshot.ini' (\\156.98.45.106\UEM_Config\General\Applications\Greenshot.ini)
2017-07-19 14:32:33.673 [INFO ] Exporting file information
2017-07-19 14:32:33.673 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Greenshot'
2017-07-19 14:32:33.673 [INFO ] Exported file information successfully
2017-07-19 14:32:33.673 [DEBUG] Stored 1 entry in profile archive (size: 0; compressed: 2)
2017-07-19 14:32:33.673 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\Greenshot.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Greenshot 2017-07-19 143106.zip'
2017-07-19 14:32:33.689 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\Greenshot 2017-07-19 142018.zip'
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Notepad.INI'.
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Paint.INI'.
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\PaintDotNet.ini'.
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Remote Desktop Connection.INI'.
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Tortoise SVN 64bit.ini'.
2017-07-19 14:32:33.689 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\VLC.ini'.
2017-07-19 14:32:33.689 [INFO ] Exporting profile using config file 'WinSCP.INI' (\\156.98.45.106\UEM_Config\General\Applications\WinSCP.INI)
2017-07-19 14:32:33.689 [INFO ] Exporting Registry information
2017-07-19 14:32:33.689 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Martin Prikryl\WinSCP 2'
2017-07-19 14:32:33.704 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.704 [INFO ] Exporting file information
2017-07-19 14:32:33.704 [DEBUG] ExportFiles: Processing file '<AppData>\winscp.ini'
2017-07-19 14:32:33.704 [DEBUG] ExportFiles: Individual file '<AppData>\winscp.ini' does not exist
2017-07-19 14:32:33.704 [DEBUG] ExportFiles: Processing file '<AppData>\winscp.rnd'
2017-07-19 14:32:33.704 [INFO ] Exported file information successfully
2017-07-19 14:32:33.704 [DEBUG] Stored 2 entries in profile archive (size: 46836; compressed: 8959)
2017-07-19 14:32:33.704 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Applications\WinSCP.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\WinSCP 2017-07-19 143106.zip'
2017-07-19 14:32:33.720 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Applications\WinSCP 2017-07-19 142018.zip'
2017-07-19 14:32:33.720 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Applications\Wordpad.INI'.
2017-07-19 14:32:33.720 [DEBUG] Conditions: Evaluating condition set 'Microsoft Office 2016.xml'
2017-07-19 14:32:33.720 [DEBUG] Conditions: Check for path 'C:\Program Files (x86)\Microsoft Office\Office16' = true
2017-07-19 14:32:33.720 [INFO ] Exporting profile using config file 'Access.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Access.ini)
2017-07-19 14:32:33.720 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Access'
2017-07-19 14:32:33.720 [INFO ] Exporting Registry information
2017-07-19 14:32:33.720 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Access'
2017-07-19 14:32:33.720 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Access'
2017-07-19 14:32:33.720 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\Access' does not exist
2017-07-19 14:32:33.720 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.720 [INFO ] Exporting file information
2017-07-19 14:32:33.720 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Access'
2017-07-19 14:32:33.720 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Access' does not exist
2017-07-19 14:32:33.720 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Access.officeUI'
2017-07-19 14:32:33.720 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Access.officeUI' does not exist
2017-07-19 14:32:33.720 [INFO ] Exported file information successfully
2017-07-19 14:32:33.735 [DEBUG] Stored 1 entry in profile archive (size: 3312; compressed: 666)
2017-07-19 14:32:33.735 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Access.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Access 2017-07-19 143106.zip'
2017-07-19 14:32:33.735 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Access 2017-07-19 142018.zip'
2017-07-19 14:32:33.751 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.751 [INFO ] Exporting profile using config file 'Excel.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Excel.ini)
2017-07-19 14:32:33.751 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Excel'
2017-07-19 14:32:33.751 [INFO ] Exporting Registry information
2017-07-19 14:32:33.751 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Excel'
2017-07-19 14:32:33.751 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Excel'
2017-07-19 14:32:33.751 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.751 [INFO ] Exporting file information
2017-07-19 14:32:33.751 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Excel'
2017-07-19 14:32:33.751 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Excel' does not exist
2017-07-19 14:32:33.751 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Excel.officeUI'
2017-07-19 14:32:33.751 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Excel.officeUI' does not exist
2017-07-19 14:32:33.751 [INFO ] Exported file information successfully
2017-07-19 14:32:33.751 [DEBUG] Stored 1 entry in profile archive (size: 5182; compressed: 849)
2017-07-19 14:32:33.751 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Excel.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Excel 2017-07-19 143106.zip'
2017-07-19 14:32:33.767 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Excel 2017-07-19 142018.zip'
2017-07-19 14:32:33.767 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.767 [INFO ] Exporting profile using config file 'OneDrive for Business.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneDrive for Business.ini)
2017-07-19 14:32:33.767 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'OneDrive for Business'
2017-07-19 14:32:33.767 [INFO ] Exporting Registry information
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Groove'
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\SyncCenter'
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\SyncCenter' does not exist
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\SyncProc'
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\SyncProc' does not exist
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Workspaces'
2017-07-19 14:32:33.767 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Workspaces' does not exist
2017-07-19 14:32:33.767 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.767 [DEBUG] Stored 1 entry in profile archive (size: 852; compressed: 261)
2017-07-19 14:32:33.767 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneDrive for Business.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneDrive for Business 2017-07-19 143106.zip'
2017-07-19 14:32:33.782 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneDrive for Business 2017-07-19 142018.zip'
2017-07-19 14:32:33.782 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.782 [INFO ] Exporting profile using config file 'OneNote.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\OneNote.ini)
2017-07-19 14:32:33.782 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'OneNote'
2017-07-19 14:32:33.782 [INFO ] Exporting Registry information
2017-07-19 14:32:33.782 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\OneNote'
2017-07-19 14:32:33.782 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\OneNote'
2017-07-19 14:32:33.782 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.782 [INFO ] Exporting file information
2017-07-19 14:32:33.782 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\OneNote'
2017-07-19 14:32:33.798 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\OneNote.officeUI'
2017-07-19 14:32:33.798 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\OneNote.officeUI' does not exist
2017-07-19 14:32:33.798 [INFO ] Exported file information successfully
2017-07-19 14:32:33.798 [DEBUG] Stored 2 entries in profile archive (size: 28072; compressed: 2133)
2017-07-19 14:32:33.798 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\OneNote.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneNote 2017-07-19 143106.zip'
2017-07-19 14:32:33.814 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\OneNote 2017-07-19 142018.zip'
2017-07-19 14:32:33.814 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.814 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini'.
2017-07-19 14:32:33.814 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.814 [INFO ] Exporting profile using config file 'PowerPoint.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\PowerPoint.ini)
2017-07-19 14:32:33.814 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'PowerPoint'
2017-07-19 14:32:33.814 [INFO ] Exporting Registry information
2017-07-19 14:32:33.814 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\PowerPoint'
2017-07-19 14:32:33.814 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\PowerPoint'
2017-07-19 14:32:33.814 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.814 [INFO ] Exporting file information
2017-07-19 14:32:33.814 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Powerpoint'
2017-07-19 14:32:33.814 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Powerpoint' does not exist
2017-07-19 14:32:33.814 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Powerpoint.officeUI'
2017-07-19 14:32:33.814 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Powerpoint.officeUI' does not exist
2017-07-19 14:32:33.814 [INFO ] Exported file information successfully
2017-07-19 14:32:33.814 [DEBUG] Stored 1 entry in profile archive (size: 7610; compressed: 1454)
2017-07-19 14:32:33.829 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\PowerPoint.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\PowerPoint 2017-07-19 143106.zip'
2017-07-19 14:32:33.829 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\PowerPoint 2017-07-19 142018.zip'
2017-07-19 14:32:33.829 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.829 [INFO ] Exporting profile using config file 'Project.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Project.ini)
2017-07-19 14:32:33.829 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Project'
2017-07-19 14:32:33.829 [INFO ] Exporting Registry information
2017-07-19 14:32:33.829 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\MS Project'
2017-07-19 14:32:33.829 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\MS Project' does not exist
2017-07-19 14:32:33.829 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Project'
2017-07-19 14:32:33.845 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Project' does not exist
2017-07-19 14:32:33.845 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.845 [INFO ] Exporting file information
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\MS Project'
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\MS Project' does not exist
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\MSProject.officeUI'
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\MSProject.officeUI' does not exist
2017-07-19 14:32:33.845 [INFO ] Exported file information successfully
2017-07-19 14:32:33.845 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:32:33.845 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.845 [INFO ] Exporting profile using config file 'Publisher.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Publisher.ini)
2017-07-19 14:32:33.845 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Publisher'
2017-07-19 14:32:33.845 [INFO ] Exporting Registry information
2017-07-19 14:32:33.845 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Publisher'
2017-07-19 14:32:33.845 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Publisher' does not exist
2017-07-19 14:32:33.845 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.845 [INFO ] Exporting file information
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Publisher'
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Publisher' does not exist
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Publisher Building Blocks'
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Publisher Building Blocks' does not exist
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Publisher.officeUI'
2017-07-19 14:32:33.845 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Publisher.officeUI' does not exist
2017-07-19 14:32:33.845 [INFO ] Exported file information successfully
2017-07-19 14:32:33.845 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:32:33.860 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.860 [INFO ] Exporting profile using config file 'Shared Settings.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Shared Settings.ini)
2017-07-19 14:32:33.860 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Shared Office settings'
2017-07-19 14:32:33.860 [INFO ] Exporting Registry information
2017-07-19 14:32:33.860 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Common'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\FirstRun'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\FirstRun' does not exist
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Microsoft Office 2016'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Microsoft Office 2016' does not exist
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Registration'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\User Settings'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Common'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Shared Tools\Proofing Tools'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\VBA'
2017-07-19 14:32:33.876 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\VBA' does not exist
2017-07-19 14:32:33.876 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.876 [INFO ] Exporting file information
2017-07-19 14:32:33.876 [DEBUG] ExcludeFolderTrees: Adding exclusion for '<AppData>\Microsoft\Templates\LiveContent'
2017-07-19 14:32:33.892 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\AddIns'
2017-07-19 14:32:33.892 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Bibliography'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Office'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Office' does not exist
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Proof'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Spelling'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Spelling' does not exist
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Templates'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Templates' does not exist
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\UProof'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Office\ONetConfig'
2017-07-19 14:32:33.954 [DEBUG] ExportFiles: Folder '<LocalAppData>\Microsoft\Office\ONetConfig' does not exist
2017-07-19 14:32:33.954 [INFO ] Exported file information successfully
2017-07-19 14:32:33.954 [DEBUG] Stored 17 entries in profile archive (size: 3654990; compressed: 340503)
2017-07-19 14:32:33.954 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Shared Settings.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Shared Settings 2017-07-19 143106.zip'
2017-07-19 14:32:33.970 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Shared Settings 2017-07-19 142018.zip'
2017-07-19 14:32:33.970 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:33.970 [INFO ] Exporting profile using config file 'Skype for Business.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Skype for Business.ini)
2017-07-19 14:32:33.970 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Skype for Business'
2017-07-19 14:32:33.985 [INFO ] Exporting Registry information
2017-07-19 14:32:33.985 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Lync'
2017-07-19 14:32:33.985 [INFO ] Exported Registry information successfully
2017-07-19 14:32:33.985 [INFO ] Exporting file information
2017-07-19 14:32:33.985 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Office\16.0\Lync'
2017-07-19 14:32:33.985 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Office\16.0\Lync' does not exist
2017-07-19 14:32:33.985 [INFO ] Exported file information successfully
2017-07-19 14:32:33.985 [DEBUG] Stored 1 entry in profile archive (size: 890; compressed: 275)
2017-07-19 14:32:33.985 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Skype for Business.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Skype for Business 2017-07-19 143106.zip'
2017-07-19 14:32:34.001 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Skype for Business 2017-07-19 142018.zip'
2017-07-19 14:32:34.001 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:34.001 [INFO ] Exporting profile using config file 'Visio.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Visio.ini)
2017-07-19 14:32:34.001 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Visio'
2017-07-19 14:32:34.001 [INFO ] Exporting Registry information
2017-07-19 14:32:34.001 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Visio'
2017-07-19 14:32:34.001 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Visio' does not exist
2017-07-19 14:32:34.001 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Visio'
2017-07-19 14:32:34.001 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Office\Visio' does not exist
2017-07-19 14:32:34.001 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.001 [INFO ] Exporting file information
2017-07-19 14:32:34.001 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Visio'
2017-07-19 14:32:34.001 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Visio' does not exist
2017-07-19 14:32:34.001 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Visio.officeUI'
2017-07-19 14:32:34.001 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Visio.officeUI' does not exist
2017-07-19 14:32:34.001 [INFO ] Exported file information successfully
2017-07-19 14:32:34.001 [DEBUG] No profile information exported -- not creating profile archive
2017-07-19 14:32:34.001 [DEBUG] Conditions: Condition set 'Microsoft Office 2016.xml' was previously evaluated to true
2017-07-19 14:32:34.001 [INFO ] Exporting profile using config file 'Word.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Word.ini)
2017-07-19 14:32:34.001 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Word'
2017-07-19 14:32:34.017 [INFO ] Exporting Registry information
2017-07-19 14:32:34.017 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Word'
2017-07-19 14:32:34.017 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Word'
2017-07-19 14:32:34.017 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.017 [INFO ] Exporting file information
2017-07-19 14:32:34.017 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Word'
2017-07-19 14:32:34.017 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\Word' does not exist
2017-07-19 14:32:34.017 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\Word.officeUI'
2017-07-19 14:32:34.017 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\Word.officeUI' does not exist
2017-07-19 14:32:34.017 [INFO ] Exported file information successfully
2017-07-19 14:32:34.017 [DEBUG] Stored 1 entry in profile archive (size: 26894; compressed: 3536)
2017-07-19 14:32:34.017 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Word.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Word 2017-07-19 143106.zip'
2017-07-19 14:32:34.032 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Word 2017-07-19 142018.zip'
2017-07-19 14:32:34.032 [DEBUG] Conditions: Check for OS 10.0W = false (Running on 6.1W)
2017-07-19 14:32:34.032 [INFO ] Skipping export for config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Default Apps and FTAs.INI' due to conditions.
2017-07-19 14:32:34.032 [INFO ] Exporting profile using config file 'IE Passwords.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\IE Passwords.INI)
2017-07-19 14:32:34.032 [INFO ] Binary Settings: Applied Common Setting 'Internet Explorer 7 – 10 - AutoComplete passwords - AppData NOT redirected'
2017-07-19 14:32:34.032 [INFO ] Exporting Registry information
2017-07-19 14:32:34.032 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer\IntelliForms'
2017-07-19 14:32:34.032 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.032 [INFO ] Exporting file information
2017-07-19 14:32:34.032 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Protect'
2017-07-19 14:32:34.048 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Vault'
2017-07-19 14:32:34.048 [INFO ] Exported file information successfully
2017-07-19 14:32:34.048 [DEBUG] Stored 13 entries in profile archive (size: 7448; compressed: 5819)
2017-07-19 14:32:34.048 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\IE Passwords.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\IE Passwords 2017-07-19 143106.zip'
2017-07-19 14:32:34.064 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\IE Passwords 2017-07-19 142018.zip'
2017-07-19 14:32:34.064 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\IE WebCache.INI'
2017-07-19 14:32:34.064 [INFO ] Exporting profile using config file 'Internet Explorer.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Internet Explorer.INI)
2017-07-19 14:32:34.064 [INFO ] Binary Settings: Applied Common Setting 'Internet Explorer - Personal settings'
2017-07-19 14:32:34.064 [INFO ] Exporting Registry information
2017-07-19 14:32:34.064 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\IdentityCRL'
2017-07-19 14:32:34.079 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\IdentityCRL' does not exist
2017-07-19 14:32:34.079 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer'
2017-07-19 14:32:34.079 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites'
2017-07-19 14:32:34.079 [DEBUG] ExportRegistry: Exporting tree 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings'
2017-07-19 14:32:34.079 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.079 [INFO ] Exporting file information
2017-07-19 14:32:34.079 [DEBUG] ExcludeFiles: Adding exclusion for '<Favorites>\desktop.ini'
2017-07-19 14:32:34.079 [DEBUG] ExcludeFiles: Adding exclusion for '<Favorites>\links\desktop.ini'
2017-07-19 14:32:34.079 [DEBUG] ExportFiles: Recursively processing folder '<Cookies>'
2017-07-19 14:32:34.189 [DEBUG] ExportFiles: Recursively processing folder '<Favorites>'
2017-07-19 14:32:34.189 [INFO ] Exported file information successfully
2017-07-19 14:32:34.189 [DEBUG] Stored 182 entries in profile archive (size: 178982; compressed: 49072)
2017-07-19 14:32:34.204 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Internet Explorer.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Internet Explorer 2017-07-19 143106.zip'
2017-07-19 14:32:34.220 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Internet Explorer 2017-07-19 142018.zip'
2017-07-19 14:32:34.220 [DEBUG] Not performing export for DirectFlex config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Microsoft Edge.INI'.
2017-07-19 14:32:34.220 [INFO ] Skipping disabled config file '\\156.98.45.106\UEM_Config\General\Windows Settings\Network Printers.INI'
2017-07-19 14:32:34.220 [INFO ] Exporting profile using config file 'Personal Certificates.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Personal Certificates.INI)
2017-07-19 14:32:34.220 [INFO ] Binary Settings: Applied Common Setting 'Personal Certificates – AppData NOT redirected'
2017-07-19 14:32:34.220 [INFO ] Exporting Registry information
2017-07-19 14:32:34.220 [DEBUG] ExcludeRegistryTrees: Adding exclusion for 'HKCU\Software\Microsoft\SystemCertificates\Root\ProtectedRoots'
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Cryptography'
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Cryptography' does not exist
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Identities'
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Identities' does not exist
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\SystemCertificates'
2017-07-19 14:32:34.220 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows NT\CurrentVersion\EFS'
2017-07-19 14:32:34.220 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.220 [INFO ] Exporting file information
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\CLR Security Config'
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\CLR Security Config' does not exist
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Credentials'
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\CryptnetUrlCache'
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Folder '<AppData>\Microsoft\CryptnetUrlCache' does not exist
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Crypto'
2017-07-19 14:32:34.220 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Protect'
2017-07-19 14:32:34.235 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\SystemCertificates'
2017-07-19 14:32:34.235 [DEBUG] ExportFiles: Recursively processing folder '<LocalAppData>\Microsoft\Credentials'
2017-07-19 14:32:34.235 [INFO ] Exported file information successfully
2017-07-19 14:32:34.235 [DEBUG] Stored 22 entries in profile archive (size: 8190; compressed: 2775)
2017-07-19 14:32:34.235 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Personal Certificates.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Personal Certificates 2017-07-19 143106.zip'
2017-07-19 14:32:34.251 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Personal Certificates 2017-07-19 142018.zip'
2017-07-19 14:32:34.251 [INFO ] Exporting profile using config file 'Regedit.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Regedit.INI)
2017-07-19 14:32:34.251 [INFO ] Exporting Registry information
2017-07-19 14:32:34.251 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit'
2017-07-19 14:32:34.251 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.251 [DEBUG] Stored 1 entry in profile archive (size: 1220; compressed: 404)
2017-07-19 14:32:34.267 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Regedit.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Regedit 2017-07-19 143106.zip'
2017-07-19 14:32:34.267 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Regedit 2017-07-19 142018.zip'
2017-07-19 14:32:34.282 [INFO ] Exporting profile using config file 'Screensaver.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Screensaver.INI)
2017-07-19 14:32:34.282 [INFO ] Binary Settings: Applied Common Setting 'Screensaver settings'
2017-07-19 14:32:34.282 [INFO ] Exporting Registry information
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Screensavers'
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaveActive'
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaverIsSecure'
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry::ExportValue: Value 'ScreenSaverIsSecure' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\ScreenSaveTimeOut'
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry::ExportValue: Value 'ScreenSaveTimeOut' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\SCRNSAVE.EXE'
2017-07-19 14:32:34.282 [DEBUG] ExportRegistry::ExportValue: Value 'SCRNSAVE.EXE' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.282 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.282 [DEBUG] Stored 1 entry in profile archive (size: 3222; compressed: 407)
2017-07-19 14:32:34.282 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Screensaver.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Screensaver 2017-07-19 143106.zip'
2017-07-19 14:32:34.298 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Screensaver 2017-07-19 142018.zip'
2017-07-19 14:32:34.298 [INFO ] Exporting profile using config file 'Taskbar.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Taskbar.INI)
2017-07-19 14:32:34.298 [INFO ] Binary Settings: Applied Common Setting 'Taskbar and list of recent items'
2017-07-19 14:32:34.298 [INFO ] Exporting Registry information
2017-07-19 14:32:34.298 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\StartMenu2\Programs'
2017-07-19 14:32:34.298 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\StartMenu2\Programs' does not exist
2017-07-19 14:32:34.298 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage'
2017-07-19 14:32:34.298 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2'
2017-07-19 14:32:34.329 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband'
2017-07-19 14:32:34.329 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist'
2017-07-19 14:32:34.345 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarSizeMove'
2017-07-19 14:32:34.345 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\EnableAutoTray'
2017-07-19 14:32:34.345 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\Settings'
2017-07-19 14:32:34.345 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3\Settings'
2017-07-19 14:32:34.345 [DEBUG] ExportRegistry::ExportValue: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3' does not exist (value: 'Settings')
2017-07-19 14:32:34.345 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.345 [INFO ] Exporting file information
2017-07-19 14:32:34.345 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Internet Explorer\Quick Launch'
2017-07-19 14:32:34.345 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar'
2017-07-19 14:32:34.345 [DEBUG] ExportFiles: Folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar' does not exist
2017-07-19 14:32:34.345 [DEBUG] ExportFiles: Recursively processing folder '<RecentFiles>'
2017-07-19 14:32:34.360 [DEBUG] ExportFiles: Processing folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar'
2017-07-19 14:32:34.360 [DEBUG] ExportFiles: Folder '<AppData>\Roaming\Microsoft\Internet Explorer\Quick Launch\User pinned\Taskbar' does not exist
2017-07-19 14:32:34.360 [INFO ] Exported file information successfully
2017-07-19 14:32:34.360 [DEBUG] Stored 23 entries in profile archive (size: 727574; compressed: 103620)
2017-07-19 14:32:34.360 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Taskbar.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Taskbar 2017-07-19 143106.zip'
2017-07-19 14:32:34.376 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Taskbar 2017-07-19 142018.zip'
2017-07-19 14:32:34.376 [INFO ] Exporting profile using config file 'Typed History.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Typed History.INI)
2017-07-19 14:32:34.376 [INFO ] Binary Settings: Applied Common Setting 'Typed History - In Internet Explorer and Windows Explorer'
2017-07-19 14:32:34.392 [INFO ] Exporting Registry information
2017-07-19 14:32:34.392 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Internet Explorer\TypedURLs'
2017-07-19 14:32:34.392 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU'
2017-07-19 14:32:34.392 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.392 [DEBUG] Stored 1 entry in profile archive (size: 2432; compressed: 814)
2017-07-19 14:32:34.392 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Typed History.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Typed History 2017-07-19 143106.zip'
2017-07-19 14:32:34.407 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Typed History 2017-07-19 142018.zip'
2017-07-19 14:32:34.407 [DEBUG] Using OS-specific extension 'win7'
2017-07-19 14:32:34.407 [INFO ] Exporting profile using config file 'Wallpaper.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Wallpaper.INI)
2017-07-19 14:32:34.407 [INFO ] Binary Settings: Applied Common Setting 'Wallpaper - AppData NOT redirected'
2017-07-19 14:32:34.407 [INFO ] Exporting Registry information
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Control Panel\Personalization\Desktop Slideshow'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\ThemeManager'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Themes'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Colors\Background'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TileWallpaper'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCache'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCache' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCache_000'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCache_000' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\TranscodedImageCount'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry::ExportValue: Value 'TranscodedImageCount' of key 'HKEY_CURRENT_USER\Control Panel\Desktop' does not exist
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\Wallpaper'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\control panel\desktop\wallpaper\wallpaper'
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry::ExportValue: Key 'HKEY_CURRENT_USER\control panel\desktop\wallpaper' does not exist (value: 'wallpaper')
2017-07-19 14:32:34.407 [DEBUG] ExportRegistry: Exporting value 'HKCU\Control Panel\Desktop\WallpaperStyle'
2017-07-19 14:32:34.407 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.407 [INFO ] Exporting file information
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\slideshow.ini'
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\Transcoded_000'
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Individual file '<AppData>\Microsoft\Windows\Themes\Transcoded_000' does not exist
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\TranscodedWallpaper'
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Individual file '<AppData>\Microsoft\Windows\Themes\TranscodedWallpaper' does not exist
2017-07-19 14:32:34.407 [DEBUG] ExportFiles: Processing file '<AppData>\Microsoft\Windows\Themes\transcodedwallpaper.jpg'
2017-07-19 14:32:34.548 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Wallpaper1.bmp'
2017-07-19 14:32:34.548 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Wallpaper1.bmp' does not exist
2017-07-19 14:32:34.548 [INFO ] Exported file information successfully
2017-07-19 14:32:34.548 [DEBUG] Stored 3 entries in profile archive (size: 1239188; compressed: 1226274)
2017-07-19 14:32:34.548 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Wallpaper-win7.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Wallpaper-win7 2017-07-19 143107.zip'
2017-07-19 14:32:34.564 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Wallpaper-win7 2017-07-19 142018.zip'
2017-07-19 14:32:34.564 [INFO ] Exporting profile using config file 'Windows Explorer.INI' (\\156.98.45.106\UEM_Config\General\Windows Settings\Windows Explorer.INI)
2017-07-19 14:32:34.564 [INFO ] Binary Settings: Applied Common Setting 'Windows Explorer and view settings'
2017-07-19 14:32:34.564 [INFO ] Exporting Registry information
2017-07-19 14:32:34.564 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU'
2017-07-19 14:32:34.579 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz' does not exist
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons' does not exist
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites\Links\Order'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites\Links\Order' does not exist
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer' does not exist
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams'
2017-07-19 14:32:34.595 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist'
2017-07-19 14:32:34.610 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\Shell\Bags\1\Desktop'
2017-07-19 14:32:34.610 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU'
2017-07-19 14:32:34.610 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagMRU' does not exist
2017-07-19 14:32:34.610 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags'
2017-07-19 14:32:34.610 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags' does not exist
2017-07-19 14:32:34.610 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.610 [INFO ] Exporting file information
2017-07-19 14:32:34.610 [DEBUG] ExportFiles: Processing folder '<Desktop>'
2017-07-19 14:32:34.610 [INFO ] Exported file information successfully
2017-07-19 14:32:34.610 [DEBUG] Stored 5 entries in profile archive (size: 575804; compressed: 52854)
2017-07-19 14:32:34.626 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Windows Settings\Windows Explorer.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Windows Explorer 2017-07-19 143107.zip'
2017-07-19 14:32:34.626 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Windows Settings\Windows Explorer 2017-07-19 142018.zip'
2017-07-19 14:32:34.626 [WARN ] Triggering DirectFlex export for config file 'Microsoft Office 2016\Outlook.ini' due to interrupted FlexEngine export
2017-07-19 14:32:34.626 [DEBUG] Running pending DirectFlex exports [IFP#0cb0c1aa-11c484e>>]
2017-07-19 14:32:34.642 [INFO ] Performing DirectFlex export for config file '\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini' [IFP#466c1a82-11c484e>>]
2017-07-19 14:32:34.642 [DEBUG] User: PERA\UserName (A), Computer: PERA070003, OS: x64-win7 (BuildNumber 7601, ServicePack 1, SuiteMask 100, ProductType 1/4, Lang 0409, IE 11.0.9600.18617, VMware VDM 7.1.0.5170901, UEM 9.2.0.701, ProcInfo 1/2/2/2, UTC-05:00D), PTS: 6136/5096/1C
2017-07-19 14:32:34.642 [DEBUG] Using profile archive '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip'
2017-07-19 14:32:34.642 [DEBUG] Triggered by 'C:\Program Files (x86)\Microsoft Office\Office16\OUTLOOK.EXE'
2017-07-19 14:32:34.642 [INFO ] Exporting profile using config file 'Outlook.ini' (\\156.98.45.106\UEM_Config\General\Microsoft Office 2016\Outlook.ini)
2017-07-19 14:32:34.642 [INFO ] Binary Settings: Applied Microsoft Office 2016 Application Template 'Outlook (with Mail profiles)'
2017-07-19 14:32:34.642 [INFO ] Exporting Registry information
2017-07-19 14:32:34.642 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\MAPI'
2017-07-19 14:32:34.642 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\16.0\Outlook'
2017-07-19 14:32:34.657 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Office\Outlook'
2017-07-19 14:32:34.657 [DEBUG] ExportRegistry: Exporting tree 'HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles'
2017-07-19 14:32:34.657 [DEBUG] ExportRegistry::ExportKey: Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles' does not exist
2017-07-19 14:32:34.657 [DEBUG] ExportRegistry: Exporting value 'HKCU\Software\Microsoft\Exchange\Client\Options\PickLogonProfile'
2017-07-19 14:32:34.657 [INFO ] Exported Registry information successfully
2017-07-19 14:32:34.657 [INFO ] Exporting file information
2017-07-19 14:32:34.657 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Outlook'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Recursively processing folder '<AppData>\Microsoft\Signatures'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkaddritem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkaddritem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkapptitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkapptitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkdlstitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkdlstitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkexplorer.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkexplorer.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olklogitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olklogitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmailitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmailitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmailread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmailread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmmsedit.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmmsedit.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmmsread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmmsread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmreqread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmreqread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkmreqsend.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkmreqsend.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkpostitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkpostitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkpostread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkpostread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkreportitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkreportitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresenditem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresenditem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkrespcounter.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkrespcounter.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresponseread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresponseread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkresponsesend.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkresponsesend.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkrssitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkrssitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkshareitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkshareitem.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olkshareread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olkshareread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olksmsedit.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olksmsedit.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olksmsread.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olksmsread.officeUI' does not exist
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Processing file '<LocalAppData>\Microsoft\Office\olktaskitem.officeUI'
2017-07-19 14:32:34.673 [DEBUG] ExportFiles: Individual file '<LocalAppData>\Microsoft\Office\olktaskitem.officeUI' does not exist
2017-07-19 14:32:34.673 [INFO ] Exported file information successfully
2017-07-19 14:32:34.673 [DEBUG] Stored 8 entries in profile archive (size: 296270; compressed: 44092)
2017-07-19 14:32:34.673 [DEBUG] Backing up '\\156.98.45.106\UEM_Profiles\UserName\archives\Microsoft Office 2016\Outlook.zip' to '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Outlook 2017-07-19 143107.zip'
2017-07-19 14:32:34.689 [DEBUG] Deleted backup '\\156.98.45.106\UEM_Profiles\UserName\backups\Microsoft Office 2016\Outlook 2017-07-19 141955.zip'
2017-07-19 14:32:34.689 [INFO ] Completed DirectFlex export (54 ms) [<<IFP#466c1a82-11c484e]
2017-07-19 14:32:34.689 [DEBUG] Done with pending DirectFlex exports (58 ms) [<<IFP#0cb0c1aa-11c484e]
2017-07-19 14:32:34.689 [DEBUG] Processing post-export UEM tasks
2017-07-19 14:32:34.689 [DEBUG] Running post-export task ('\\pera_dise\UserName$\EmptyQuickLaunch.cmd') ('Empty QuickLaunch.xml')
2017-07-19 14:32:34.798 [INFO ] Processing path-based UEM undo actions and/or creation of 'run once' flag files
2017-07-19 14:32:34.798 [DEBUG] Successfully removed file type association ('SDR.xml')
2017-07-19 14:32:34.798 [DEBUG] Successfully removed file type association ('abc.xml')
2017-07-19 14:32:34.798 [DEBUG] Successfully reverted ADMX-based settings
2017-07-19 14:32:34.798 [DEBUG] Successfully reverted UEM drive hiding changes
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection settings
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection for 'Videos' ('HomeDrive.xml')
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection for 'Pictures' ('HomeDrive.xml')
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection for 'Music' ('HomeDrive.xml')
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection for 'Downloads' ('HomeDrive.xml')
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted folder redirection for 'Documents' ('HomeDrive.xml')
2017-07-19 14:32:34.814 [DEBUG] Successfully reverted Horizon Smart Policies settings
2017-07-19 14:32:34.814 [DEBUG] Successfully removed shortcut 'C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Outlook 2016.lnk' ('Outlook 2016-startup.xml')
2017-07-19 14:32:34.814 [DEBUG] No UEM triggered tasks have been performed
2017-07-19 14:32:34.814 [DEBUG] Deleted application blocking and privilege elevation configuration
2017-07-19 14:32:34.814 [DEBUG] Processed 38 Flex config files (25 successful, 11 skipped, 2 disabled)
2017-07-19 14:32:34.814 [DEBUG] Processed 1 UEM shortcut undo action (1 successful)
2017-07-19 14:32:34.814 [DEBUG] Processed 2 UEM file type association undo actions (2 successful)
2017-07-19 14:32:34.814 [DEBUG] Processed 2 UEM export tasks (2 successful)
2017-07-19 14:32:34.814 [DEBUG] Processed 5 UEM folder redirection setting undo actions (5 successful)
2017-07-19 14:32:34.814 [INFO ] Done (8488 ms) [<<IFP#06f5774a-11c484e]
Metal -- DX shaders not previously in OpenGL?
Going back to Fusion 2, the original Deus Ex (now on Steam as the GOTY edition, but I digress) renders but is very, very dark. Even on the brightest setting it is only barely playable. Every couple of Fusion releases I've gone down the rabbit hole of trying different 3D solutions, including various engine (Unreal Tournament) hacks to swap in different render engines. None work well. I've deduced that the original game relied on DX shaders that didn't have a corresponding analog in Apple's (reduced) OpenGL implementation. (I can track down forum threads, bugs, and emails with VMWare about this.)
But now we're using Metal! Yay! Perchance does the Metal solution introduce coverage for DX shaders not previously covered via OpenGL?
Thanks,
Andrew
Re: Can I view a VM running on ESXi directly from the Android Horizon Client?
The Horizon client is meant to connect to the horizon view connection server. It sounds like you are trying to use the horizon view client to connect directly to an ESXi host. You would need to deploy the horizon product, create a desktop pool, connect to a virtual desktop and use that to access your vCenter/VM.
Basically, you are looking at the wrong product. One wouldn't deploy an entire horizon infrastructure to do what you are looking to do. You could, but it would be extremely costly...
Re: bug
Re: Weird Java Script issue
Check out the System.formatDate() method, it exposes the java date formatter to javascript.
The workflow Library/Troubleshooting/Export logs..... has some example:
zipFileName = zipFileName + "_" + System.formatDate(new Date(), "yyMMdd_HHmmss") + ".zip";
for full documentation check the java reference SimpleDateFormat (Java Platform SE 7 ) for the meanings of the characters.
For "counting" through the dates, check this article: Add days to JavaScript Date - Stack Overflow
Regards,
Joerg
About host memory - does maxing = crashing?
Say a host has 64GB of memory and vms are using up to 60GB for example.
Does it mean I can still use the rest of the 4GB?
What I mean is, does the host take what ever it needs and what ever is left is what is given to the vms to share?
If I max out the memory beyond sharing it between vms, can the host end up crashing?
Re: Where to get an MSI file for Horizon Client
Thanks for your response. No specific error message. I think it would be much easier to script an install of the client if I had an MSI that I could use MSI switches with. The software deployment console I'm using has been tailored to make MSI installs a breeze, and in turn has made EXE installs a little clunkier. That's no fault of VMware of course, and I'm not saying that it is. I'm just wondering what the reason is for not providing an MSI (additionally restricting the ability to extract the contents of the EXE and pull out an MSI), when most other software makers provide an MSI, if not both an MSI and an EXE.
Re: Metal -- DX shaders not previously in OpenGL?
FWIW, it appears I'd filed SR #1575281151 on this.
-Andrew