<?xml version="1.0" encoding="UTF-8"?>
<SapSetup Context="Server" WkstaDb="SapGuiWksta.xml">
	<Product CmdLine="GUI_SHARED" Guid="{14F25BEA-5A12-4657-B86C-845A251F1C4B}" Name="SAP GUI" ProdVersion="20008" Visible="FALSE" WkstaDb="SapGuiWksta.xml"/>
	<Component Guid="{0C0E1CCC-18AE-431d-BE18-9BB872C88E72}" Min_Compliant_Version="20000" Name="$CleanSAPGUI6" Version="20000">
		<Action Condition="(%Pre_SapGui71%=UNDEFINED)&amp;(%Param_Silent%=TRUE)" RunAt="Install" Type="Execute">
			<Src DisplayText="StrRemoveOldSapGui" Parameters=" /uninstall /silent /noRestart /suppressReboot" TimeOut="600000">%Windir%\SapWksta\setup\SAPsetup.exe</Src>
		</Action>
		<Action Condition="(%Pre_SapGui71%=UNDEFINED)&amp;(%Param_Silent%&lt;&gt;TRUE)" RunAt="Install" Type="Execute">
			<Src DisplayText="StrRemoveOldSapGui" Parameters=" /uninstall /noDLG /noRestart /suppressReboot">%Windir%\SapWksta\setup\SAPsetup.exe</Src>
		</Action>
	</Component>
	<Component Guid="{30DC15B4-0C2E-4632-8A86-3AF0986B4921}" Min_Compliant_Version="20000" Name="$CompInfo" SysSize="1513" Version="20060">
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\compInfo730.txt</Src>
		</Action>
		<Action Condition="1=0" Dst="%SapSetupDir%" Type="File">
			<Src>%SAPsrcDir%\SapGuiSetup.exe</Src>
		</Action>
		<Action Condition="1=0" Dst="%SapSetupDir%\setup" Type="File">
			<Src>%SAPsrcDir%\setup\SapGuiSetup.cfg</Src>
		</Action>
		<Action Condition="1=0" Dst="%SapSetupDir%\ReadMe" Type="File">
			<Src>%SAPsrcDir%\ReadMe\SAP_Front_End_Installation_Guide.pdf</Src>
		</Action>
	</Component>
	<Component Guid="{F270A214-3AD3-4235-9C74-F4D323B54976}" Min_Compliant_Version="20000" Name="$MS System Files" SysSize="8993" Version="20010">
		<Action Dst="%WinSysDir%" RunAt="Install" Type="File">
			<Src>%SAPSrcDir%\system\msvcp60.dll</Src>
			<Src>%SAPSrcDir%\system\msvbvm50.dll</Src>
			<Src>%SAPSrcDir%\system\msvbvm60.dll</Src>
			<Src>%SAPSrcDir%\system\grid32.ocx</Src>
			<Src>%SAPSrcDir%\system\tlbinf32.dll</Src>
			<Src>%SAPSrcDir%\system\richtx32.ocx</Src>
			<Src>%SAPSrcDir%\system\comct232.ocx</Src>
			<Src>%SAPSrcDir%\system\comct332.ocx</Src>
			<Src>%SAPSrcDir%\system\comctl32.ocx</Src>
			<Src>%SAPSrcDir%\system\comdlg32.ocx</Src>
			<Src>%SAPSrcDir%\system\mscomct2.ocx</Src>
			<Src>%SAPSrcDir%\system\mscomctl.ocx</Src>
			<Src>%SAPSrcDir%\system\msdatgrd.ocx</Src>
			<Src>%SAPSrcDir%\system\msflxgrd.ocx</Src>
			<Src>%SAPSrcDir%\system\mshflxgd.ocx</Src>
			<Src>%SAPSrcDir%\system\msstdfmt.dll</Src>
			<Src>%SAPSrcDir%\system\msstkprp.dll</Src>
			<Src>%SAPSrcDir%\system\sysinfo.ocx</Src>
			<Src>%SAPSrcDir%\system\tabctl32.ocx</Src>
		</Action>
		<Action Condition="%WinSysDir%\dbghelp.dll = -1" Dst="%WinSysDir%" Type="File">
			<Src>%SapSrcDir%\System\dbghelp.dll</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Context.Log.Write "Script-action: Checking reboot condition."
			NwEngine.Context.Log.Write "Script-action: NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
			If NwEngine.Context.Reboot = 1 Then
				If NwEngine.Context.Args("SuppressReboot") <> "" Then
					NwEngine.Context.Reboot = 0	'Setting Flag for no Reboot
					NwEngine.Context.Log.WriteWarning "Script-action: Reboot suppressed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
				ElseIf NwEngine.Context.Args("DelayReboot") <> "" Then
					NwEngine.Context.Reboot = 1	'Setting Flag for delayed Reboot
					NwEngine.Context.Log.WriteWarning "Script-action: Reboot delayed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
				Else
					NwEngine.Context.Reboot = 2	'Setting Flag for immediate Reboot
					NwEngine.Context.Log.Write "Script-action: Enforce immediate reboot."
				End If
			End If
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{3528FE1E-3518-4eed-8930-DAD970B1AE3D}" Min_Compliant_Version="20000" Name="$SAP BI WAD Shortcut" Version="20000">
		<!-- Install this shortcut only if SAP BI WAD is installed -->
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
strBexWadExeOnClient = NwEngine.Variables.ResolveString("%SapBiDestDir%\BI\BExWebApplicationDesigner.exe")
			If NwEngine.Shell.FileExist( strBexWadExeOnClient ) Then
				NwEngine.Context.Log.Write "File exists: " & strBexWadExeOnClient
				NWEngine.Variables.InsertVariable "bIsBexWadInstalled", "True"
			Else
				NwEngine.Context.Log.Write "File not installed: " & strBexWadExeOnClient
				NWEngine.Variables.InsertVariable "bIsBexWadInstalled", "False"
			End If
			NwEngine.Variables.Persistent("bIsBexWadInstalled") = vbFalse
			]]></Src>
		</Action>
		<Action Condition="%bIsBexWadInstalled%=True" Description="Business Explorer Web Application Designer - Can Only Be Used in SAP NetWeaver NewYork" Dst="ProgramFiles\Business Explorer\Web Application Designer" Type="Shortcut">
			<Src>&quot;%SapBiDestDir%\BI\BExWebApplicationDesigner.exe&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{E8C58B34-ADCB-4998-9077-FA1E57DCF08B}" Min_Compliant_Version="20000" Name="$CustomerConfigFiles" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist("%SAPSrcDir%\custom\services") Then
				NwEngine.Shell.CopyFile "%SAPSrcDir%\custom\services", "%WinSysDir%\drivers\etc\services"
			End If
			]]></Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist("%SAPSrcDir%\custom\saplogon.ini") Then
				NwEngine.Shell.CopyFile "%SAPSrcDir%\custom\saplogon.ini", "%WinDir%\saplogon.ini"
			End If
			If NwEngine.Shell.FileExist("%SAPSrcDir%\custom\saproute.ini") Then
				NwEngine.Shell.CopyFile "%SAPSrcDir%\custom\saproute.ini", "%WinDir%\saproute.ini"
			End If
			If NwEngine.Shell.FileExist("%SAPSrcDir%\custom\sapmsg.ini") Then
				NwEngine.Shell.CopyFile "%SAPSrcDir%\custom\sapmsg.ini", "%WinDir%\sapmsg.ini"
			End If
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{CCABD714-2B76-4969-BDFB-C02B48D5245C}" Min_Compliant_Version="20000" Name="$MS DLLs" SysSize="130" Version="20000">
		<Action Dst="%WinSysDir%" Type="File">
			<Src>%SAPSrcDir%\system\mfcans32.dll</Src>
		</Action>
		<!-- "oc30.dll" removed from 7.20 cf internal csn 227438 2009 -->
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.10 PL 12: Obsolete files vtssdl32.dll and vtssm32.dll not installed anymore!"]]></Src>
		</Action>
	</Component>
	<Component Guid="{FD16DE41-47E1-4571-AF35-60E5A85397AC}" Min_Compliant_Version="20000" Name="$SAP GUI Uninstall Keys" Version="20000">
		<Action Dst="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SAPGUI710" Type="Registry">
			<RegValue Name="DisplayName">SAP GUI for Windows 7.30</RegValue>
			<RegValue Name="DisplayVersion">7.30 Compilation 1</RegValue>
			<RegValue Name="DisplayIcon">&quot;%SapFrontEndDir%\sapgui\saplgpad.exe&quot;,0</RegValue>
			<RegValue Name="Publisher">SAP</RegValue>
			<RegValue Name="URLUpdateInfo">http://service.sap.com</RegValue>
			<RegValue Name="ModifyPath">&quot;%SAPSetupDir%\setup\NwSapSetup.exe&quot;</RegValue>
			<RegValue Name="UninstallString">&quot;%SAPSetupDir%\setup\NwSapSetup.exe&quot; /uninstall /product=&quot;ECL710+SAPDTS+BW350+KW710+GUI710ISHMED+GUI710TWEAK+JNet+SAPGUI710&quot; /TitleComponent:&quot;SAPGUI710&quot; /IgnoreMissingProducts</RegValue>
		</Action>
	</Component>
	<Component Guid="{04DC8F4B-A28F-45de-8C1F-EAE757E48516}" Min_Compliant_Version="20000" Name="$Services File Changes" Version="20000">
		<Action Dst="%WinDir%\system32\drivers\etc\services" Type="SeparatedValues">
			<Src><![CDATA[
sapdp00  3200/tcp
				sapdp01  3201/tcp
				sapdp02  3202/tcp
				sapdp03  3203/tcp
				sapdp04  3204/tcp
				sapdp05  3205/tcp
				sapdp06  3206/tcp
				sapdp07  3207/tcp
				sapdp08  3208/tcp
				sapdp09  3209/tcp
				sapdp10  3210/tcp
				sapdp11  3211/tcp
				sapdp12  3212/tcp
				sapdp13  3213/tcp
				sapdp14  3214/tcp
				sapdp15  3215/tcp
				sapdp16  3216/tcp
				sapdp17  3217/tcp
				sapdp18  3218/tcp
				sapdp19  3219/tcp
				sapdp20  3220/tcp
				sapdp21  3221/tcp
				sapdp22  3222/tcp
				sapdp23  3223/tcp
				sapdp24  3224/tcp
				sapdp25  3225/tcp
				sapdp26  3226/tcp
				sapdp27  3227/tcp
				sapdp28  3228/tcp
				sapdp29  3229/tcp
				sapdp30  3230/tcp
				sapdp31  3231/tcp
				sapdp32  3232/tcp
				sapdp33  3233/tcp
				sapdp34  3234/tcp
				sapdp35  3235/tcp
				sapdp36  3236/tcp
				sapdp37  3237/tcp
				sapdp38  3238/tcp
				sapdp39  3239/tcp
				sapdp40  3240/tcp
				sapdp41  3241/tcp
				sapdp42  3242/tcp
				sapdp43  3243/tcp
				sapdp44  3244/tcp
				sapdp45  3245/tcp
				sapdp46  3246/tcp
				sapdp47  3247/tcp
				sapdp48  3248/tcp
				sapdp49  3249/tcp
				sapdp50  3250/tcp
				sapdp51  3251/tcp
				sapdp52  3252/tcp
				sapdp53  3253/tcp
				sapdp54  3254/tcp
				sapdp55  3255/tcp
				sapdp56  3256/tcp
				sapdp57  3257/tcp
				sapdp58  3258/tcp
				sapdp59  3259/tcp
				sapdp60  3260/tcp
				sapdp61  3261/tcp
				sapdp62  3262/tcp
				sapdp63  3263/tcp
				sapdp64  3264/tcp
				sapdp65  3265/tcp
				sapdp66  3266/tcp
				sapdp67  3267/tcp
				sapdp68  3268/tcp
				sapdp69  3269/tcp
				sapdp70  3270/tcp
				sapdp71  3271/tcp
				sapdp72  3272/tcp
				sapdp73  3273/tcp
				sapdp74  3274/tcp
				sapdp75  3275/tcp
				sapdp76  3276/tcp
				sapdp77  3277/tcp
				sapdp78  3278/tcp
				sapdp79  3279/tcp
				sapdp80  3280/tcp
				sapdp81  3281/tcp
				sapdp82  3282/tcp
				sapdp83  3283/tcp
				sapdp84  3284/tcp
				sapdp85  3285/tcp
				sapdp86  3286/tcp
				sapdp87  3287/tcp
				sapdp88  3288/tcp
				sapdp89  3289/tcp
				sapdp90  3290/tcp
				sapdp91  3291/tcp
				sapdp92  3292/tcp
				sapdp93  3293/tcp
				sapdp94  3294/tcp
				sapdp95  3295/tcp
				sapdp96  3296/tcp
				sapdp97  3297/tcp
				sapdp98  3298/tcp
				sapdp99  3299/tcp
				sapgw00  3300/tcp
				sapgw01  3301/tcp
				sapgw02  3302/tcp
				sapgw03  3303/tcp
				sapgw04  3304/tcp
				sapgw05  3305/tcp
				sapgw06  3306/tcp
				sapgw07  3307/tcp
				sapgw08  3308/tcp
				sapgw09  3309/tcp
				sapgw10  3310/tcp
				sapgw11  3311/tcp
				sapgw12  3312/tcp
				sapgw13  3313/tcp
				sapgw14  3314/tcp
				sapgw15  3315/tcp
				sapgw16  3316/tcp
				sapgw17  3317/tcp
				sapgw18  3318/tcp
				sapgw19  3319/tcp
				sapgw20  3320/tcp
				sapgw21  3321/tcp
				sapgw22  3322/tcp
				sapgw23  3323/tcp
				sapgw24  3324/tcp
				sapgw25  3325/tcp
				sapgw26  3326/tcp
				sapgw27  3327/tcp
				sapgw28  3328/tcp
				sapgw29  3329/tcp
				sapgw30  3330/tcp
				sapgw31  3331/tcp
				sapgw32  3332/tcp
				sapgw33  3333/tcp
				sapgw34  3334/tcp
				sapgw35  3335/tcp
				sapgw36  3336/tcp
				sapgw37  3337/tcp
				sapgw38  3338/tcp
				sapgw39  3339/tcp
				sapgw40  3340/tcp
				sapgw41  3341/tcp
				sapgw42  3342/tcp
				sapgw43  3343/tcp
				sapgw44  3344/tcp
				sapgw45  3345/tcp
				sapgw46  3346/tcp
				sapgw47  3347/tcp
				sapgw48  3348/tcp
				sapgw49  3349/tcp
				sapgw50  3350/tcp
				sapgw51  3351/tcp
				sapgw52  3352/tcp
				sapgw53  3353/tcp
				sapgw54  3354/tcp
				sapgw55  3355/tcp
				sapgw56  3356/tcp
				sapgw57  3357/tcp
				sapgw58  3358/tcp
				sapgw59  3359/tcp
				sapgw60  3360/tcp
				sapgw61  3361/tcp
				sapgw62  3362/tcp
				sapgw63  3363/tcp
				sapgw64  3364/tcp
				sapgw65  3365/tcp
				sapgw66  3366/tcp
				sapgw67  3367/tcp
				sapgw68  3368/tcp
				sapgw69  3369/tcp
				sapgw70  3370/tcp
				sapgw71  3371/tcp
				sapgw72  3372/tcp
				sapgw73  3373/tcp
				sapgw74  3374/tcp
				sapgw75  3375/tcp
				sapgw76  3376/tcp
				sapgw77  3377/tcp
				sapgw78  3378/tcp
				sapgw79  3379/tcp
				sapgw80  3380/tcp
				sapgw81  3381/tcp
				sapgw82  3382/tcp
				sapgw83  3383/tcp
				sapgw84  3384/tcp
				sapgw85  3385/tcp
				sapgw86  3386/tcp
				sapgw87  3387/tcp
				sapgw88  3388/tcp
				sapgw89  3389/tcp
				sapgw90  3390/tcp
				sapgw91  3391/tcp
				sapgw92  3392/tcp
				sapgw93  3393/tcp
				sapgw94  3394/tcp
				sapgw95  3395/tcp
				sapgw96  3396/tcp
				sapgw97  3397/tcp
				sapgw98  3398/tcp
				sapgw99  3399/tcp
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{BB3D0A6C-B026-473a-952F-6752162AAB16}" Min_Compliant_Version="20000" Name="$SapShared Key" Version="20000">
		<!-- The following three Reg-Values are reserved for SAP GUI only! -->
		<Action Dst="HKLM\SOFTWARE\SAP\SAP Shared" Type="Registry">
			<RegValue Name="SAPsourcedir">%SAPsrcDir%</RegValue>
			<RegValue Name="SAPDestDir">%SapFrontEndDir%</RegValue>
			<RegValue Name="SAPsysdir">%SapFrontEndDir%\SapGui</RegValue>
		</Action>
		<Action Type="Script">
			<Src><![CDATA[
NwEngine.Context.Log.Write "Script Action: Dealing with SetSapWorkDir."
			lastIndex = NwEngine.Variables.GetTotalNumValues( "SetSapWorkDir" )-1
			for i = 0 to lastIndex
				 NwEngine.Context.Log.Write "SetSapWorkDir Value Number " & i & ": " & NwEngine.Variables.GetNthValue( "SetSapWorkDir", i)
			Next

			If (lastIndex = 2) Then
				NwEngine.Context.Log.Write "The client machine already has a variable named SetSapWorkDir."
			
				SetSapWorkDirClient  = NwEngine.Variables.GetNthValue( "SetSapWorkDir", 0)
				SetSapWorkDirInit    = NwEngine.Variables.GetNthValue( "SetSapWorkDir", 1)
				SetSapWorkDirPackage = NwEngine.Variables.GetNthValue( "SetSapWorkDir", 2)
				'LcSetSapWorkDir = LCase(SetSapWorkDirPackage)
				LcSetSapWorkDir = NWEngine.Variables.ResolveString(SetSapWorkDirPackage)

				NwEngine.Context.Log.Write "SetSapWorkDirInit Value: " & SetSapWorkDirInit
				NwEngine.Context.Log.Write "SetSapWorkDirClient Value: " & SetSapWorkDirClient
				NwEngine.Context.Log.Write "SetSapWorkDirPackage Value: " & SetSapWorkDirPackage

				SetSapWorkDirInit    = Replace (SetSapWorkDirInit, Chr(37), Chr(37) & Chr(37), 1, -1, 1)
				SetSapWorkDirClient  = Replace (SetSapWorkDirClient, Chr(37), Chr(37) & Chr(37), 1, -1, 1)
				SetSapWorkDirPackage = Replace (SetSapWorkDirPackage, Chr(37), Chr(37) & Chr(37), 1, -1, 1)

				NwEngine.Context.Log.Write "SetSapWorkDirInit Value Replaced: " & SetSapWorkDirInit
				NwEngine.Context.Log.Write "SetSapWorkDirClient Value Replaced: " & SetSapWorkDirClient
				NwEngine.Context.Log.Write "SetSapWorkDirPackage Value Replaced: " & SetSapWorkDirPackage
							
			End If

			If (lastIndex = 1) Then
				NwEngine.Context.Log.Write "The client machine doesn't have a variable named SetSapWorkDir yet."
			
				SetSapWorkDirPackage  = NwEngine.Variables.GetNthValue( "SetSapWorkDir", 0)
				SetSapWorkDirInit    = NwEngine.Variables.GetNthValue( "SetSapWorkDir", 1)
				'LcSetSapWorkDir = LCase(SetSapWorkDirPackage)
				LcSetSapWorkDir = NWEngine.Variables.ResolveString(SetSapWorkDirPackage)
				
				NwEngine.Context.Log.Write "SetSapWorkDirInit Value: " & SetSapWorkDirInit
				NwEngine.Context.Log.Write "SetSapWorkDirPackage Value: " & SetSapWorkDirPackage

				SetSapWorkDirInit    = Replace (SetSapWorkDirInit, Chr(37), Chr(37) & Chr(37), 1, -1, 1)
				SetSapWorkDirPackage  = Replace (SetSapWorkDirPackage, Chr(37), Chr(37) & Chr(37), 1, -1, 1)

				NwEngine.Context.Log.Write "SetSapWorkDirInit Value Replaced: " & SetSapWorkDirInit
				NwEngine.Context.Log.Write "SetSapWorkDirPackage Value Replaced: " & SetSapWorkDirPackage
							
			End If
			
				NwEngine.Context.Log.Write "LcSetSapWorkDir Value: " & LcSetSapWorkDir

			If ( SetSapWorkDirPackage <> "" ) Then
				NwEngine.Variables.LockVariable( "SetSapWorkDir" ) = vbFalse 
				NwEngine.Variables.AppendDefaultValue "SetSapWorkDir", SetSapWorkDirPackage
				NwEngine.Context.Log.Write "SetSapWorkDir Value: " & NwEngine.Variables.GetValue ( "SetSapWorkDir" )
			End If
			]]></Src>
		</Action>
		<Action Condition="(%SetSapWorkDir%&lt;&gt;&quot;SAP GUI Default&quot;)&amp;(%SetSapWorkDir%&lt;&gt;%%USERPROFILE%%\sapworkdir)" Dst="HKLM\SOFTWARE\SAP\SAP Shared" Type="Registry">
			<RegValue Name="SAPworkdir" Type="ExpandedString">%SetSapWorkDir%</RegValue>
		</Action>
		<Action Condition="(%SetSapGuiHistoryDir%&lt;&gt;&quot;SAP GUI Default&quot;)&amp;(%SetSapGuiHistoryDir%&lt;&gt;&quot;&quot;)" Dst="HKLM\SOFTWARE\SAP\SAP Shared" Type="Registry">
			<RegValue Name="SAPhistorydir" Type="ExpandedString">%SetSapGuiHistoryDir%</RegValue>
		</Action>
	</Component>
	<Component Guid="{E6F05800-C45B-4d4d-BC41-376D846C6A85}" Min_Compliant_Version="20000" Name="$SAP Fonts" Size="169" Version="20010">
		<Action Dst="%WinDir%\Fonts" Type="File">
			<Src>%SAPSrcDir%\Sapgui\Fonts\arimon__.ttf</Src>
			<Src>%SAPSrcDir%\Sapgui\Fonts\arimonbd.ttf</Src>
			<Src>%SAPSrcDir%\Sapgui\Fonts\sapdn.ttf</Src>
			<Src>%SAPSrcDir%\Sapgui\Fonts\sapin.ttf</Src>
		</Action>
	</Component>
	<Component Guid="{BAFD927C-D8AB-4B66-8F7E-391EB90522F2}" Min_Compliant_Version="20000" Name="$SAP Bitmap DLL" SysSize="1661" Version="20040">
		<Action Dst="%WinSysDir%" Type="File">
			<Src>%SAPSrcDir%\SYSTEM\SAPbtmp.dll</Src>
		</Action>
	</Component>
	<Component Guid="{4FA50AAA-25C2-4829-B605-D2F2E0FD0401}" Min_Compliant_Version="20000" Name="$CoreGUI Files" Size="116237" SysSize="507" Version="20953">
		<Requires Guid="{F12D3A46-2B07-4638-9157-C2E05F03BC24}" Name="$VC9RT"/>
		<Requires Guid="{649D045B-923A-4165-BE57-2D16BA2E5DD6}" Name="$SAP Logon Kit"/>
		<Requires Guid="{BAFD927C-D8AB-4B66-8F7E-391EB90522F2}" Name="$SAP Bitmap DLL"/>
		<!-- component SAP Logon Kit was integrated into CoreGUI Files as of 7.20 due to new dependencies to saplgdll.dll (from sapsettings.ocx) -->
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\sapdpams.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\saplgmgr.dll</Src>
			<Src>%SAPSrcDir%\sapgui\saplgmgr2.dll</Src>
			<Src>%SAPSrcDir%\sapgui\saplgmgr_proxy.dll</Src>
			<Src>%SAPSrcDir%\sapgui\saplgnui.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUiZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\LgnUizh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\LgnUiET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\LgnUiLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\LgnUiLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\lgndllZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\lgndllET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\lgndllLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\lgndllLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\logonAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\logonZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\logonET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\logonLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\logonLV.txt</Src>
		</Action>
		<!-- language files for "FrontOptEdit.exe" -->
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\froptAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\froptZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\froptET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\froptLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\froptLV.txt</Src>
		</Action>
		<!-- language files for Office Integration -->
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\officeintegrationZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\officeintegrationET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\officeintegrationLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\officeintegrationLV.txt</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Variables.InsertVariable "bOverWriteShowShortcutTab", "True"
			NwEngine.Variables.InsertVariable "bOverWriteShowSystemTab", "True"
			NwEngine.Variables.InsertVariable "bOverWriteShowMessageServerTab", "True"
			NwEngine.Variables.InsertVariable "bOverWriteShowSAProuterTab", "True"
			If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\SAP\SAPLogon") Then
				dwShowShortcutTab = NwEngine.Shell.GetRegValue( "HKLM\SOFTWARE\SAP\SAPLogon\ShowShortcutTab" )
				dwShowSystemTab = NwEngine.Shell.GetRegValue( "HKLM\SOFTWARE\SAP\SAPLogon\ShowSystemTab" )
				dwShowMessageServerTab = NwEngine.Shell.GetRegValue( "HKLM\SOFTWARE\SAP\SAPLogon\ShowMessageServerTab" )
				dwShowSAProuterTab = NwEngine.Shell.GetRegValue( "HKLM\SOFTWARE\SAP\SAPLogon\ShowSAProuterTab" )
				NwEngine.Context.Log.Write "dwShowShortcutTab = " & dwShowShortcutTab
				NwEngine.Context.Log.Write "dwShowSystemTab = " & dwShowSystemTab
				NwEngine.Context.Log.Write "dwShowMessageServerTab = " & dwShowMessageServerTab
				NwEngine.Context.Log.Write "dwShowSAProuterTab = " & dwShowSAProuterTab
				If dwShowShortcutTab <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'ShowShortcutTab' key!"
					NwEngine.Variables.InsertVariable "bOverWriteShowShortcutTab", "False"
				End If
				If dwShowSystemTab <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'ShowSystemTab' key!"
					NwEngine.Variables.InsertVariable "bOverWriteShowSystemTab", "False"
				End If
				If dwShowMessageServerTab <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'ShowMessageServerTab' key!"
					NwEngine.Variables.InsertVariable "bOverWriteShowMessageServerTab", "False"
				End If
				If dwShowSAProuterTab <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'ShowSAProuterTab' key!"
					NwEngine.Variables.InsertVariable "bOverWriteShowSAProuterTab", "False"
				End If
			End If
			NwEngine.Variables.Persistent("bOverWriteShowShortcutTab") = vbFalse
			NwEngine.Variables.Persistent("bOverWriteShowSystemTab") = vbFalse
			NwEngine.Variables.Persistent("bOverWriteShowMessageServerTab") = vbFalse
			NwEngine.Variables.Persistent("bOverWriteShowSAProuterTab") = vbFalse
			]]></Src>
		</Action>
		<Action Condition="%bOverWriteShowShortcutTab%=True" Dst="HKLM\SOFTWARE\SAP\SAPLogon" RunAt="Install" Type="Registry">
			<RegValue Name="ShowShortcutTab" Type="DWORD">1</RegValue>
		</Action>
		<Action Condition="%bOverWriteShowSystemTab%=True" Dst="HKLM\SOFTWARE\SAP\SAPLogon" RunAt="Install" Type="Registry">
			<RegValue Name="ShowSystemTab" Type="DWORD">1</RegValue>
		</Action>
		<Action Condition="%bOverWriteShowMessageServerTab%=True" Dst="HKLM\SOFTWARE\SAP\SAPLogon" RunAt="Install" Type="Registry">
			<RegValue Name="ShowMessageServerTab" Type="DWORD">0</RegValue>
		</Action>
		<Action Condition="%bOverWriteShowSAProuterTab%=True" Dst="HKLM\SOFTWARE\SAP\SAPLogon" RunAt="Install" Type="Registry">
			<RegValue Name="ShowSAProuterTab" Type="DWORD">0</RegValue>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Variables.InsertVariable "bOverWriteStartSapLogon", "True"
			If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\SAP\SAPGUI") Then
				dwStartSapLogon = NwEngine.Shell.GetRegValue( "HKLM\SOFTWARE\SAP\SAPGUI\StartSapLogon" )
				NwEngine.Context.Log.Write "dwStartSapLogon = " & dwStartSapLogon
				If dwStartSapLogon <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'StartSapLogon' key!"
					NwEngine.Variables.InsertVariable "bOverWriteStartSapLogon", "False"
				End If
			End If
			NwEngine.Variables.Persistent("bOverWriteStartSapLogon") = vbFalse
			]]></Src>
		</Action>
		<Action Condition="%bOverWriteStartSapLogon%=True" Dst="HKLM\SOFTWARE\SAP\SAPGUI" RunAt="Install" Type="Registry">
			<RegValue Name="StartSaplogon" Type="DWORD">1</RegValue>
		</Action>
		<!-- gdiplus.dll is required on Win2K by "SapFewSe.ocx" and possibly by other SAP GUI DLLs -->
		<Action Condition="%WinType%=Windows 2000" Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SapSrcDir%\System\gdiplus.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\SapGuiFocus.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPROTWR.DLL</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewcx.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewtr.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPmemmgt.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfesec.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPrules.xml</Src>
			<Src>%SAPsrcDir%\SAPgui\gngmb.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\lprint.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\lprintg.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\niping.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPawole.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPawrfc.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\sapcomni.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\sapfewdbg.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewcb.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewcls.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewdp.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\sapfewuimsg.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewdr.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewed.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewnls.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewui.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\convlib.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfewut.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPftp.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPguilib.dll</Src>
			<Src AppPath="%CommonProgramFiles%\SAP Shared">%SAPsrcDir%\SAPgui\SAPgui.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPhttp.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPpcfvd.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPpctxt.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPcpp47.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapfewrm.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapthmdrw.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapfdraw.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapfhook.dll</Src>
			<Src>%SAPSrcDir%\SapGui\SAPguisv.ocx</Src>
			<Src>%SapSrcDir%\sapgui\sapthmcust.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapsettings.ocx</Src>
			<Src>%SapSrcDir%\sapgui\sapsettingsshow.exe</Src>
			<Src>%SAPSrcDir%\sapgui\saplgdll.dll</Src>
			<Src>%SAPSrcDir%\sapgui\sapshlib.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPfront.dll</Src>
			<Src>%SapSrcDir%\SapGui\SapMsgForward.ocx</Src>
			<Src>%SapSrcDir%\SapGui\sapwdzip.dll</Src>
			<Src>%SapSrcDir%\SapGui\FrontOptEdit.exe</Src>
			<Src>%SapSrcDir%\SapGui\guirfc.dll</Src>
		</Action>
		<!-- language files for "SAPfesec.dll" -->
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\fesecAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fesecZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fesecET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fesecLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fesecLV.txt</Src>
		</Action>
		<!-- language files for "SAPSettings.ocx" -->
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\settingAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\settingZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\settingET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\settingLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\settingLV.txt</Src>
		</Action>
		<!-- "WCRContainer.dll" is used for the Crystal Reports ALV Adapter -->
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\WCRContainer.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\SapGuiServer.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\LSAPIWrapper.dll</Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_LMZ_SCRIPT" Type="Registry">
			<RegValue Name="SAPgui.exe" Type="DWORD">0</RegValue>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\WDTTREE.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\swinbitm.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\sapwin.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\sapfprint.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\omsprint.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SapSrcDir%\SAPgui\sapfewcmen.dll</Src>
		</Action>
		<Action Dst="HKLM\Software\SAP\SAPGUI Front\SAP Frontend Server\DiagParser" Type="Registry">
			<RegValue Name="NewWayBack" Type="DWORD">0</RegValue>
		</Action>
		<Action Dst="HKCR\Sapgui.Application" Type="Registry">
			<RegValue>Sapgui Application</RegValue>
		</Action>
		<Action Dst="HKCR\Sapgui.Application\Clsid" Type="Registry">
			<RegValue>{83658045-6571-3232-7082-797884697868}</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697868}" Type="Registry">
			<RegValue>Sapgui Application</RegValue>
		</Action>
		<Action Dst="HKCR\Sapgui.Automation" Type="Registry">
			<RegValue>Sapgui Automation</RegValue>
		</Action>
		<Action Dst="HKCR\Sapgui.Automation\Clsid" Type="Registry">
			<RegValue>{136B4B54-D25E-11D3-BD3F-00105AB02CA1}</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{136B4B54-D25E-11D3-BD3F-00105AB02CA1}" Type="Registry">
			<RegValue>Sapgui Automation</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\Office Integration" Type="Registry">
			<RegValue Name="CLSID">{9DE5C794-1990-11D1-A911-080009B0CB9D}</RegValue>
			<RegValue Name="DisplayName">Office Integration</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPAutomCtrler" Type="Registry">
			<RegValue Name="CLSID">{541023F4-02B8-4904-B3C9-A2A7C3D1996E}</RegValue>
			<RegValue Name="DisplayName">Automation</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPControlManager" Type="Registry">
			<RegValue Name="CLSID">{5046E961-C80A-11D3-BD3C-00105AB02CA1}</RegValue>
			<RegValue Name="DisplayName">Control Manager</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPDiagParser" Type="Registry">
			<RegValue Name="CLSID">{13D41909-30DF-4759-8EA0-ECB05054131E}</RegValue>
			<RegValue Name="DisplayName">Diag Parser</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGmux" Type="Registry">
			<RegValue Name="CLSID">{C64BAA8D-4217-4959-8074-1B17827887F9}</RegValue>
			<RegValue Name="DisplayName">Graphic Mux</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPLocalDB" Type="Registry">
			<RegValue Name="CLSID">{02437F71-8F8F-42B1-84DD-CAB4939B3698}</RegValue>
			<RegValue Name="DisplayName">Local DB</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIMenu" Type="Registry">
			<RegValue Name="CLSID">{B57AEE3D-02EA-40EF-8EEA-20CE16D3E08E}</RegValue>
			<RegValue Name="DisplayName">Menu</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUITable" Type="Registry">
			<RegValue Name="CLSID">{094B3677-4124-45B2-B16E-37C162C59685}</RegValue>
			<RegValue Name="DisplayName">Table Ctrl</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIDragRelate" Type="Registry">
			<RegValue Name="CLSID">{4D06C237-075C-46CD-BC45-60B4947EAB3E}</RegValue>
			<RegValue Name="DisplayName">Drag &amp; Relate</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIFocus" Type="Registry">
			<RegValue Name="CLSID">{2E45C2AB-E5D0-4F79-8DC6-5F7C24686C4D}</RegValue>
			<RegValue Name="DisplayName">Focus</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUITabChain" Type="Registry">
			<RegValue Name="CLSID">{89BCCFD0-2DC3-11D5-B2DC-0050DAE009FB}</RegValue>
			<RegValue Name="DisplayName">Tab Chain</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIScripting" Type="Registry">
			<RegValue Name="CLSID">{7C2D030E-ACFD-42A1-96DF-59032F27DAE6}</RegValue>
			<RegValue Name="DisplayName">Scripting</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIPerformance" Type="Registry">
			<RegValue Name="CLSID">{66EA8827-9617-46D1-929B-C3001BB8D69C}</RegValue>
			<RegValue Name="DisplayName">Performance</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\Picture" Type="Registry">
			<RegValue Name="CLSID">{42AB3E73-17AD-11D1-A530-0000E82DE990}</RegValue>
			<RegValue Name="DisplayName">Picture Control</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIDiagPriorParsing" Type="Registry">
			<RegValue Name="CLSID">{12A8B579-FEEF-4306-9D78-8AABAB36B3EE}</RegValue>
			<RegValue Name="DisplayName">Diag prior parsing</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIDiag2Server" Type="Registry">
			<RegValue Name="CLSID">{69F436DC-21E1-4B8E-8601-942B186E9A03}</RegValue>
			<RegValue Name="DisplayName">Diag to Server</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUI_RFC" Type="Registry">
			<RegValue Name="CLSID">{359E21AD-3A15-492F-9205-00B459A12B4C}</RegValue>
			<RegValue Name="DisplayName">RFC (rfc*.trc)</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPContextManagement" Type="Registry">
			<RegValue Name="CLSID">{C53386B1-6B21-442B-AF59-277B6869A836}</RegValue>
			<RegValue Name="DisplayName">Context Manager</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUIMemMgt" Type="Registry">
			<RegValue Name="CLSID">{03F9E5C3-2484-4331-8162-6EC5ADEBEC57}</RegValue>
			<RegValue Name="DisplayName">Memory Management</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUISecurity" Type="Registry">
			<RegValue Name="CLSID">{B8A9381B-A6EA-4F65-847C-FA80AB344BFD}</RegValue>
			<RegValue Name="DisplayName">Access Control</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\SAPGUISecuritySimple" Type="Registry">
			<RegValue Name="CLSID">{B8A9381B-A6EA-4F65-847C-FA80AB344BFE}</RegValue>
			<RegValue Name="DisplayName">Security</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\General" Type="Registry">
			<RegValue Name="CLSID">{122B9293-555A-4359-9C12-7E2E43E74652}</RegValue>
			<RegValue Name="DisplayName">General</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Compatibility32" Type="Registry">
			<RegValue Name="EXCEL">0x40000000</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App" Type="Registry">
			<RegValue>SAP Logon Application</RegValue>
			<RegValue Name="EditFlags" Type="Binary">00000100</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App\CLSID" Type="Registry">
			<RegValue>{83658045-6571-3232-7082-797884697869}</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App\DocObject" Type="Registry">
			<RegValue>0</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App\Insertable" Type="Registry">
			<RegValue/>
		</Action>
		<Action Dst="HKCR\SapFront.App\protocol\StdFileEditing\verb\0" Type="Registry">
			<RegValue>&amp;Edit</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}" Type="Registry">
			<RegValue>SAP Logon Application</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\AuxUserType\2" Type="Registry">
			<RegValue>SAP Logon</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\AuxUserType\3" Type="Registry">
			<RegValue>saplogon</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\DefaultExtension" Type="Registry">
			<RegValue>.gui, Filetype (*.gui)</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\DocObject" Type="Registry">
			<RegValue>0</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\InprocHandler32" Type="Registry">
			<RegValue>ole32.dll</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\Insertable" Type="Registry">
			<RegValue/>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\MiscStatus" Type="Registry">
			<RegValue>32</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\Printable" Type="Registry">
			<RegValue/>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\ProgID" Type="Registry">
			<RegValue>SAPFront.App</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\Verb\0" Type="Registry">
			<RegValue>&amp;Edit,0,2</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\Verb\1" Type="Registry">
			<RegValue>&amp;Open,0,2</RegValue>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\SAPlpd" Type="File">
			<Src>%SAPsrcDir%\SAPgui\SAPlpd\SAPlpd.exe</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPlpd\slpd.msg</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPlpd\slpdbitm.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\SAPlpd\slpdread.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\SAPguihelp" Type="File">
			<Src>%SAPsrcDir%\sapgui\sapguihelp\sapguiEN.chm</Src>
			<Src>%SAPsrcDir%\sapgui\sapguihelp\sapguiDE.chm</Src>
			<Src>%SAPsrcDir%\sapgui\sapguihelp\ab4editen.chm</Src>
			<Src>%SAPsrcDir%\sapgui\sapguihelp\SAPGUIScripting.chm</Src>
			<Src>%SapSrcDir%\SapGui\sapguihelp\FrontOptEdit_d.chm</Src>
			<Src>%SapSrcDir%\SapGui\sapguihelp\FrontOptEdit_e.chm</Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\RFC\Sapgui\4.6D" Type="Registry">
			<RegValue Name="Path">%SapFrontEndDir%\SapGui\SapGui.exe</RegValue>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\sapshcut.exe</Src>
		</Action>
		<Action Dst="HKCR\.sap" Type="Registry">
			<RegValue>SAPGui.Shortcut.File</RegValue>
		</Action>
		<Action Dst="HKCR\.sap\ShellNew" Type="Registry">
			<RegValue Name="NullFile"/>
		</Action>
		<Action Dst="HKCR\Sapgui.Shortcut.File\DefaultIcon" Type="Registry">
			<RegValue>%SapFrontEndDir%\SAPgui\sapshlib.dll,0</RegValue>
		</Action>
		<Action Dst="HKCR\MIME\Database\Content Type\application/x-sapshortcut" Type="Registry">
			<RegValue Name="Extension">.sap</RegValue>
		</Action>
		<Action Condition="%User_UI_LangId%=DE" Dst="HKCR\SAPGui.Shortcut.File" Type="Registry">
			<RegValue>SAP GUI Verknüpfung</RegValue>
		</Action>
		<Action Condition="%User_UI_LangId% &lt;&gt; DE" Dst="HKCR\SAPGui.Shortcut.File" Type="Registry">
			<RegValue>SAP GUI Shortcut</RegValue>
		</Action>
		<Action Dst="HKCR\SAPGui.Shortcut.File\shell\Open\command" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\sapgui.exe&quot; /SHORTCUT=&quot;%1&quot;</RegValue>
		</Action>
		<Action Dst="HKCR\SAPGui.Shortcut.File\shell\Edit\command" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\sapgui.exe&quot; /SHORTCUT=&quot;/edit %1&quot;</RegValue>
		</Action>
		<Action Dst="HKCR\.sapssd" Type="Registry">
			<RegValue>Sapfront.App</RegValue>
		</Action>
		<Action Dst="HKCR\.sapssd" Type="Registry">
			<RegValue Name="Content Type">application/vnd.sap-gui</RegValue>
		</Action>
		<Action Dst="HKCR\MIME\Database\Content Type\application/vnd.sap-gui" Type="Registry">
			<RegValue Name="CLSID">{83658045-6571-3232-7082-797884697869}</RegValue>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\shcutAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\shcutZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\shcutET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\shcutLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\shcutLV.txt</Src>
		</Action>
		<Action RunAt="UnInstall" Type="Script">
			<Src><![CDATA[
NwEngine.Context.Log.Write("Search for obsolete 'FewUi*.txt' files to remove.")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\Lang\FewUiAR.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiBG.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiCA.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiCS.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiDA.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiDE.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiEL.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiEN.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiES.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiFI.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiFR.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiHE.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiHR.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiHU.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiIT.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiJA.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiKO.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiNL.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiNO.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiPL.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiPT.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiRO.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiRU.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiSH.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiSK.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiSL.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiSV.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiTH.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiTR.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiUK.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiZF.txt")
			RemoveObsoleteFile("%SapFrontEndDir%\SAPgui\lang\FewUiZH.txt")
			Function RemoveObsoleteFile( strFilename )
				If NwEngine.Shell.FileExist( strFilename ) Then
					NwEngine.Shell.DeleteFile strFilename
				End If
			End Function
			]]></Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\frontAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\frontZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\frontET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\frontLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\frontLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\guidllAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\guidllZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\guidllET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\guidllLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\guidllLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\gxwilZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\gxwilET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\gxwilLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\gxwilLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\optionAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\optionZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\optionET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\optionLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\optionLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\pcfvdZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\pcfvdET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\pcfvdLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\pcfvdLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\comniAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\comniZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\comniET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\comniLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\comniLV.txt</Src>
		</Action>
		<!-- New Visual Design Binaries -->
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\sapguirm32.dll</Src>
			<Src>%SapSrcDir%\sapgui\sapguidrw32.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\sapfctrl.dll</Src>
		</Action>
		<Action Condition="%WinType%=[Windows 2000,Windows XP,Windows Server 2003]" Dst="%WinSysDir%" Type="File">
			<Src>%SapSrcDir%\sapgui\sapfcpl.cpl</Src>
		</Action>
		<Action Condition="%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2]" Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\sapfewcp.exe</Src>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=false)" Dst="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ControlPanel\NameSpace\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}" Type="Registry">
			<RegValue>SAP GUI Configuration</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=false)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}" Type="Registry">
			<RegValue>SAP GUI Configuration</RegValue>
			<RegValue Name="InfoTip" Type="ExpandedString">@%SapFrontEndDir%\sapgui\sapfewcp.exe,-1</RegValue>
			<RegValue Name="LocalizedString" Type="ExpandedString">@%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
			<RegValue Name="System.Software.TasksFileUrl">Internal</RegValue>
			<RegValue Name="System.ApplicationName">SAP.SAPgui</RegValue>
			<RegValue Name="System.ControlPanel.Category">1</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=false)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}\DefaultIcon" Type="Registry">
			<RegValue Type="ExpandedString">%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=false)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}\Shell\Open\Command" Type="Registry">
			<RegValue Type="ExpandedString">%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
		</Action>
		<!-- WOW64 -->
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=true)" Dst="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ControlPanel\NameSpace\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}" Type="Registry" Use64BitHive="TRUE">
			<RegValue>SAP GUI Configuration</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=true)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}" Type="Registry" Use64BitHive="TRUE">
			<RegValue>SAP GUI Configuration</RegValue>
			<RegValue Name="InfoTip" Type="ExpandedString">@%SapFrontEndDir%\sapgui\sapfewcp.exe,-1</RegValue>
			<RegValue Name="LocalizedString" Type="ExpandedString">@%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
			<RegValue Name="System.Software.TasksFileUrl">Internal</RegValue>
			<RegValue Name="System.ApplicationName">SAP.SAPgui</RegValue>
			<RegValue Name="System.ControlPanel.Category">1</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=true)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}\DefaultIcon" Type="Registry" Use64BitHive="TRUE">
			<RegValue Type="ExpandedString">%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
		</Action>
		<Action Condition="(%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2])&amp;(%WOW64MODE%=true)" Dst="HKCR\CLSID\{8A6592C8-E790-4d19-899B-E95B2AD1AA7E}\Shell\Open\Command" Type="Registry" Use64BitHive="TRUE">
			<RegValue Type="ExpandedString">%SapFrontEndDir%\sapgui\sapfewcp.exe</RegValue>
		</Action>
		<!-- GUI Controls Binaries -->
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPSLIDE.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPHTMLM.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPHTML.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPHTMLP.DLL</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPEDIT.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapcombo.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\combobox.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\saptbar.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\WDTMCTRL.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpcs.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpda.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpde.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpen.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpes.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpfi.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpfr.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelphu.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpit.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpja.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpko.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpnl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpno.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelppl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelppt.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpro.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpru.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpsk.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpsv.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpth.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpzf.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\SearchHelpzh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\SearchHelpET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\SearchHelpLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\SearchHelpLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\WDTRMENU.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPoimgr.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPoipe8.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPoipss.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPoipw8.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPoipd.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPsdcc.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPcncli.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\SAPcncsv.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPImage.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\textedit.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapab4lex.dll</Src>
			<Src>%SAPSrcDir%\SapGui\sapab4edit.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\rndrt.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapsplit.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\ag7as.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\GridView.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewcs.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewda.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewde.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewen.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewes.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewfi.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewfr.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewhu.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewit.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewja.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewko.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewnl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewno.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewpl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewpt.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewro.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewru.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewsk.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewsv.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewth.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewzf.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\GridViewzh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\GridViewET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\GridViewLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\GridViewLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\viscarri.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\visualiz.exe</Src>
			<Src>%SAPSrcDir%\SapGui\vistransmitter.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\visu_se.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPguiRM.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPilidr.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\saptoolb.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPOPTIO.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapmime.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPfewin.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\wdtmlgnd.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapcalen.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapalvstub.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPBTFEditor.dll</Src>
		</Action>
		<!-- new in PL11 until PL13 -->
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SapControlPluginInvoker.dll</Src>
			<Src>%SAPSrcDir%\SapGui\saptrace.dll</Src>
			<Src>%SAPSrcDir%\SapGui\SAPGUIControlPlugin.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKcs.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKda.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKde.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKen.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKes.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKfi.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKfr.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKhu.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKit.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKja.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKko.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKnl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKno.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKpl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKpt.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKro.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKru.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKsk.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKsv.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKth.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKzf.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\PLUGINFRAMEWORKzh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\PLUGINFRAMEWORKET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\PLUGINFRAMEWORKLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\PLUGINFRAMEWORKLV.txt</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Variables.InsertVariable "bOverWriteSAPGUIControlPlugin", "True"
			If NwEngine.Shell.RegKeyExist("HKLM\Software\SAP\General") Then
				dwSAPGUIControlPlugin = NwEngine.Shell.GetRegValue( "HKLM\Software\SAP\General\SAPGUIControlPlugin" )
				NwEngine.Context.Log.Write "dwSAPGUIControlPlugin = " & dwSAPGUIControlPlugin
				If dwSAPGUIControlPlugin <> "" Then
					NwEngine.Context.Log.Write "Script-Action: Do not override existing 'SAPGUIControlPlugin' key!"
					NwEngine.Variables.InsertVariable "bOverWriteSAPGUIControlPlugin", "False"
				End If
			End If
			NwEngine.Variables.Persistent("bOverWriteSAPGUIControlPlugin") = vbFalse
			]]></Src>
		</Action>
		<Action Condition="%bOverWriteSAPGUIControlPlugin%=True" Dst="HKLM\Software\SAP\General" RunAt="Install" Type="Registry">
			<RegValue Name="SAPGUIControlPlugin" Type="DWORD">0</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General" RunAt="Uninstall" Type="Registry">
			<RegValue Name="SAPGUIControlPlugin" Type="DWORD">0</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\ControlServices" Type="Registry">
			<RegValue Name="WebSearchEngine">GOOGLE</RegValue>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Variables.InsertVariable "bOverWriteBranding", "False"
		If Not NwEngine.Shell.RegValueExist("HKLM\Software\SAP\General\Appearance\BrandingImage_ReadOnly") Then
			NwEngine.Context.Log.Write "Script-Action: Value 'BrandingImage_ReadOnly' does not exist yet and is going to be written."
			NwEngine.Variables.AppendDefaultValue "bOverWriteBranding", "True"
		Else
			NwEngine.Context.Log.Write "Script-Action: Do not override existing 'bOverWriteBranding' value!"
		End If
		NwEngine.Variables.Persistent("bOverWriteBranding") = vbFalse

		NwEngine.Variables.InsertVariable "bOverWriteUseBranding", "False"
		If Not NwEngine.Shell.RegValueExist("HKLM\Software\SAP\General\Appearance\UseBrandingImage_ReadOnly") Then
			NwEngine.Context.Log.Write "Script-Action: Value 'UseBrandingImage_ReadOnly' does not exist yet and is going to be written."
			NwEngine.Variables.AppendDefaultValue "bOverWriteUseBranding", "True"
		Else
			NwEngine.Context.Log.Write "Script-Action: Do not override existing 'bOverWriteUseBranding' value!"
		End If
		NwEngine.Variables.Persistent("bOverWriteUseBranding") = vbFalse
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{649D045B-923A-4165-BE57-2D16BA2E5DD6}" Min_Compliant_Version="20000" Name="$SAP Logon Kit" Size="0" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.20 C1: Component SAP Logon Kit is emptied - all files moved to component Core GUI!"]]></Src>
		</Action>
	</Component>
	<Component Guid="{D309D9D9-A47E-408F-B7A8-F1D578D5AFCA}" Min_Compliant_Version="20000" Name="$DDK Controls" Size="13617" Version="20051">
		<Requires Guid="{4FA50AAA-25C2-4829-B605-D2F2E0FD0401}" Name="$CoreGUI Files"/>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPTABCN.OCX</Src>
			<Src>%SAPSrcDir%\SapGui\sapdatap.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\sapdpcts.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\WDTAOCX.OCX</Src>
			<Src>%SAPsrcDir%\SapGui\sapwdtaocx.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\wdtfuncs.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\wdobapi.ocx</Src>
		</Action>
		<!-- These two OCX are needed for BW and BI -->
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\ICDataFlow.ocx</Src>
			<Src Register="FALSE">%SapSrcDir%\SapGui\ICDataFlow.ocx.uninstall.reg</Src>
			<Src>%SAPSrcDir%\SapGui\wdbdadpt.ocx</Src>
		</Action>
		<Action RunAt="UnInstall" Type="Execute">
			<Src DisplayText="Registry clean-up" Parameters="/s &quot;%SapFrontEndDir%\SapGui\ICDataFlow.ocx.uninstall.reg&quot;">%Windir%\RegEdit.exe</Src>
		</Action>
	</Component>
	<Component Guid="{7FCBBEC5-5AB9-4DD3-99D4-F083E98B1CE8}" Min_Compliant_Version="20000" Name="$Heiler Controls" Size="140" SysSize="1650" Version="20010">
		<Requires Guid="{CCABD714-2B76-4969-BDFB-C02B48D5245C}" Name="$MS DLLs"/>
		<Action Dst="%WinSysDir%" Type="File">
			<Src>%SAPSrcDir%\SapGui\h5dlg32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\h5icon32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\h5krnl32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\h5menu32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\h5rtf32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\h5tool32.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\SAPRTF.OCX</Src>
		</Action>
	</Component>
	<Component Guid="{4ACD035E-11E3-4179-A15B-F0F547D97D74}" Min_Compliant_Version="20000" Name="$Graphitti Chart Control" Size="6109" Version="20950">
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\chartAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartcs.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartda.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartde.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\charten.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartes.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartfi.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartfr.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\charthu.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartit.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartja.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartko.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartnl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartno.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartpl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartpt.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartro.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartru.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartsk.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartsv.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartth.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartzf.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\chartzh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\chartET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\chartLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\chartLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\Grnfmt32.dll</Src>
			<Src>%SAPSrcDir%\SapGui\GRVISGDI.DLL</Src>
			<Src>%SAPSrcDir%\SapGui\chart.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\grctrl.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\sapgradp.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\ICJoin.ocx</Src>
			<Src Register="FALSE">%SapSrcDir%\SapGui\ICJoin.ocx.uninstall.reg</Src>
			<Src>%SAPSrcDir%\SapGui\wdbdadptjoin.ocx</Src>
		</Action>
		<Action RunAt="UnInstall" Type="Execute">
			<Src DisplayText="Registry clean-up" Parameters="/s &quot;%SapFrontEndDir%\SapGui\ICJoin.ocx.uninstall.reg&quot;">%Windir%\RegEdit.exe</Src>
		</Action>
	</Component>
	<Component Guid="{ECC6A3DB-26B0-4AAB-8158-51351D7E9241}" Min_Compliant_Version="20000" Name="$Smart Forms Control" Size="939" Version="20030">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapformpainter.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\saptablepainter.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapborderpainter.dll</Src>
		</Action>
	</Component>
	<Component Guid="{B6C2A075-C9EE-4CE1-9AF0-D9D47FA561D9}" Min_Compliant_Version="20000" Name="$SAP Client File Cache Control" Size="354" Version="20030">
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\sapcms.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapcltfc.ocx</Src>
		</Action>
		<Action Dst="HKLM\Software\SAP\SAPGUI Front\SAP Frontend Server\LocalData" Type="Registry">
			<RegValue Name="CacheMode" Type="DWORD">2</RegValue>
			<RegValue Name="MaxCacheSize" Type="DWORD">10485760</RegValue>
			<RegValue Name="MaxCacheFileSize" Type="DWORD">1048576</RegValue>
		</Action>
	</Component>
	<Component Guid="{AB133771-594D-4782-A145-2FD1455A44E1}" Min_Compliant_Version="20000" Name="$SAP ALV-Crystal-Previewer Control" Size="0" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.20: Obsolete $SAP ALV-Crystal-Previewer Control 'sapalvcrprev.ocx' not installed anymore!"]]></Src>
		</Action>
	</Component>
	<Component Guid="{0B6617DD-FA9B-4FE8-85E1-270480BDFD91}" Min_Compliant_Version="20000" Name="$GUI Graphics" Size="13111" Version="20980">
		<Action Dst="%SapFrontEndDir%\SAPGUI" Type="File">
			<Src>%SapSrcDir%\sapgui\eumfcdll.dll</Src>
			<Src>%SapSrcDir%\sapgui\euspd1ld</Src>
			<Src>%SapSrcDir%\sapgui\euspd1le</Src>
			<Src>%SapSrcDir%\sapgui\euspd2ld</Src>
			<Src>%SapSrcDir%\sapgui\euspd2le</Src>
			<Src>%SapSrcDir%\sapgui\euspd3ld</Src>
			<Src>%SapSrcDir%\sapgui\euspd3le</Src>
			<Src>%SapSrcDir%\sapgui\euspd4ld</Src>
			<Src>%SapSrcDir%\sapgui\euspd4le</Src>
			<Src>%SapSrcDir%\sapgui\euspd5ld</Src>
			<Src>%SapSrcDir%\sapgui\euspd5le</Src>
			<Src>%SapSrcDir%\sapgui\euspddld</Src>
			<Src>%SapSrcDir%\sapgui\euspddle</Src>
			<Src>%SapSrcDir%\sapgui\euspdtld</Src>
			<Src>%SapSrcDir%\sapgui\euspdtle</Src>
			<Src>%SapSrcDir%\sapgui\euspetld</Src>
			<Src>%SapSrcDir%\sapgui\euspetle</Src>
			<Src>%SapSrcDir%\sapgui\euspicld</Src>
			<Src>%SapSrcDir%\sapgui\euspicle</Src>
			<Src>%SapSrcDir%\sapgui\euspkeyw</Src>
			<Src>%SapSrcDir%\sapgui\euspktld</Src>
			<Src>%SapSrcDir%\sapgui\euspktle</Src>
			<Src>%SapSrcDir%\sapgui\eusplsld</Src>
			<Src>%SapSrcDir%\sapgui\eusplsle</Src>
			<Src>%SapSrcDir%\sapgui\euspptld</Src>
			<Src>%SapSrcDir%\sapgui\euspptle</Src>
			<Src>%SapSrcDir%\sapgui\euspstld</Src>
			<Src>%SapSrcDir%\sapgui\euspstle</Src>
			<Src>%SapSrcDir%\sapgui\euspsxld</Src>
			<Src>%SapSrcDir%\sapgui\euspsxle</Src>
			<Src>%SapSrcDir%\sapgui\euspumld</Src>
			<Src>%SapSrcDir%\sapgui\euspumle</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\gnbax.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnbmx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnbux.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gndlx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnetx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gneux.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gngax.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnhix.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnhox.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnhpx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnmsx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnnex.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnpox.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnscx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnstx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnsux.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnupx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnwdx.exe</Src>
			<Src>%SAPSrcDir%\sapgui\gnwie.dll</Src>
			<Src>%SAPSrcDir%\sapgui\gnxlx.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\bitmap" Type="File">
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaactv.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaback.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvacase.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaclps.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvacntn.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvactrl.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvadcsn.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvadsel.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaexpd.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaexte.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvafork.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaifif.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvainte.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvalogo.gmf</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvamaxi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvamini.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvasap1.gmf</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvasap2.gmf</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvasel.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvashut.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvatrig.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaundf.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvaunti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvawait.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\gxvawhil.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_abpl.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_acti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_akti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_anch.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_anno.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bedi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bent.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwis.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwiu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwra.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwru.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwse.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwsf.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwsg.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_bwsr.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_chck.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_cont.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_cost.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_dele.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_detl.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_docu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_erei.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_erin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_erte.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_filt.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_form.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_graf.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_icon.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_list.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_matl.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_mbed.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_move.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_mrka.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_mrkd.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_netg.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_nxti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_nxtn.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_odsa.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_odsi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_okay.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_okye.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_oviw.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_pabs.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_paus.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_pein.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_peri.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_plan.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_plnt.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_prvi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_quer.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_refr.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_rkhi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_sere.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_slis.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_sndn.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_srtu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_steu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_summ.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_tree.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_trst.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_unbe.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_unti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_were.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_whil.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_wopa.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_work.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_zoin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_b_zout.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_f_pasl.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_f_undo.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_f_user.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_m_crit.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_chaa.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_chai.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_erro.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_hiac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_hiin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_mdac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_mdin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_moac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_moin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_tl_g.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_tl_r.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_tl_y.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_txac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_s_txin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_t_mail.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_t_time.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_webflo.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_wfdoku.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_wfjoin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\l_wfproc.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_akti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bedi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bent.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwis.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwiu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwra.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwru.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwse.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwsf.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwsg.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_bwsr.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_cont.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_erei.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_erin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_mbed.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_odsa.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_odsi.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_pabs.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_sere.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_steu.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_trst.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_unbe.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_unti.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_were.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_b_whil.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_bwinci.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_bwssow.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_datama.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_chaa.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_chai.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_hiac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_hiin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_mdac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_mdin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_moac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_moin.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_txac.bmp</Src>
			<Src>%SAPSrcDir%\sapgui\bitmap\s_s_txin.bmp</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\dat" Type="File">
			<Src>%SAPSrcDir%\sapgui\dat\euspdynd.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\euspdyne.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxba.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxbf.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxbi.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxbm.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxbu.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxdl.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxga.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxhi.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxho.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxhp.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxms.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxne.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxpo.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxsc.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxst.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxsu.dat</Src>
			<Src>%SAPSrcDir%\sapgui\dat\gxxl.dat</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\sapwnt.dll</Src>
			<Src>%SapSrcDir%\SapGui\vcprct32.dll</Src>
			<Src>%SapSrcDir%\SapGui\vcsced32.dll</Src>
			<Src>%SapSrcDir%\SapGui\vctbed32.dll</Src>
			<Src>%SapSrcDir%\SapGui\vcwin32.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\dav332.dll</Src>
			<Src>%SapSrcDir%\sapgui\leon332.dll</Src>
		</Action>
	</Component>
	<Component Guid="{14C7BED2-7A33-4A57-BA60-C929A391CE04}" Min_Compliant_Version="20000" Name="$GUI Graphic Controls" Size="1146" Version="20090">
		<Requires Guid="{0B6617DD-FA9B-4FE8-85E1-270480BDFD91}" Name="$GUI Graphics"/>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\SAPsbar.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\SAPbarc.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\SAPnetz.OCX</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\SAPsel.OCX</Src>
		</Action>
	</Component>
	<Component Guid="{F4129236-5171-4CC1-99E7-CCD4A975FEE0}" Min_Compliant_Version="20000" Name="$Help" Size="31" Version="20011">
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\help_04.exe</Src>
		</Action>
	</Component>
	<Component Guid="{3FA4FA8C-A7C7-452E-B959-71F030E75DAC}" Min_Compliant_Version="20000" Name="$HTML Help" Size="92" Version="20030">
		<Action Dst="%SapFrontEndDir%\sapgui\htmlhelp" Type="File">
			<Src AppPath="%SapFrontEndDir%\SapGui">%SapSrcDir%\sapgui\htmlhelp\shh.exe</Src>
		</Action>
	</Component>
	<Component Guid="{E9B2668F-8254-46A8-B849-8BFCC826B119}" Min_Compliant_Version="20000" Name="$Secure Store and Forward" Size="4172" Version="20710">
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\ssfrfc.exe</Src>
			<Src>%SapSrcDir%\sapgui\ssfrfc.ini</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SapSrcDir%\sapgui\sapsign.ocx</Src>
		</Action>
	</Component>
	<Component Guid="{8A86C57E-1AE8-45F8-819F-EDD5DF5C7B19}" Min_Compliant_Version="20000" Name="$Visual Query" Size="428" Version="20000">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\sapqtab.ocx</Src>
			<Src>%SapSrcDir%\SapGui\sapvqlib.dll</Src>
			<Src>%SapSrcDir%\SapGui\sapvq.ocx</Src>
		</Action>
	</Component>
	<Component Guid="{53DF0E36-9459-4FFC-92C7-CF9BDE069954}" Min_Compliant_Version="20000" Name="$Office Integration Test Tools" Size="350" Version="20010">
		<Action Dst="%SapFrontEndDir%\SapGui\Testtools" Type="File">
			<Src>%SapSrcDir%\SapGui\Testtools\Check_DOI.exe</Src>
			<Src>%SapSrcDir%\SapGui\Testtools\DOI_WORD_Check.doc</Src>
			<Src>%SapSrcDir%\SapGui\Testtools\DOI_XLS_Check.xls</Src>
			<Src>%SapSrcDir%\SapGui\Testtools\TableFactoryTest.doc</Src>
		</Action>
	</Component>
	<Component Guid="{9EF7439F-8BD6-4E84-9B23-2713401EDA99}" Min_Compliant_Version="20000" Name="$New Visual Design Extensions" Size="3293" version="20950">
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\fcplAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcplZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcplET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcplLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcplLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\fcustAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustCS.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustDA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustDE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustEN.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustES.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustFI.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustFR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustHU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustIT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustJA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustKO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustNL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustNO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustPL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustPT.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustRO.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustRU.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustSK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustSV.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustTH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustZF.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\fcustZH.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcustET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcustLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\fcustLV.txt</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\themes\streamline" Type="File">
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapalogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapcgrid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapclokh.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapclokl.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapctree.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\saperror.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapfront.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\saplines.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapmsg.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd01.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd02.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd03.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd04.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd05.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd06.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsnd07.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\sapsndtb.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\saptbgnd.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\saptlogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\saptoolb.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\treeclse.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\treeopen.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\streamline\theme.xml</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\themes\Tradeshow" Type="File">
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapalogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapcgrid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapclokh.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapclokl.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapctree.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\saperror.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapfront.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\saplines.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapmsg.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd01.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd02.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd03.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd04.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd05.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd06.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsnd07.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\sapsndtb.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\saptbgnd.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\saptlogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\saptoolb.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\treeclse.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\treeopen.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\tradeshow.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\Tradeshow\theme.xml</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\themes\enjoy" Type="File">
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapalogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapcgrid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapclokh.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapclokl.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapctree.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\saperror.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapfront.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\saplines.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapmsg.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd01.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd02.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd03.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd04.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd05.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd06.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsnd07.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\sapsndtb.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\saptbgnd.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\saptlogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\saptoolb.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\treeclse.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\treeopen.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\enjoy\theme.xml</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\themes\HighCont" Type="File">
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapalogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapcgrid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapclokh.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapclokl.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapctree.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\saperror.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapfront.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\saplines.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapmsg.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd01.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd02.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd03.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd04.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd05.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd06.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsnd07.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\sapsndtb.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\saptbgnd.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\saptlogo.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\saptoolb.bmp</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\theme.xml</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\treeclse.wav</Src>
			<Src>%SapSrcDir%\sapgui\themes\HighCont\treeopen.wav</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.RegKeyExist("HKCU\Software\SAP\General\Appearance\Themes\Complementary") Then
				NwEngine.Shell.DeleteRegKey "HKCU\Software\SAP\General\Appearance"
			End If
			If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\SAP\General\Appearance\Themes\Complementary") Then
				NwEngine.Shell.DeleteRegKey "HKLM\SOFTWARE\SAP\General\Appearance"
			End If
			]]></Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Enjoy" Type="Registry">
			<RegValue Name="Active">On</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance" Type="Registry">
			<RegValue Name="HuePaletteBuffer">9b9a8ffcfcedf4f3e3eae9d7e0dfd0d8d6c7cecdc0cbcbbdc1c0b2b7b6a8adac9fa09f958e8e847f7e7572726a6867605b5a544f4f493f3f3b65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="Theme">System Dependent</RegValue>
			<RegValue Name="SplashOff" Type="DWORD">0</RegValue>
			<RegValue Name="OldName">Default</RegValue>
			<RegValue Name="NewName">Enjoy</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Streamline" Type="Registry">
			<RegValue Name="Path">%SapFrontEndDir%\Sapgui\Themes\Streamline</RegValue>
			<RegValue Name="ActiveColorSetting">normal</RegValue>
			<RegValue Name="Preview">Streamline</RegValue>
			<RegValue Name="PreviewMapping">95 78 82 88 81</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Streamline\normal" Type="Registry">
			<RegValue Name="strPaletteMain">666699FFFFFFF2F4F7E5EAF0D8DFE8CBD4E100000100000295B2C3A5B1BFE0E7EDE6E6E6A0A3A86581906289AE265B8F000003333348000004B5C3CAAECEDBD2DCDAF0EFF4</RegValue>
			<RegValue Name="strPaletteShift">666699FFFFFFF2F4F7E5EAF0D8DFE8CBD4E100000100000295B2C3A5B1BFE0E7EDE6E6E6A0A3A86581906289AE265B8F000003333348000004B5C3CAAECEDBD2DCDAF0EFF4</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Enjoy" Type="Registry">
			<RegValue Name="Path">%SapFrontEndDir%\sapgui\themes\enjoy</RegValue>
			<RegValue Name="ActiveColorSetting">Complementary</RegValue>
			<RegValue Name="Preview">DefPrv</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\High Contrast Theme" Type="Registry">
			<RegValue Name="Path">%SapFrontEndDir%\sapgui\themes\highcont</RegValue>
			<RegValue Name="ActiveColorSetting">Black and White</RegValue>
			<RegValue Name="Preview">HCPrv</RegValue>
			<RegValue Name="DisableSetting" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Tradeshow" Type="Registry">
			<RegValue Name="Path">%SapFrontEndDir%\Sapgui\Themes\Tradeshow</RegValue>
			<RegValue Name="ActiveColorSetting">normal</RegValue>
			<RegValue Name="Preview">Tradeshow</RegValue>
			<RegValue Name="PreviewMapping">95 84 82 88 80</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Tradeshow\normal" Type="Registry">
			<RegValue Name="strPaletteMain">666699FFFFFFF2F4F7E5EAF0D8DFE8CBDBEAa3c1e483ACD895B2C3999999E0E7EDd9e5f2aeaeae6581906289AE306897000003333348aeaeadB5C3CAAECEDBD2DCDAf2f2f2</RegValue>
			<RegValue Name="strPaletteShift">666699FFFFFFF2F4F7E5EAF0D8DFE8CBDBEAa3c1e483ACD895B2C3999999E0E7EDd9e5f2aeaeae6581906289AE306897000003333348aeaeadB5C3CAAECEDBD2DCDAf2f2f2</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes" Type="Registry">
			<RegValue Name="SystemDefault">Enjoy</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Enjoy\Bright Complementary" Type="Registry">
			<RegValue Name="strPaletteMain">b6b5a9fffffffffff7fefeeef6f4e6efeddee7e7d9e3e2d4dad9cbd1d0c2c7c6babdbcb0ababa099988e8e8e84838178706f6763635c4f4f477b9aaa9cb6c5a9c3d3afcbdb</RegValue>
			<RegValue Name="strPaletteShift">b6b5a9fffffffffff7fefeeef6f4e6efeddee7e7d9e3e2d4dad9cbd1d0c2c7c6babdbcb0ababa099988e8e8e84838178706f6763635c4f4f477b9aaa9cb6c5a9c3d3afcbdb</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\Themes\Enjoy\Bright Harmonic" Type="Registry">
			<RegValue Name="strPaletteMain">86a6b6ffffffedffffd9f4ffd1edf8c7e5f1c1dceab7d4e3afcbdaa9c3d29cb8c68faebe7b9aab6888985e7e8f4f70834567793a5f721f4d637b9aaa9cb8c6a9c3d3afcbdb</RegValue>
			<RegValue Name="strPaletteShift">86a6b6ffffffedffffd9f4ffd1edf8c7e5f1c1dceab7d4e3afcbdaa9c3d29cb8c68faebe7b9aab6888985e7e8f4f70834567793a5f721f4d637b9aaa9cb8c6a9c3d3afcbdb</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\themes\enjoy\Complementary" Type="Registry">
			<RegValue Name="strPaletteMain">9c9b8ffefeeef5f4e2ebead8e1e0cfd9d7c6d1d0c1cccbbcc2c1b2b8b7a9aeada0a3a296919186807f7575756c6b6a625c5b5451514b42423d658190829cab8faaba95b2c3</RegValue>
			<RegValue Name="strPaletteShift">9c9b8ffefeeef5f4e2ebead8e1e0cfd9d7c6d1d0c1cccbbcc2c1b2b8b7a9aeada0a3a296919186807f7575756c6b6a625c5b5451514b42423d658190829cab8faaba95b2c3</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Appearance\themes\enjoy\Harmonic" Type="Registry">
			<RegValue Name="strPaletteMain">6f8c9ceef9ffd7ecf6c1dfedb8d7e4aecedca7c5d49dbccc95b2c28faab9829ead7794a465819155707f4d6776425c6b3b5463344e5d264151658190829cab8faaba95b2c3</RegValue>
			<RegValue Name="strPaletteShift">6f8c9ceef9ffd7ecf6c1dfedb8d7e4aecedca7c5d49dbccc95b2c28faab9829ead7794a465819155707f4d6776425c6b3b5463344e5d264151658190829cab8faaba95b2c3</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Dawn &apos;&apos;til Dusk" Type="Registry">
			<RegValue Name="strPaletteMain">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="strPaletteShift">93986efcffefeff2d7e3e8c0dde0b5d4d8adcbd1a7c4c99db9bf95afb58fa3a87f9aa076868c62757a526d724b60653f585e39545932454c238c8664a8a383b5af8dbfba95</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Ocean Teal" Type="Registry">
			<RegValue Name="strPaletteMain">6d9ea0e5feffd1f9f9baefefb2e8e6aae0dfa2d7d898d0d191c5c68bbbbc7eafaf74a6a86192935180824b787a3f6c6d396365325f6024515459878575a3a27eafaf86baba</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Blooming Desert" Type="Registry">
			<RegValue Name="strPaletteMain">a8a877feffedfffdddf7f5c8efecbfe8e5b7e0dfafd8d7a4cece9cc4c497b7b689afaf7e9b9b6b89895a8282547575476c6d406868395a5b2a989869b5b587c0c191cbcb98</RegValue>
			<RegValue Name="strPaletteShift">86b57cebffe8dfffd8d2ffc9cefcc4c5f4bcbdedb4b3e5a9abdba2a5d19c98c48f8dbc847aa870699660628e5955824c4e7a4547753e37682e6fa3658cbf8294cb8a9bd691</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Rose" Type="Registry">
			<RegValue Name="strPaletteMain">c1939dfff9fbffeaefffdbe4ffd8e3ffd6e1f9cfd9f2c4cee8bbc5ddb5bed1a7b1c99ba5b58590a3737e9b6c768e5e68875660824e59753b47af7e8dcb9fabd8a9b5e2b1be</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Lunar Orbit" Type="Registry">
			<RegValue Name="strPaletteMain">8689a0f7f8fff2f3f9e1e3efd7dae8ced1e0c5c7d8babdd1b1b3c6a9acbc9a9daf8f92a8797c936669825f627a51546d494c654145603135547a80919ca0ada7abbab0b5c4</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Summer Rain" Type="Registry">
			<RegValue Name="strPaletteMain">84959efffffff7f7f7dee8edd5e0e5ccd8ddc2cfd6b7c6ceaebcc4a7b3ba98a6ad8c9da577889164767f5d6e774f616b47596340535e3045516b787f8b969b97a2a8a0abb2</RegValue>
			<RegValue Name="strPaletteShift">7c9aaaf2faffe2f6ffcfecf9c6e5f2beddeab5d3e2abcbdba3c0d19db8c68fabba84a2b2708e9e5f7c8c5875844b68774460703d5a6b2d4c5e668da084a8bc8db3c994bcd3</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Peach" Type="Registry">
			<RegValue Name="strPaletteMain">bcac89fffaf2fff5e2ffefd3ffedd1fceaccf4e4c3eddbb8e2d3b1d8caabcbbc9dc4b491af9f7c9e8e6b96866489795682724f7c6b47705f36b79e7ed3bd9ee0c9a8ead3af</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\New Millennium" Type="Registry">
			<RegValue Name="strPaletteMain">898988eaeae8e2e2e0d8d8d6cececcc6c6c4bcbcbababab8afafaea5a5a49b9b998e8e8d7c7c7b6d6d6c60605f5656554949493d3d3c2d2d2d818689a5a5a5b2b2b2bcbcbc</RegValue>
			<RegValue Name="strPaletteShift">9b9a8ffcfcedf4f3e3eae9d7e0dfd0d8d6c7cecdc0cbcbbdc1c0b2b7b6a8adac9fa09f958e8e847f7e7572726a6867605b5a544f4f493f3f3b65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Grass" Type="Registry">
			<RegValue Name="strPaletteMain">97aa6bf1fcd6eefcc7e7f9b6e2f2aed9eaa6cfe29ec7db95bdd18eb4c689a8ba7c9fb2728b9e607a8c5173844b66773f5e70395a6b324b5e237d985d98b579a1c181aacb88</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
		<Action Dst="HKLM\Software\SAP\General\Appearance\themes\enjoy\Mars Dust" Type="Registry">
			<RegValue Name="strPaletteMain">9ea086fefff7f9f9f2eeefe1e6e8d7dee0ced7d8c5cfd1bac5c6b1bbbca9aeaf9aa6a88f9193797f8266787a5f6b6d516365495e6041515431989880b5b4a2c1c1aecbcbb7</RegValue>
			<RegValue Name="strPaletteShift">6f8c9beff9ffd7ebf4c0ddeab7d6e2afcedba7c4d39dbccb95b2c18fa9b7819daa7793a3637f8e536e7c4d6775405a683a5260334d5b253f4f65808e839daa8da8b795b1c1</RegValue>
			<RegValue Name="bTimeActivated" Type="DWORD">0</RegValue>
			<RegValue Name="strTimeSettings">day;default;default</RegValue>
			<RegValue Name="bWriteProtected" Type="DWORD">1</RegValue>
		</Action>
	</Component>
	<Component Guid="{3E8FAE8C-58D5-44DA-B350-3CF6114097E3}" Min_Compliant_Version="20000" Name="$GUI Controls" Size="2858" Version="20951">
		<Action Dst="%SapFrontEndDir%\SAPgui\SAPguihelp" Type="File">
			<Src>%SAPsrcDir%\sapgui\sapguihelp\ab4editde.chm</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui\ab4_data" Type="File">
			<Src>%SAPSrcDir%\SapGui\ab4_data\AB4Editor.css</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\abap_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\abap_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\acont_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\acont_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\acorrect.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\acorrect.xslt</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\bsp_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\bsp_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\ecatt_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\ecatt_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\keymap.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\keymap.xslt</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\lang_spec.xslt</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\lang_user.xslt</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\settings.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\settings.xslt</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\txt_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\txt_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\xml_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\xml_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\version.bin</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\demo.gif</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\logo.jpg</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\point.gif</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\qstart.htm</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\abap.pad</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\abap4_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\abap4_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\ams_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\ams_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\sqlsc_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\sqlsc_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\cc_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\cc_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\covan_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\covan_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\gml_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\gml_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\sfotl_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\sfotl_user.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\javadebug_spec.xml</Src>
			<Src>%SAPSrcDir%\SapGui\ab4_data\javadebug_user.xml</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui\Lang" Type="File">
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editAR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editBG.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editCA.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editcs.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editda.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editde.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editEL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editen.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4edites.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editfi.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editfr.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editHE.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editHR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4edithu.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editit.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editja.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editko.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editnl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editno.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editpl.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editpt.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editro.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editru.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editSH.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editsk.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editSL.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editsv.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editth.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editTR.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editUK.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editzf.txt</Src>
			<Src>%SAPsrcDir%\SAPgui\lang\Ab4editzh.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\Ab4editET.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\Ab4editLT.txt</Src>
			<Src>%SapSrcDir%\SAPgui\lang\Ab4editLV.txt</Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\General\Frontend\Components\AbapEditorControl" Type="Registry">
			<RegValue Name="CLSID">{4E80FF32-E9B3-4FB3-A90E-7D5D703B2F69}</RegValue>
			<RegValue Name="DisplayName">Abap Editor</RegValue>
		</Action>
		<!-- 0x400 == 1024 -->
		<Action Dst="HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{E5131C63-1787-11D0-AC76-080009B4430C}" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SAPSrcDir%\sapgui\GuiAbapBits.xml</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\lang" Type="File">
			<Src>%SapSrcDir%\sapgui\lang\cpmapAR.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapBG.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapCA.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapCS.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapDA.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapDE.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapEL.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapEN.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapES.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapFI.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapFR.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapHE.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapHR.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapHU.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapIT.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapJA.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapKO.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapNL.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapNO.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapPL.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapPT.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapRO.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapRU.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapSH.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapSK.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapSL.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapSV.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapTH.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapTR.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapUK.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapZF.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapZH.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapET.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapLT.txt</Src>
			<Src>%SapSrcDir%\sapgui\lang\cpmapLV.txt</Src>
		</Action>
	</Component>
	<Component Guid="{CF4B1F9E-B718-419f-9718-FA9F63975C33}" Min_Compliant_Version="20000" Name="$WdfTrace" Size="248" Version="20830">
		<Action Dst="%SapFrontEndDir%\sapgui\utils" Type="File">
			<Src AppPath="%SapFrontEndDir%\SapGui">%SAPsrcDir%\SapGui\utils\wdftrace.exe</Src>
		</Action>
	</Component>
	<Component Guid="{6413CD93-F5DE-44f9-9DAE-A719CB5BE501}" Min_Compliant_Version="20000" Name="$MS Debug Tools" Size="1357" Version="20010">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPsrcDir%\SapGui\dbghelp.dll</Src>
			<Src>%SAPsrcDir%\SapGui\symsrv.dll</Src>
		</Action>
	</Component>
	<Component Guid="{88F42711-4FD9-489D-86B2-7E4915FAC7C9}" Min_Compliant_Version="20000" Name="$SAP Logon Pad Exe" Size="1776" Version="20050">
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src AppPath="%CommonProgramFiles%\SAP Shared">%SAPSrcDir%\sapgui\saplgpad.exe</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist("%SapFrontEndDir%\sapgui\saplogon.exe") Then
				NWEngine.Variables.InsertVariable "ExistSapLogon", "True"
			Else
				NWEngine.Variables.InsertVariable "ExistSapLogon", "False"
			End If
			]]></Src>
		</Action>
		<Action Condition="%ExistSapLogon%=False" Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\LocalServer32" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplgpad.exe&quot; /Inplace /EMBEDDING</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697868}\LocalServer32" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\saplgpad.exe&quot; /ControlManager</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App\protocol\StdFileEditing\server" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplgpad.exe&quot;</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\DefaultIcon" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplgpad.exe&quot;,0</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_LMZ_SCRIPT" Type="Registry">
			<RegValue Name="SAPLgPad.exe" Type="DWORD">0</RegValue>
		</Action>
	</Component>
	<Component Guid="{3E541360-2D47-4b09-9331-FEF279B09930}" Min_Compliant_Version="20000" Name="$JNet Control" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.20: Component JNet Control obsolete. File sapmsgforward.ocx moved to CoreGUI Files."]]></Src>
		</Action>
	</Component>
	<Component Guid="{7EC16C45-6B54-407a-BFA9-CDC254878B3E}" Min_Compliant_Version="20000" Name="$KillBit Keys" Version="20001">
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2001-0050-B4B6-006094B9D64F}" FileName="sapfewcmen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2001-0051-B4B6-006094B9D64F}" FileName="sapfewcmen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2001-0054-B4B6-006094B9D64F}" FileName="sapfewcmen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2001-0057-B4B6-006094B9D64F}" FileName="sapfewcmen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{012CCBDC-6A85-4BD7-B359-697CDDD014B1}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0149A14E-BFD4-4D60-BC80-A5B7C86C0A6D}" FileName="v2dhptree_adapter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01B4E611-918B-11D5-BBE0-00E02924C679}" FileName="rvf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01B4E612-918B-11D5-BBE0-00E02924C679}" FileName="rvf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01B79A64-7B00-11D1-88D4-006097D423FB}" FileName="transiges.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01B79A65-7B00-11D1-88D4-006097D423FB}" FileName="transstl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01B79A66-7B00-11D1-88D4-006097D423FB}" FileName="transwrl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{024E5EF5-FA15-11D1-B532-0000E82D8C06}" FileName="wdksysrv.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{024E5EF6-FA15-11D1-B532-0000E82D8C06}" FileName="wdksysrv.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{02871483-5ED0-11D2-AEDB-00E02914DF89}" FileName="navexamine.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{02871491-5ED0-11D2-AEDB-00E02914DF89}" FileName="navexamine.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0292F33D-290B-47E9-999E-2F728991B8A4}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{029F18F2-4AFE-499D-B374-29FB15DEC8E1}" FileName="wdbvved.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{036FB9F8-43DE-4858-8016-33F43B34F3BA}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{039899A6-4B80-11D1-A595-0000E82DE990}" FileName="textedit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{039899B6-4B80-11D1-A595-0000E82DE990}" FileName="textedit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{039C47E2-A9F7-40EC-872D-08D55380CA7A}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{03BBB151-925C-469C-961D-E11E5469CC1D}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{03E1A734-5E17-11D2-8D2D-0000C0F789DE}" FileName="gif_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{03EA16E2-B48D-11D3-915D-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{043B1C00-1874-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{048B665E-B084-4EA0-8EF9-CC73706AFC9D}" FileName="sapsplitscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{04A4CC27-6452-11D3-96B4-0004AC96572D}" FileName="sapceadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{04A4CC2A-6452-11D3-96B4-0004AC96572D}" FileName="sapceadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{04A4CC2B-6452-11D3-96B4-0004AC96572D}" FileName="sapceadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{05C4A2DE-F669-11D2-B983-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{05D742D3-F0BE-11D1-9F3A-00AA00A52232}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{06A45680-1901-4019-8AC9-2BD6911F083A}" FileName="ecattrh.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{06BD5135-510F-45CF-861C-2C91B42127E4}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0738DC8A-82BD-11D2-B43F-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0738DC8E-82BD-11D2-B43F-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{07506D6C-9585-49E5-B0E0-302D4C88675B}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{07A20061-9880-42E1-AEB6-594D7128A5BC}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{07EBD6B4-B5B5-11D0-A8D6-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0825DFC2-AE97-11D3-A597-00104B6396F7}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{082A23A8-A1F1-46A0-9579-F84AD59B48A1}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{086ADBCA-DBCE-49B9-9E71-3B3E1B674E82}" FileName="dft_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{08CD3C51-6943-11D2-A0E1-006097BAA523}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0910A253-7CCB-11D2-A2C3-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{096754C9-F68C-4CAC-ACC8-567AF92D8FB2}" FileName="ugprtloader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0A351E34-9F09-43A5-A737-9E38B337E7A9}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0A46E62E-EF02-46E2-AE3D-1E44851F53BA}" FileName="sapstagescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0AAF5A11-8C04-4385-A925-0B62F6632BEC}" FileName="wdtlogu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0AC769F5-01DD-11D2-A4CB-080009A7528E}" FileName="sapcombo.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0AC769F8-01DD-11D2-A4CB-080009A7528E}" FileName="sapcombo.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0AC769F9-01DD-11D2-A4CB-080009A7528E}" FileName="sapcombo.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0AF427E7-03B9-4673-8F21-F33A683BCE28}" FileName="wdtfuncu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0B052FD7-1A76-4296-BC4F-4FA92368AD40}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0B3B5E13-75A7-11D3-9F55-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0B9A44CB-2319-4ADA-8922-74F405CA2D99}" FileName="sautplg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0BFFA4D1-DB31-42FC-B7B7-F5EA5081FA4D}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0C25EC6E-4EDE-11D1-9A51-0060081EE065}" FileName="otxrt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0C25EC71-4EDE-11D1-9A51-0060081EE065}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0C7BF175-02CE-4A24-BF6B-1B50ACA0261C}" FileName="sapfewut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0C8392E5-3CC4-11D2-8AF6-0060082D41FB}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CA5A680-1874-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CAF0A97-5D48-11D2-A2A4-00A024E509A8}" FileName="vis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CAF0AA5-5D48-11D2-A2A4-00A024E509A8}" FileName="vis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CAF0AA7-5D48-11D2-A2A4-00A024E509A8}" FileName="vis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CAF0AA9-5D48-11D2-A2A4-00A024E509A8}" FileName="vis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CBC8DB5-2582-11D2-A65F-0060B0B4EBA5}" FileName="basic2dviewer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0CBC8DB6-2582-11D2-A65F-0060B0B4EBA5}" FileName="basic2dviewer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0D515655-5228-11D3-9281-000000000001}" FileName="icdataflow.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0D515655-5228-11D3-9281-000000000002}" FileName="icjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0D515658-5228-11D3-9281-000000000001}" FileName="icdataflow.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0D515658-5228-11D3-9281-000000000002}" FileName="icjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0D515659-5228-11D3-9281-000000000000}" FileName="icjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0DBFDB24-A59E-48B9-8346-6929A158374B}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0E318B14-96C8-4C88-AB03-8C6315706919}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0EC52524-A339-401D-B5B7-0E5C8B0FC2FE}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0ECFF589-95BD-11D3-96D0-0004AC96572D}" FileName="saporgchartadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0ECFF58C-95BD-11D3-96D0-0004AC96572D}" FileName="saporgchartadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0ECFF58D-95BD-11D3-96D0-0004AC96572D}" FileName="saporgchartadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0ED33F73-0B1F-11D0-AC6B-080009B0FB55}" FileName="combobox.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0EEAC780-3EC0-11D2-A0DE-006097BAA523}" FileName="vpadjust2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0EEAC78F-3EC0-11D2-A0DE-006097BAA523}" FileName="vpadjust2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0F1A8DF3-1460-11D3-AB74-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0F1A8DF5-1460-11D3-AB74-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0F1A8DF7-1460-11D3-AB74-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0F274665-39FE-40B6-B50B-7A0881ADBA9D}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0FB1B910-7B3B-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0FB1B912-7B3B-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0FB4B466-5FA7-11D2-8B6F-0060B0C11126}" FileName="comparedistance.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0FD606A1-92E4-11D3-A0FF-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{102EF5E1-77A8-46F3-87AE-5BCEF8135043}" FileName="sapbwwmd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1156D9FC-AA4A-478F-AF56-37859A068102}" FileName="jpeg2k_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{12505E30-C035-11CF-9DD0-080009A7528E}" FileName="saptbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{12505E33-C035-11CF-9DD0-080009A7528E}" FileName="saptbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{12505E34-C035-11CF-9DD0-080009A7528E}" FileName="saptbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1264C3D0-5810-11D2-A0E1-006097BAA523}" FileName="vpreport2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1264C3DF-5810-11D2-A0E1-006097BAA523}" FileName="vpreport2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{12682807-B0BB-46E4-9ED2-7C8638DA8658}" FileName="viswebcom.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{127117F3-125C-4366-B041-EF90046BEBCC}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{127460A2-A8BF-11D3-9151-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{127460A7-A8BF-11D3-9151-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{133AD671-0DD8-11D1-A903-080009B0CB9D}" FileName="sapoipe8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{133AD681-0DD8-11D1-A903-080009B0CB9D}" FileName="sapoipd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{133AD683-0DD8-11D1-A903-080009B0CB9D}" FileName="sapoipe8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{13AC16C0-5DF8-4CF1-86D3-13304F8EC309}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{13AFB6A0-1874-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{13B62C22-E913-11D2-B76F-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{13E755A3-3075-11D3-AB91-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{141C52E6-AC5D-11D1-A53E-00600870BD82}" FileName="sapsel.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1453DBFA-F1C4-11D2-B770-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1453DBFC-F1C4-11D2-B770-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{14833081-0509-41E5-9312-98165B9720F1}" FileName="sapnetzscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{148C6F0E-C667-420D-99EE-0150864A951A}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{14C4346D-49E3-471E-9F10-3555F0E191B5}" FileName="swohxmlppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{15037100-4E62-11D2-A29C-00A024E509A8}" FileName="vptreeview2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{15037103-4E62-11D2-A29C-00A024E509A8}" FileName="vptreeview2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{15037105-4E62-11D2-A29C-00A024E509A8}" FileName="vptreeview2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1521B408-7FBF-11D2-B6EE-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{156C3424-5E28-11D2-8B6C-0060B0C11126}" FileName="comparecolor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{156F31D2-BF68-11D2-B802-006097BDC6E1}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{15D20C61-DE9F-11D0-A8E7-080009B0CB9D}" FileName="sapcncli.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{15D20C6F-DE9F-11D0-A8E7-080009B0CB9D}" FileName="sapcncli.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DA09-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DA0D-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DAC0-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DAC4-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DB43-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16B6DB45-6ADE-11CF-AD7F-444553540000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{16DAAB00-50FD-11D3-AAA0-00E02924C34E}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{178504A2-B3AC-11D1-B2B4-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18002ADD-9511-11D2-B442-006094B9EADB}" FileName="sapcalen.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18002AE0-9511-11D2-B442-006094B9EADB}" FileName="sapcalen.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18002AE1-9511-11D2-B442-006094B9EADB}" FileName="sapcalen.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{180321E8-53A2-4DFB-ADCE-8B8C30E67CD6}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18375C93-4387-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18375C95-4387-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18375C97-4387-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18375C99-4387-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{189D3F82-5433-11D3-B798-00104BCB3343}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18B62DC0-7A0F-11D2-B43A-006094B9EADB}" FileName="saptoolb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18B62DCD-7A0F-11D2-B43A-006094B9EADB}" FileName="saptoolb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18D30560-1874-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1900476F-8CE7-42BB-A112-12BB5A74B232}" FileName="sapxlhelper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1A24E815-750D-4A8D-B982-B42E83490B8D}" FileName="plmxmlexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1A4EAB56-34F1-43D7-BA3F-E30CC2B95889}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1A509EC8-C801-4B85-BD69-9B08F6702EE4}" FileName="sxadpaut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1A583AA8-7851-4056-B712-1901C16E7D45}" FileName="sautplg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AB5CD07-3130-11D2-9D17-00C04F91E286}" FileName="otxrtvb6.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AB5CD09-3130-11D2-9D17-00C04F91E286}" FileName="otxrtvb6.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1B41BBB4-BC94-4DDC-97FD-5B1CE27C9F65}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1C673D06-637A-484F-BC26-724E98060514}" FileName="sapoptio.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1C808F83-95BD-11D1-AD96-0060B01AEE42}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1D1903E1-9C2E-11D3-9149-000000000000}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1D5DC5E6-A9FA-4EA5-893C-38C0B948D93B}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1E799A95-FEEB-4674-B401-0178E1B724E5}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EA2BA9B-4264-4227-9D76-A1C86D0CD4CC}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EEB8B90-7C37-11D3-A0F2-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EEB8B9E-7C37-11D3-A0F2-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EEB8BA2-7C37-11D3-A0F2-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EEB8BA4-7C37-11D3-A0F2-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1EEB8BA6-7C37-11D3-A0F2-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1F074E93-CFA6-11D1-A541-0060087AE3DA}" FileName="sapsplit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1F074E96-CFA6-11D1-A541-0060087AE3DA}" FileName="sapsplit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1FA37976-FFD8-11D1-A640-0060B0B4EBA5}" FileName="dwf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1FA37984-FFD8-11D1-A640-0060B0B4EBA5}" FileName="dwf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1FAC48C5-F93E-4737-BB9F-6F544D46104D}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1FB053EB-9474-492E-9422-A3B4AD5A86F8}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{202A2988-613C-4581-9797-1B98E6F83974}" FileName="swutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2037E3A0-18D6-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2037E3A5-18D6-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2037E3AA-18D6-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2037E3AD-18D6-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{205D52D9-B022-4744-BFB6-5C3B85EBECA4}" FileName="sapgradpscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2076D996-E5F6-4D6B-A2D2-FA575C432B80}" FileName="vispdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2081AC27-58B8-4AC8-B90B-ED7CBE3C630A}" FileName="sapselscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{20AAC0B7-9ACF-485E-AF73-4E057F4C188A}" FileName="sapguirm32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{20DAB7F9-D4AF-11D1-9CD1-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{210160F7-6129-4C7F-9AC0-E1DB79B62F42}" FileName="sevcontrol2d.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{21A9D55F-5322-11D2-9842-0060B0A4FCE6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{21D09130-7827-11D3-A0F2-00104BCB3665}" FileName="sectiongenerator.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{21D0913E-7827-11D3-A0F2-00104BCB3665}" FileName="sectiongenerator.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2315B059-EDD7-4C66-933C-ECFF5B9DD593}" FileName="sizerone.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{233F4BF3-9CDD-11D1-91FB-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{238050A9-989B-412A-96AF-3EDDA0CF1A27}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{23E1B400-3B22-11D5-A8CF-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{23E1B403-3B22-11D5-A8CF-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{23E1B405-3B22-11D5-A8CF-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{243D90C4-4369-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{251456C4-34B7-11D3-8659-00E02924C028}" FileName="webviewer2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{25B6714B-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{25B6714D-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{25B6714F-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{25B67152-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2637C6F4-0472-11D2-909C-00600826393D}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2637C6F6-0472-11D2-909C-00600826393D}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{265ACF95-3DF2-11D2-9839-0060B0A4FCE6}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{269C4CB4-5D1F-11D2-8B6B-0060B0C11126}" FileName="vfcomutiljt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{269C4CC6-5D1F-11D2-8B6B-0060B0C11126}" FileName="vfcomutiljt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{26A36DA0-31DD-486E-9754-796CB82A2479}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{26AA7971-FFEC-4FEA-8FDD-839473871BCF}" FileName="sxadpaut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{273D3599-E8A7-4674-A3B7-430B9E0A78BD}" FileName="wdtfuncu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{274B8D60-28BD-4F68-8D00-D4D7495011D9}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2750FBC0-61EC-11D2-B6AE-00105A1B0657}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2750FBCE-61EC-11D2-B6AE-00105A1B0657}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2750FBD0-61EC-11D2-B6AE-00105A1B0657}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{27980C45-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkiccon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{27980C48-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkiccon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2850BA8B-EED2-4788-88CD-8D4652D0FD55}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2856966B-A899-463F-9F51-4A0BE8721ACC}" FileName="eai2dscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{293406B7-ED1F-4337-9D64-C2E937100DC9}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{29669483-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{29669485-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{297E71B2-892F-11D1-9489-006097D4240D}" FileName="v3dtree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2A007321-F9AD-11D2-B731-00104B329645}" FileName="v3dtree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2A05F681-0272-11D3-B986-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2A1DD430-4674-11D1-A0BE-006097BAA523}" FileName="vpmeasurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2A1DD440-4674-11D1-A0BE-006097BAA523}" FileName="vpmeasurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2BAF8A56-C134-11D8-B6D2-444553544200}" FileName="wdbdadptjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2BAF8A59-C134-11D8-B6D2-444553544200}" FileName="wdbdadptjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2C846448-9755-11D7-B22B-00105AA84C78}" FileName="hptree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2CBC1E61-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2CBC1E63-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2D0B6230-DABC-11D1-9CD9-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2E4592EA-3A33-464C-BB7B-295AEBDBB20A}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2E9A4698-F0EE-11CF-AC55-080009D213D2}" FileName="wdobapi.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2E9A469B-F0EE-11CF-AC55-080009D213D2}" FileName="wdobapi.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2ED16D13-AEAA-11D1-B2B4-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2F1022B8-E40D-11D1-A97C-080009B0CB9D}" FileName="sapoipw8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2F27DC04-4321-41A9-B906-79DC507CD43E}" FileName="sapnetzscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2F630F9A-6290-11D2-A989-00A0C94492A7}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2F630FA4-6290-11D2-A989-00A0C94492A7}" FileName="sapvq.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2FB1773F-DC3E-11D2-8AE5-0000E82162C3}" FileName="wdbbctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2FB17744-DC3E-11D2-8AE5-0000E82162C3}" FileName="wdbbctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2FB17745-DC3E-11D2-8AE5-0000E82162C3}" FileName="wdbbctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2FFEB671-66A2-4A28-895B-2C108149C8AC}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{301392E6-A649-11D1-9202-006097D41DAE}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{304B3495-3BD0-11D2-9246-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{30DD068D-5AD9-434C-AAAC-46ABE37194EB}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{312FC269-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{312FC26C-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{312FC26E-D75B-11D2-AE53-00805FFE16C9}" FileName="wdkcol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{31344EC1-D3CE-4B62-A9FF-0D15ACE40DC9}" FileName="sapxlhelper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{315861D2-81FC-11D1-91E0-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3173DFEF-5F0A-4F3B-ABAA-70E3D0657C38}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{31A8DE84-5958-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{31A8DE88-5958-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{31E1C9D3-B51C-11D1-B2B4-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{31E1C9D6-B51C-11D1-B2B4-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{32C09C0D-0414-4C15-AD37-D1B943F98088}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3308644F-4E5A-11D3-B47E-00609419F554}" FileName="sapformpainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3308645D-4E5A-11D3-B47E-00609419F554}" FileName="sapformpainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3399C6C4-AFE8-11D0-A8D5-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{33AE9AA5-98DA-4B0A-8012-8985DABFBAEF}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{33CFD349-32E2-4F1F-82CA-82EC19D9A4AC}" FileName="sautplg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{348F177E-98A4-4508-A7EE-1644E6365696}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34B54F23-4A41-11D3-926F-2EEA25000000}" FileName="icorgchart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34B54F26-4A41-11D3-926F-2EEA25000000}" FileName="icorgchart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34B54F27-4A41-11D3-926F-2EEA25000000}" FileName="icorgchart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34C9AA2C-225B-4FB7-8C05-F4966460B700}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34CCCA75-04C8-45D4-84B0-035F5E81DAE4}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34EE6DA2-D466-11D1-AF13-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34F51055-F9E2-11D1-B532-0000E82D8C06}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{34F51056-F9E2-11D1-B532-0000E82D8C06}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3542C661-6DF6-11D2-821E-0000C0BF89DE}" FileName="rasterexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3542C662-6DF6-11D2-821E-0000C0BF89DE}" FileName="rasterexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{356EF6C7-73E3-11D2-BF0D-0060082D41FB}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{359E710E-5388-451D-8083-135CE6D0A50E}" FileName="wdbrlog.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{35DE26C4-76C6-4F57-B95D-91432C1360C9}" FileName="sapab4edit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{361523E3-3FBE-4D52-AE19-E1D913BEEBF8}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{369BAEE1-F034-491F-9EAC-93ECE88E2DEA}" FileName="viswebcom.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{36C3BFB2-340D-11D1-9D41-006097BDC6D6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3733F676-68BB-42B8-9B75-B6CE2E2714EE}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{375DA2F4-4123-11D4-B4EF-00609419F554}" FileName="sapborderpainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{375DA2F6-4123-11D4-B4EF-00609419F554}" FileName="sapborderpainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{37E200A6-472F-11D2-B7D7-006097BDC6E1}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{37E8A905-12DA-11CF-8F57-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{37E8A908-12DA-11CF-8F57-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{37E8A909-12DA-11CF-8F57-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{387400C4-F05E-4AC7-ACE8-04298CA7627B}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3902D36D-61A9-11D2-AA0A-00A0C9447ED5}" FileName="sapqtab.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3902D371-61A9-11D2-AA0A-00A0C9447ED5}" FileName="sapqtab.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3902D373-61A9-11D2-AA0A-00A0C9447ED5}" FileName="sapqtab.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3911DA81-B88F-11D3-8AD5-00104B6391F0}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{394341B3-7C20-11D3-90D0-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3977B422-192C-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3977B425-192C-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3977B428-192C-101C-8158-221E4B551F8E}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{39C00903-5F83-11D2-A2A6-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A0722A4-1E49-11D1-8677-0060974A37D5}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A139292-61F3-11D2-9261-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A139295-61F3-11D2-9261-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A299492-5715-11D2-A0E1-006097BAA523}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A5BFE00-CD78-11CE-AAE4-CE6AC0F06E88}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A5BFE01-CD78-11CE-AAE4-CE6AC0F06E88}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A5BFE02-CD78-11CE-AAE4-CE6AC0F06E88}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A963F67-B6A6-4F03-9E0E-1BA2733DE8BF}" FileName="emf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3A9A0912-3DF9-11D3-B789-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3AA47454-1EA2-406D-B1E9-2B3840F4F8CB}" FileName="sevcontrol3d.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<!-- <Action Type="Registry" Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B008041-905A-11D1-B4AE-444553540000}" FileName="vsocx6.ocx"> -->
		<!-- <RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue> -->
		<!-- </Action> -->
		<!-- <Action Type="Registry" Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B00804F-905A-11D1-B4AE-444553540000}" FileName="vsocx6.ocx"> -->
		<!-- <RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue> -->
		<!-- </Action> -->
		<!-- <Action Type="Registry" Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B008051-905A-11D1-B4AE-444553540000}" FileName="vsocx6.ocx"> -->
		<!-- <RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue> -->
		<!-- </Action> -->
		<!-- <Action Type="Registry" Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B008053-905A-11D1-B4AE-444553540000}" FileName="vsocx6.ocx"> -->
		<!-- <RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue> -->
		<!-- </Action> -->
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B5ABFF9-1DC4-499A-8EC4-9D3928D0989A}" FileName="sapguicontrolplugin.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3B7245D0-FAE2-11D1-B2D5-006008BF0C53}" FileName="otxrt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3BE4236D-000D-4F6F-927C-48DC41CFEEDD}" FileName="sxadpepi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3C48DC16-9E58-4762-9E15-61E2296148F7}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3D6E1044-9DB1-4B35-A362-10F42364EE01}" FileName="sapslide.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3ECA9EB5-6502-11D2-B6DE-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3F0E6DA0-CFF5-11CF-9DD5-080009A7528E}" FileName="saprtf.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3F0E6DA3-CFF5-11CF-9DD5-080009A7528E}" FileName="saprtf.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3F24D672-10B6-11D0-AC5C-080009D23306}" FileName="saptabcn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3F24D677-10B6-11D0-AC5C-080009D23306}" FileName="saptabcn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3F76EB9D-5FAC-11D2-8B6F-0060B0C11126}" FileName="comparedistance.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3FDC6342-65C5-11D3-A63D-0060087AE3DA}" FileName="wdbdadpt.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3FDC6345-65C5-11D3-A63D-0060087AE3DA}" FileName="wdbdadpt.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{400EC80B-0617-426B-9F5C-915A3BD576E6}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DC65-5D79-11D2-8D2D-0000C0F789DE}" FileName="jpeg_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DC73-5D79-11D2-8D2D-0000C0F789DE}" FileName="jpeg_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DC74-5D79-11D2-8D2D-0000C0F789DE}" FileName="bmp_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DC82-5D79-11D2-8D2D-0000C0F789DE}" FileName="bmp_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DC92-5D79-11D2-8D2D-0000C0F789DE}" FileName="png_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4042DCA0-5D79-11D2-8D2D-0000C0F789DE}" FileName="png_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4066C1D8-513A-4BEA-A3B5-4B4E875C6CB7}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{40C9F1A0-0AF5-11D4-919F-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{40C9F1AF-0AF5-11D4-919F-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{40F42FB1-D75B-11D2-AE53-00805FFE16C9}" FileName="wdksysrv.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{40F42FB3-D75B-11D2-AE53-00805FFE16C9}" FileName="wdksysrv.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4133D8F4-C065-11D2-9822-0060B0C10195}" FileName="tbwindowunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4133D904-C065-11D2-9822-0060B0C10195}" FileName="tbwindowunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{415FCD45-2818-11D3-865F-00AA00D10954}" FileName="vp3dexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{415FCD57-2818-11D3-865F-00AA00D10954}" FileName="jtexporterlite.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{415FCD66-2818-11D3-865F-00AA00D10954}" FileName="jtexporterlite.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4181971B-9C55-422A-81D3-DDF08F3298D3}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4236F874-3CEC-11D2-B7D6-006097BDC6E1}" FileName="vis3dproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4236F882-3CEC-11D2-B7D6-006097BDC6E1}" FileName="vis3dproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4236F884-3CEC-11D2-B7D6-006097BDC6E1}" FileName="vis3dproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{42832DC3-83B5-11D1-91E1-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{42852C01-7C1F-11D3-90D0-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{42A9A909-AE18-465E-8625-0AF10C14355A}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{42AB3E61-17AD-11D1-A530-0000E82DE990}" FileName="sapimage.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{42AB3E73-17AD-11D1-A530-0000E82DE990}" FileName="sapimage.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4320CFF3-8794-11D1-88D9-006097D423FB}" FileName="v3dtree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{434F55D9-FA18-4D36-9354-9C7CE8710918}" FileName="sapchartscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{439825C5-5A1A-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{439825C8-5A1A-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{43FD9772-D8FF-11D1-AF14-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4408D080-FBF3-11D2-B984-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44266905-F9E5-11D1-B532-0000E82D8C06}" FileName="wdkcr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44266906-F9E5-11D1-B532-0000E82D8C06}" FileName="wdkcr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4426CD28-4604-4A95-9FC3-30DF4B9348E1}" FileName="vpvirtualdisplay.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{443C0C18-19B6-4522-AA0F-C85721018D99}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4457F882-CBA8-11D4-9694-000102D48057}" FileName="txt_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4457F883-CBA8-11D4-9694-000102D48057}" FileName="txt_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44DB658F-8200-4AD6-94EE-9C0908F3F667}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44F69A45-D928-11D1-9CD7-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{450ABF62-D896-11D2-A85E-00105AA868FA}" FileName="vpguid.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{450ABF72-D896-11D2-A85E-00105AA868FA}" FileName="vpguid.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4563DB80-5969-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4563DB8E-5969-11D2-B28E-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45672802-36F9-11D1-B6B9-0080C7D91998}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45672804-36F9-11D1-B6B9-0080C7D91998}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{456FC230-734A-48D6-AB35-82CD338B0565}" FileName="visautomation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45AB350B-727C-11D2-B45A-006094B9EA90}" FileName="sapilidr.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45AB350E-727C-11D2-B45A-006094B9EA90}" FileName="sapilidr.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45AB350F-727C-11D2-B45A-006094B9EA90}" FileName="sapilidr.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{45CD5A63-6E8B-11D2-A2B7-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4646E621-52DC-11D2-A6E4-0060B01AEE44}" FileName="vis3dext.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4662D8D3-4F56-11D3-9F53-00105A1B03FD}" FileName="markupproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{466BB3AC-D186-4F47-8961-0180B30AA299}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{468D2820-F85F-11D0-AD28-080009D23306}" FileName="saptabcn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{47FB2221-5024-4326-B689-ECEB5E5E8522}" FileName="swohxml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{482226E5-5FA1-11D2-B6DD-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{484CA6A4-7713-11D1-88CF-006097D423FB}" FileName="transiges.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{484CA6A5-7713-11D1-88CF-006097D423FB}" FileName="transstl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{484CA6A6-7713-11D1-88CF-006097D423FB}" FileName="transwrl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{485A28BE-AA51-4753-A0E2-E124910DE67B}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4889A217-809D-11D3-A4D6-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{492BF6F5-55ED-11D1-9A52-0060081EE065}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{49C98174-5A47-443B-9ADD-5F4880F7096D}" FileName="awkone.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B21E852-906B-11D3-901C-00104B6391F3}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B4F77D0-41DF-11D2-9249-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B4F77DF-41DF-11D2-9249-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B4F77E2-41DF-11D2-9249-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B4F77E5-41DF-11D2-9249-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B5DAC01-5E26-11D2-B6DD-00104B329645}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4B8406A3-6672-4A9E-8CD8-195C249D7D72}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4C5B1E66-279D-11D1-AD40-0060B01AEE42}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4C5B1E77-279D-11D1-AD40-0060B01AEE42}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4C5B1E7A-279D-11D1-AD40-0060B01AEE42}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4C5B1E7C-279D-11D1-AD40-0060B01AEE42}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4C67F373-24DB-11D3-AB83-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4CC5F9C2-A513-11D0-A8CF-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4CDD0651-FE6A-11D2-8856-000000000000}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4D0107A6-6578-11D5-9F7F-00105A1B03FD}" FileName="webtree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4D3FBB32-2E07-11D5-A8CE-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4DC4954B-5FCA-4853-87B8-F2B50F5F1F10}" FileName="spellcheck.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4E0B4BA5-7974-11D2-B6E8-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4E80FF32-E9B3-4FB3-A90E-7D5D703B2F69}" FileName="sapab4edit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4EBB40A2-F284-4D01-A106-C5CEC018BA00}" FileName="sapfewdbg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4EDBC584-B49C-11D3-B9ED-0060B0A4BC15}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4EF18932-237F-47E0-A0D6-FC8573DCB0DB}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4F2FD76B-8E82-11D2-B464-006094B9EA62}" FileName="sapoipw8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{501B6895-F9E7-11D1-B532-0000E82D8C06}" FileName="wdksypro.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{501B6896-F9E7-11D1-B532-0000E82D8C06}" FileName="wdksypro.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5033DF07-4636-420A-9BCD-F3A2D34BEF70}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{50A98A02-2637-11D1-B6B9-0080C7D91998}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{50A98A05-2637-11D1-B6B9-0080C7D91998}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{50B5C2C8-9AD3-11D5-B545-00609419F554}" FileName="sapbtfeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{50B5C2CA-9AD3-11D5-B545-00609419F554}" FileName="sapbtfeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{50E96888-277D-48DC-8194-B65FBC179DDA}" FileName="sxadpepi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{512C2243-7B1E-11D5-A66D-0050DA0BDFAB}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{515CD6A2-0B6B-11D1-AEB5-00A024AFE7E1}" FileName="saphtmlm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{515CD6B0-0B6B-11D1-AEB5-00A024AFE7E1}" FileName="saphtmlm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{515CD6B2-0B6B-11D1-AEB5-00A024AFE7E1}" FileName="saphtmlm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{52D91656-7A8D-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{52D91658-7A8D-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{52D9165A-7A8D-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{52D9165C-7A8D-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5318DB4B-3B47-4ECD-85AE-C64B41587202}" FileName="sapchart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5329D541-AFAF-11D1-A216-8E4E2C000000}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{547DABD6-33B2-11D3-8663-00AA00D10954}" FileName="jtexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{547DABE5-33B2-11D3-8663-00AA00D10954}" FileName="jtexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54814716-2848-11D5-A8CC-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54928C46-75B3-49C1-AD7D-DE37CEFE1C15}" FileName="sapmapscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54A28AA3-426E-11D2-9D20-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54A28AB1-426E-11D2-9D20-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54A28AB4-426E-11D2-9D20-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54BEE0E9-E89B-11D1-B568-0000E82DEC24}" FileName="sapgradp.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54EB4F90-51CF-41CC-A7DC-238FF62519E6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{54EDEBFC-0F9B-4A76-8C25-1C7E346AFA18}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{553D51EE-7305-42FC-9F38-13304AFD29FA}" FileName="saptoolbscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{555D8F70-D5F7-4A7E-A7FA-8F6269EC91B1}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{55A343E3-E83D-11D2-AB49-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{55AF79C4-14B3-11D5-A8C3-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{55AF79D2-14B3-11D5-A8C3-0008C7A03194}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{55C53102-868C-11D3-AB84-00A0C9E52D7A}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{55C53104-868C-11D3-AB84-00A0C9E52D7A}" FileName="wdkcbase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56196733-A27E-11D1-9200-006097D41DAE}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5658F7FE-9C3E-4843-BC52-4DF16326B16F}" FileName="sapalvcrprev.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56A4CE29-DBAC-4396-BB73-4B89747CAC89}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56AD9FC0-B9D0-11D1-A86B-006008C5F64D}" FileName="motiondocmgr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56AD9FCE-B9D0-11D1-A86B-006008C5F64D}" FileName="motiondocmgr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56B749E0-62F5-11D2-A32C-A253D8000000}" FileName="otxmenu.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56B749E5-62F5-11D2-A32C-A253D8000000}" FileName="otxmenu.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56B749E7-62F5-11D2-A32C-A253D8000000}" FileName="otxmenu.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56CABC08-C825-4EE3-8675-7271A944BFCA}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{56EDE66D-D8CC-4C28-B81F-F0441CD3DA5D}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5721E001-1B8F-4E16-97C9-C37487197A4D}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{57AFFB26-35D9-11D1-A65F-0060B01AEE44}" FileName="csviewer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{57F5122C-86F0-4ED0-97F6-335DBDE85183}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{57FA2CA4-0474-4596-8595-04AF26539FBB}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5838D761-B16A-11D3-8AD5-00104B6391F0}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{583F78ED-1B32-488A-99CD-A287490F0626}" FileName="pdf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5844B667-2724-4846-AB16-DD21B1013535}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{585A1011-34CF-4939-A87F-13B70932370E}" FileName="wdttreescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{58B19FF3-4A87-11D1-AD4F-0060B01AEE42}" FileName="cadassembly.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{596D7DD8-1597-463A-A86C-B1AAEDCF679F}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A1C8D33-A019-11D1-91FE-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A3A48D1-9608-11D2-8723-0000C0F789DE}" FileName="hpgl_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A3A48DF-9608-11D2-8723-0000C0F789DE}" FileName="hpgl_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A4973A0-61EB-11D2-B2EB-006008BF0C53}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A5BADDA-3F46-46ED-9DB7-D1B58725142C}" FileName="swohxml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A6118C5-F9E6-11D1-B532-0000E82D8C06}" FileName="wdkcol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5A6118C6-F9E6-11D1-B532-0000E82D8C06}" FileName="wdkcol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5B076C00-2F26-11CF-9AE5-0800096E19F4}" FileName="wdtfuncs.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5B076C03-2F26-11CF-9AE5-0800096E19F4}" FileName="wdtfuncs.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5B076C04-2F26-11CF-9AE5-0800096E19F4}" FileName="wdtfuncu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5B62C1B4-972A-11D5-8337-00A0D2186C21}" FileName="vfmdoc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5BBDD454-365F-11D3-AA99-00E02924C34E}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5BCEFD87-DDE0-4C1B-8687-279C60669CB1}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5C860060-5AE6-11D1-A66B-0060B01AEE44}" FileName="crosssection.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5C9FFFCC-3714-480F-A32E-A93F634B047B}" FileName="spellcheck.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D06D302-94EF-11D1-88EA-006097D423FB}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D06D310-94EF-11D1-88EA-006097D423FB}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D7917C1-21AB-11D2-B073-525400DBCE13}" FileName="vispdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D7917C3-21AB-11D2-B073-525400DBCE13}" FileName="vispdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D7917C5-21AB-11D2-B073-525400DBCE13}" FileName="vispdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5D823C79-1C70-4C82-9A79-1ECBC71C6CEE}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5DCBFC13-D4C9-454B-B410-2CA9D7ADD96C}" FileName="assignmentctrl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5DD34134-A1F8-11D0-A8CF-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5E2B44CA-E280-4C24-BBB6-530E1D14A435}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5E8B1371-F4C0-4F3B-A90C-856E934EC170}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5EA428A0-F2B8-45E7-99FA-0E994E82B5BC}" FileName="sapfewse.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5EC2E881-F568-47BE-A456-25EA639A0BF1}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5EF48285-636E-11D2-B6DE-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5F84441D-A0EC-4754-A509-08F31235974A}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5F9DED60-950B-4AA8-92D0-C971772C377C}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5FB83B0A-496D-4055-A08D-ADA2DAAB7BAF}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{600E5599-0B48-4146-848D-B2F690B4948D}" FileName="sevcontrol2d.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{603C7EB4-4BD3-11D2-9D24-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{603C7EB6-4BD3-11D2-9D24-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{603C7EB9-4BD3-11D2-9D24-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60CF5369-1F2E-4798-8D4F-EE658760FD9C}" FileName="sizerone.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60E6BE43-C801-11D2-B803-006097BDC6E1}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60E6BE47-C801-11D2-B803-006097BDC6E1}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60EFC707-76DE-11D1-9206-000000000000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60EFC70A-76DE-11D1-9206-000000000000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60EFC70B-76DE-11D1-9206-000000000000}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{60FA1071-2AFE-4094-8C7C-2815FF6FA00F}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{61747FF0-F35E-11D2-A679-0060B0B4EBA5}" FileName="vptreeviewpdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{61900150-F35E-11D2-A679-0060B0B4EBA5}" FileName="vptreeviewpdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{61B326A0-F35E-11D2-A679-0060B0B4EBA5}" FileName="vptreeviewpdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{62341062-29BC-4DCE-A87A-DC0CB19BF230}" FileName="saprotwr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{62664D72-3D3F-11D2-804E-006008AAB03E}" FileName="viswebcom.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{62664D80-3D3F-11D2-804E-006008AAB03E}" FileName="viswebcom.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{62CAE259-7A96-4584-BDFC-F0B4148266FF}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{630333A7-A45F-11D1-A951-080009B0CB9D}" FileName="sapoipss.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{630BD886-B382-11D1-8194-0000C0BF89DE}" FileName="grep.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{630BD896-B382-11D1-8194-0000C0BF89DE}" FileName="grep.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{63BD0FA1-19E0-11D4-91AF-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{63BD0FA4-19E0-11D4-91AF-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{63DCF733-8798-48BD-98E6-3BCDF0B4787F}" FileName="sapoipw8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{644D4630-DE08-11D1-9CDB-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{644D4631-DE08-11D1-9CDB-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{644D4632-DE08-11D1-9CDB-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64664FF3-FD68-4AF3-9F0C-85E0F0E5A147}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{648C95D8-9A6A-45F9-98FD-A0352B31D543}" FileName="visu_se.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64D10E01-2247-11D2-B074-525400DBCE13}" FileName="pdfviewutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64D10E03-2247-11D2-B074-525400DBCE13}" FileName="pdfviewutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64D57CC3-A2F1-11D1-8890-0000E8215770}" FileName="wdbex.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64D57CC6-A2F1-11D1-8890-0000E8215770}" FileName="wdbex.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64D57CC7-A2F1-11D1-8890-0000E8215770}" FileName="wdbex.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64EA91CA-3ACB-11D3-A4CD-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{65062FDF-3351-11D1-9D41-006097BDC6D6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{650E19F2-48CC-11D1-AD4F-0060B01AEE42}" FileName="treebrokerunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6521BC6A-AE52-46A9-97C0-AA3B734ED837}" FileName="viscarri.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{652B6E8E-8BDC-11D3-AA2A-0060B0A4BC15}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{65346735-4FA4-11D1-9A52-0060081EE065}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{65B36AD0-7A2D-11D3-A6B2-0060086E8F57}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66196736-A27E-11D1-9200-006097D41DAE}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66631693-7118-11D3-B6F0-00105A1B0657}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66D34537-82CC-4314-B3D3-3C1D68E931A5}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66D6B5E5-3B9F-11D3-B494-006094B9ED73}" FileName="sapalvstub.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66D6B5F3-3B9F-11D3-B494-006094B9ED73}" FileName="sapalvstub.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{67A32724-7BE2-4F9A-AA65-A8190718CA0F}" FileName="sapguicontrolplugin.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{67A95606-9F3B-11D1-91FD-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{67D2166A-FB86-4B1F-B86B-2AE110FA0FB3}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6801E43E-ECE4-11D2-B4B4-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{689BE59A-DEF3-4426-BD62-52F795C037CA}" FileName="wdttreescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68B89383-A182-11D1-91FE-006097D41DAE}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68C2EF41-22F9-11D5-B190-00105A1AF506}" FileName="gbr_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68C2EF42-22F9-11D5-B190-00105A1AF506}" FileName="gbr_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68D1FDF3-2259-11D4-8E6D-00105AD9C639}" FileName="idsgraphic.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68D1FDF8-2259-11D4-8E6D-00105AD9C639}" FileName="idsgraphic.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{68D1FDF9-2259-11D4-8E6D-00105AD9C639}" FileName="idsgraphic.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{698BD6B1-ED53-11D2-8738-0000C0F789DE}" FileName="mono_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{698BD6BF-ED53-11D2-8738-0000C0F789DE}" FileName="mono_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A284F82-FFE7-11D1-803D-006008AAB03E}" FileName="framebrokerweb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A284F92-FFE7-11D1-803D-006008AAB03E}" FileName="framebrokerweb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A63524F-C3F7-11D1-95BD-080009DC8A27}" FileName="motion.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B0AB4C3-3247-11D0-8634-0000E8A5D145}" FileName="wdtmctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B0B535D-F4F6-11D3-B487-006094B9BB74}" FileName="wdbspres.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CE2-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CF0-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CF2-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CF5-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CF7-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1D8CFC-E5D9-11D2-AB47-00105A1B03E2}" FileName="vpstoragebroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B1DD3D3-49C0-11D3-BE59-00105A226E53}" FileName="assembly3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6B8C29B2-FB65-423D-BDAC-13AAF1FC67BC}" FileName="saphtmlscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6BFFED21-0366-40B4-9905-962539C031F8}" FileName="wdbcbexc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6C2414D5-9A78-11D7-B230-00105AA84C78}" FileName="hptree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6C98DBE1-1F0D-11D3-88E0-0000E8215770}" FileName="wdbrtre2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6C98DBE6-1F0D-11D3-88E0-0000E8215770}" FileName="wdbrtre2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6C98DBE7-1F0D-11D3-88E0-0000E8215770}" FileName="wdbrtre2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6D8629DE-0397-4311-9460-E9C7EEDB4048}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6DCAA7E6-89F1-11D2-89AE-0000E8353222}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6DCAA7F8-89F1-11D2-89AE-0000E8353222}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6E3CC64B-EB42-4DBE-BF41-1D862E98558F}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6E64CA9A-B41C-44DF-ABB9-6C15EA54BB3D}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6ECFF863-E8FB-11D5-A676-0050DA0BDFAB}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{704C6BE8-544A-4286-B383-4C25C2990C8B}" FileName="sapcalenscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{70A4FF53-A047-11D5-B526-006094B98F91}" FileName="sapsdccscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{70A4FF60-A047-11D5-B526-006094B98F91}" FileName="sapsdccscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7170A1D5-3F08-11D1-B062-0000E81EEFA0}" FileName="combobox.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7170A1D9-3F08-11D1-B062-0000E81EEFA0}" FileName="combobox.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{719E9B20-B02B-11D0-8854-0000E8215770}" FileName="wdtrmenu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{719E9B23-B02B-11D0-8854-0000E8215770}" FileName="wdtrmenu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{719E9B24-B02B-11D0-8854-0000E8215770}" FileName="wdtrmenu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{71CBF493-C8C1-11D1-81A4-0000C0BF89DE}" FileName="cgm_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{71CBF4A3-C8C1-11D1-81A4-0000C0BF89DE}" FileName="cgm_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{71E78971-6D2E-11D2-821D-0000C0BF89DE}" FileName="raster_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{71E78972-6D2E-11D2-821D-0000C0BF89DE}" FileName="raster_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{731B7AAA-3081-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{731B7AAC-3081-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{731B7AAE-3081-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{731B7AB0-3081-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{731B7AB2-3081-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{733CAE90-3959-11D0-83AF-0000E81EEFA0}" FileName="sapnetz.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{733CAE93-3959-11D0-83AF-0000E81EEFA0}" FileName="sapnetz.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{733CAE94-3959-11D0-83AF-0000E81EEFA0}" FileName="sapnetz.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{735342F0-F985-11D2-B983-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{746B69CE-F751-4D84-8F64-1B52B6E68C12}" FileName="sapguirm32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{751FDBF2-CFC6-11D1-ADE7-006097D4240B}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{75E5D69C-6F7D-4EDE-97E9-89C6EA756708}" FileName="wdbrlog.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{763C5015-965F-11D2-AA46-00A0C9447ED5}" FileName="sapqtab.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{765627F0-77E8-11D3-A587-0000E82DE268}" FileName="apoviewer.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{765627F3-77E8-11D3-A587-0000E82DE268}" FileName="apoviewer.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{765627F4-77E8-11D3-A587-0000E82DE268}" FileName="apoviewer.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{766F13D2-A61B-4D03-8D6A-11D3E4A0F291}" FileName="visualiz.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{77666721-23A9-11D1-B6B9-0080C7D91998}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{776B3080-1878-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{77DFB3F8-6404-11D5-8052-00108379626F}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{78A045B4-EC1D-11D2-AB0F-00A0C943AFFA}" FileName="sapcltfc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{78D5B794-9084-11D3-B9D2-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{790511B3-C036-11D2-B802-006097BDC6E1}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{790511B5-C036-11D2-B802-006097BDC6E1}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7945DD21-CDCF-11D0-A8DC-080009B0CB9D}" FileName="sapcncsv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7945DD2F-CDCF-11D0-A8DC-080009B0CB9D}" FileName="sapcncsv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7979A511-4925-11D3-BE58-00105A226E53}" FileName="assembly3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{799104C0-04C5-11D0-AC56-080009D23306}" FileName="sapdatap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{799104C5-04C5-11D0-AC56-080009D23306}" FileName="sapdatap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{79945D01-A15E-45D7-B28B-D7A79B0D91EF}" FileName="apogridscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7A6C05A2-57C2-4609-AAC3-E7AB2A5C9A39}" FileName="sapguirm32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7AC6036A-7A5D-4E41-95F5-60F2E27CAA2F}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7AE30923-27A0-4FB7-A7CD-32D7FBEDDBB3}" FileName="plmxmlloader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7B0E76A7-54B3-11D2-B6DC-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7B6E7799-B06D-48EB-A4EA-267BC77F7F77}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7B8C2F31-164E-11D4-BBBB-00E02924C679}" FileName="trif_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7B8C2F32-164E-11D4-BBBB-00E02924C679}" FileName="trif_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7BB065F4-3E8E-11D3-90E3-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7BF40EA0-01B5-402D-83E4-0CAE84383AE7}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C096503-0E0D-11D7-A699-0050DA0BDFAB}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C138B97-3A80-11D3-B650-0000E82DEC24}" FileName="sapchartsemcommod.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C138B9A-3A80-11D3-B650-0000E82DEC24}" FileName="sapchartsemcommod.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C138B9B-3A80-11D3-B650-0000E82DEC24}" FileName="sapchartsemcommod.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C822F62-C99B-11D6-B11E-00105AA84C78}" FileName="v2dhptree_adapter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C822F70-C99B-11D6-B11E-00105AA84C78}" FileName="v2dhptree_adapter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7C849A4D-BA2E-4D11-BF61-F3C319CF0BDC}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7CCF7093-9D11-11D1-91FC-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7CD32791-0F9C-11D2-81DE-0000C0BF89DE}" FileName="loaderfactory.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7CE2DCC3-4514-11D3-90E8-006094B9D64F}" FileName="sapfewut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7D2E0263-77F8-11D3-9F55-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7D4535B4-4A84-11D1-AD4F-0060B01AEE42}" FileName="cadassembly.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7DB907C9-7995-4216-862C-5F2D7E59D0DA}" FileName="wdbvved.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7E7DB6E9-9EAF-4F84-82D5-699EAB20E74D}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7EB9F81C-E180-4C9D-ADBC-4AE8ECEA1E84}" FileName="eai2dscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7ED66909-2F41-4F41-B86E-99F08408D994}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7EE16516-A881-4D00-BBB8-7FA1458E882E}" FileName="sapbarcscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7F244CB4-15AC-11D2-B7CD-006097BDC6E1}" FileName="materialeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7F8199C1-CAFF-4E14-9586-4947E7F42D28}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FCAEF84-D390-11D0-8849-006097BFD99B}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FCAEF88-D390-11D0-8849-006097BFD99B}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FCAEF8D-D390-11D0-8849-006097BFD99B}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FCAEF8E-D390-11D0-8849-006097BFD99B}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FCAEF8F-D390-11D0-8849-006097BFD99B}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7FF88A76-2AE2-4758-AB03-2A273A0698E0}" FileName="swutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{80ADA985-C88D-41D6-8BC7-C0EDE651AC68}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{80DC59D0-740A-11D2-AA6B-00E02924C34E}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8117153D-13F5-43F2-BDFF-EE5B742C0D3C}" FileName="swutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{813339B2-D9D8-11D1-B2BD-006008BF0C53}" FileName="otxrt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81936364-5713-11D2-8D29-0000C0F789DE}" FileName="dgn_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81936372-5713-11D2-8D29-0000C0F789DE}" FileName="dgn_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81AB5782-8B93-11D1-948F-006097D4240D}" FileName="v3dtree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81F76C2D-5FBC-11CF-9C5C-C931FC52BC73}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81F76C2F-5FBC-11CF-9C5C-C931FC52BC73}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{820CA4D6-A649-11D1-9202-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{825B2D60-1878-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{82AB23CF-DE3C-4CBB-8C7C-BD43350A839E}" FileName="dft_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{83259D41-4A42-11D2-AF7A-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{83259D43-4A42-11D2-AF7A-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{83259D45-4A42-11D2-AF7A-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{83BE02BC-91A0-4156-BC04-E1E17611B024}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8527F38E-13A4-41AA-8442-942F30DC84D5}" FileName="sapbarcscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{852B1781-5FC7-11D2-9260-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{85FC1F88-9DA3-4601-A018-8F037B68146F}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86251564-2026-11D3-AB7E-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86251566-2026-11D3-AB7E-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8638694E-DA15-101B-8F41-00AA00517888}" FileName="dwreg32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8676C60D-BE08-4376-ACAD-639F629B3A8B}" FileName="visu_se.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{869A8AB5-2D44-11D2-A662-0060B0B4EBA5}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{869A8AB7-2D44-11D2-A662-0060B0B4EBA5}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{869A8AB9-2D44-11D2-A662-0060B0B4EBA5}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{869A8ABB-2D44-11D2-A662-0060B0B4EBA5}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86B1D8D1-CF01-11D1-ADF6-080009D23306}" FileName="sapdatap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86DB4074-5D17-11D2-8B6B-0060B0C11126}" FileName="vpcompare.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86DB4082-5D17-11D2-8B6B-0060B0C11126}" FileName="vpcompare.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{871303FE-F175-449D-AFCF-64B47218DBB1}" FileName="wdbranim.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{879A988D-7145-45F1-8D23-B6A01A2F0107}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{879FB2B5-5172-11D2-8D28-0000C0F789DE}" FileName="dwg_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{879FB2C3-5172-11D2-8D28-0000C0F789DE}" FileName="dwg_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87D2850E-6B43-101C-92CE-10005AF5DF4D}" FileName="wdtaocx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87D28511-6B43-101C-92CE-10005AF5DF4D}" FileName="wdtaocx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87D28512-6B43-101C-92CE-10005AF5DF4D}" FileName="wdtaocxu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87FAC061-9E05-11CF-A33E-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8833DDB3-3F73-11D3-925D-88FAFF000000}" FileName="icentry.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8833DDB6-3F73-11D3-925D-88FAFF000000}" FileName="icentry.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8833DDB7-3F73-11D3-925D-88FAFF000000}" FileName="icentry.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{88456F30-AAE9-4502-9D11-19C4B126AD70}" FileName="gridviewscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{888CC540-8AE0-11D2-B447-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{88E5C682-0126-11D1-AEB5-00A024AFE7E1}" FileName="sapoimgr.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{88E5C690-0126-11D1-AEB5-00A024AFE7E1}" FileName="sapoimgr.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8AB24B97-EEED-42E0-89FB-B96A77A8F329}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8AF2ED81-DC91-11D1-9805-0060B0A4FCE6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B1DAA05-F705-11D1-B532-0000E82D8C06}" FileName="wdkiccon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B1DAA06-F705-11D1-B532-0000E82D8C06}" FileName="wdkiccon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B24BBE2-3FC2-4578-BDA7-40D70AD85C5B}" FileName="sxadpaut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B2AAEC1-C061-11D0-ACF5-080009D23306}" FileName="sapdatap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B3EF1AA-B00D-4FC3-AFE0-9999ACD03686}" FileName="sapmapscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8B9B4AC3-A0DF-11D1-91FE-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8C0ABB41-4E88-4A77-9957-86B45A4ABFBC}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8C5F9B24-4AE3-11D1-A50F-006097BDC6E1}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8CA5F01D-6899-4AC1-8EC1-D894971310B3}" FileName="ecattrh.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8CB3F124-B7F1-11D0-A8D6-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8CD3FD03-62BF-11D6-A683-0050DA0BDFAB}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8D3F88B2-B5F5-4E4A-B4B6-2109D517B8BE}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8D7B8B4C-2AED-40BE-AA7A-E83C001F1B76}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8D7BA143-8692-11D0-9410-080009EEBECB}" FileName="memfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8E14F830-3D11-11D2-A0DE-006097BAA523}" FileName="undoredo.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8E14F83E-3D11-11D2-A0DE-006097BAA523}" FileName="undoredo.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8EED99ED-6F6E-11D2-984B-0060B0A4FCE6}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8EEFD875-FA15-11D1-B532-0000E82D8C06}" FileName="wdksycm.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8EEFD876-FA15-11D1-B532-0000E82D8C06}" FileName="wdksycm.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8FB28362-0282-11D1-AEB5-00A024AFE7E1}" FileName="sapoipw8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8FEFDA40-5A25-11D3-9DC6-006097BDC6D6}" FileName="csviewer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9020EF43-97F9-11D1-91F7-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{911A9F3E-ABCC-4D73-83A7-046C8A28A676}" FileName="ecattrh.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{911E3D34-C7A0-11D4-9F72-00105A1B03FD}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{914D8BA5-73A2-41D2-B0E9-D38CA031A8DC}" FileName="webviewer2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{91697101-B4A2-44C2-8C03-6FA0F0FB1519}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{92067EA7-74DF-11D2-B6E4-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{92293343-0283-11D1-AEB5-00A024AFE7E1}" FileName="sapoipw8.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{93069258-CF01-478D-BB89-829DDE7DF967}" FileName="sxadpaut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{935EA304-5AEE-11D2-8D2D-0000C0F789DE}" FileName="adwf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{935EA313-5AEE-11D2-8D2D-0000C0F789DE}" FileName="adwf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{93849CB4-F905-413D-ACEF-06C23065CEDA}" FileName="saptrace.dll(project saptrace)" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{93A7A951-B590-405D-B9EE-589A7031304E}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{93A91034-6D2C-11D7-B1E8-00105AA84C78}" FileName="v2dhptree_adapter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9400821F-38CB-4738-88CA-B23B21A3A7C7}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{945B261B-A39B-431F-BA97-51CA55383F3C}" FileName="sapalvcrprev.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{94A99B62-6A64-11D5-A15E-00104BCB3665}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{94D65315-FC46-4038-B843-FA5147686063}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{94EB4711-D4B6-42F8-87A6-1CAA7EE875CB}" FileName="sapchartscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95029DF2-5A48-11D3-ABAF-00105A1B03E2}" FileName="vpsearch.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95029E00-5A48-11D3-ABAF-00105A1B03E2}" FileName="vpsearch.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9507DFD9-D71B-463F-92B2-5CE424C17C90}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{953CACD1-4BB6-4D77-B570-2164065E398A}" FileName="sapslide.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{956BE98A-0C24-48C2-B02D-54C89A5451A0}" FileName="vpvirtualdisplay.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95805C8C-BC13-473B-A252-791545C1EE0A}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{958A4E90-6E9C-11D2-B2F6-006008BF0C53}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{959A2BCB-E1F8-4A54-801D-5A365ACD060D}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95F63692-4727-4FC9-89D9-5295B3894E04}" FileName="sapsplitscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{96C6EF86-B276-11D3-91C6-00E029346EFA}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{96D7C7A0-1C8B-11D0-AFE0-00805FA4BC8A}" FileName="sapoptio.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{96D7C7A3-1C8B-11D0-AFE0-00805FA4BC8A}" FileName="sapoptio.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{96D7C7A4-1C8B-11D0-AFE0-00805FA4BC8A}" FileName="sapoptio.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{970C4262-27FC-11D3-865E-00AA00D10954}" FileName="vp3dexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{970C4270-27FC-11D3-865E-00AA00D10954}" FileName="vp3dexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{97172791-D3DA-40F7-BD9A-0D38F9EC9146}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{975261F9-1889-4D17-9C15-E86963175360}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9772C14A-3767-44F5-8F68-8B395E65FEC4}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{986F6A03-4756-41E0-AC87-4869984CD3EA}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{98824CCB-4B7D-4B65-B141-0076759F1555}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{989D81B0-D71B-49FB-97E3-E2FA8CBCEF6E}" FileName="chart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{98E4D1C6-CA0A-11D1-A96C-080009B0CB9D}" FileName="sapoipd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{994DA3E3-DAB8-4F73-B6B0-A8A4173228C8}" FileName="texteditscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{997F4C10-7B3C-4EC4-9DB1-5E4F2ED74DC6}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{998180B8-48BD-11D1-AD4F-0060B01AEE42}" FileName="treebrokerunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{998180C9-48BD-11D1-AD4F-0060B01AEE42}" FileName="treebrokerunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{998180CB-48BD-11D1-AD4F-0060B01AEE42}" FileName="treebrokerunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{998180CD-48BD-11D1-AD4F-0060B01AEE42}" FileName="treebrokerunified.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{99A98452-0E73-11D1-8866-006097D423FB}" FileName="objbroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{99A98460-0E73-11D1-8866-006097D423FB}" FileName="objbroker.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A005EE4-D0B1-4DB5-A45E-90AA2A61C013}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A0CCE33-BA0F-11CF-9DC3-0020AF0ED553}" FileName="sapedit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A136E63-5AF0-11D3-ABB0-00105A1B03E2}" FileName="vpsearch.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A3285E4-5C69-11D2-A2A4-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A3285E6-5C69-11D2-A2A4-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A3285E8-5C69-11D2-A2A4-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A3D4C0F-5D30-11D2-8B6B-0060B0C11126}" FileName="vpcompare.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A74F91F-21BD-4404-BD41-3166C77A022B}" FileName="texteditscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC72-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC83-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC85-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC87-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC8B-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9A92AC8D-9878-11D3-9144-0050045E1A0F}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D933-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D935-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D937-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D93B-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D93D-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AA9D940-25B0-11D4-B933-006094B9C911}" FileName="sapvqlib.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9AD37867-A2A8-11D0-A388-444553540000}" FileName="chart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A640-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A64B-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A64F-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A656-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A658-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A65C-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A662-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A664-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A666-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A66F-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A671-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A673-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A677-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A679-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A67B-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A682-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A684-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A686-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A688-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A68B-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BD6A695-CE75-11D1-AF04-204C4F4F5020}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9BEB81B3-FE4A-11D2-8F8A-00104B5F200E}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9C27E49F-765B-11D3-B47F-006094B9BB0F}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9C27E592-765B-11D3-B47F-006094B9BB0F}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9C5BC2F0-0515-11D2-AE29-080009D23306}" FileName="saptabcn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9CDC0B53-A653-11D6-A68C-0050DA0BDFAB}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9D299415-9A54-4F91-9828-3903948AFD95}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9D2FF493-4DA4-11D2-8D27-0000C0F789DE}" FileName="cal_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9D2FF4A3-4DA4-11D2-8D27-0000C0F789DE}" FileName="cal_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9D3683CD-D135-4312-A87A-561ADD1F7D5C}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9DB03561-CCDE-11CE-AAE4-CE6AC0F06E88}" FileName="vsocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9DE5C794-1990-11D1-A911-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E36AC02-16C0-11D4-91AD-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E5E74B2-8DD3-11D2-A4AF-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E5E74B4-8DD3-11D2-A4AF-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E5E74B6-8DD3-11D2-A4AF-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E5E74B8-8DD3-11D2-A4AF-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E883861-2808-4487-913D-EA332634AC0D}" FileName="sizerone.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9E925E53-8CE7-425C-A9FA-251C6E7661F4}" FileName="webdynamictoolbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9ED41565-805D-4285-8311-6CFDFA212924}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9F287F6C-F0F1-4A8F-8560-5AEA92294A9C}" FileName="apogridscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A009C90D-814B-11D3-BA3E-080009D22344}" FileName="wdbcbexc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A013A1F2-AB86-4584-912A-F9F56D680E2C}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0236832-1393-11D3-AB73-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0236840-1393-11D3-AB73-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A040BB11-7832-11D3-900E-00104B6391F3}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A04673D1-82FA-11D2-B6F2-00104B329645}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0760231-347A-4B55-BA85-3C5636362947}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0B9992D-8B6F-11D3-B49D-00609419F554}" FileName="saptablepainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0B99932-8B6F-11D3-B49D-00609419F554}" FileName="saptablepainter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A0DF7BBF-E9B6-4960-AAFA-4C6446359B81}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A2CC3292-ED83-4397-B319-889B9483A298}" FileName="ecattrh.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A2CCC040-3AA5-11D3-90DF-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A316C533-648A-4399-B727-7D6D400C5D90}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A31D9521-719F-11D3-B4B5-006094B9EA2D}" FileName="spcontrol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A31D9533-719F-11D3-B4B5-006094B9EA2D}" FileName="spcontrol.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A34AF9A5-55BE-482A-B625-3621A06FFEEF}" FileName="prt_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A3B01FFE-25B0-11D4-B933-006094B9C911}" FileName="sapvq.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A3F49011-C39E-11D3-8AD5-00104B6391F0}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4005E53-2E36-11D2-9229-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A405C02A-A22D-4C11-B749-A353A1790EA6}" FileName="sapfprint.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4078D71-9050-11D2-B6FA-00104B329645}" FileName="grepmeasuretools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A42590C1-4907-11D2-9F49-00AA00A52232}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A46E4243-4E89-11D3-BD61-00104BCB3878}" FileName="viswebcom.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4A75274-4094-11D4-9F65-00105A1B03FD}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4B82115-20D9-11D2-8D16-0000C0F789DE}" FileName="mi_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4B82123-20D9-11D2-8D16-0000C0F789DE}" FileName="mi_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4C95811-8412-4BBC-AC99-05B530425D17}" FileName="eai3dscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4E64BDF-29C6-490A-AFE6-50103A28FA73}" FileName="saptrace.dll(project saptrace)" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4E9DDF4-525F-11D2-8206-0000C0BF89DE}" FileName="viewsetctl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A55E254D-880E-4304-91C4-667601DB3ABC}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6B52023-7829-11D2-9272-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6B52026-7829-11D2-9272-006097D41DAE}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6FF6378-4A62-11D3-B456-006094B9BB74}" FileName="wdbspres.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6FF6394-4A62-11D3-B456-006094B9BB74}" FileName="wdbspres.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A7233867-5D68-4897-88E9-1C7FF688D404}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A76CEBE0-7364-11D2-AA6B-00E02924C34E}" FileName="webviewer2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A76CEBEE-7364-11D2-AA6B-00E02924C34E}" FileName="webviewer2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A8246D52-A9FB-11D1-B2B0-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A8246D60-A9FB-11D1-B2B0-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A8C52EE5-CED9-11D1-B2BA-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A8D9AF4B-2180-4A17-9E8E-6D4E3A568937}" FileName="viscarri.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A93AFB08-439E-4BC2-9410-127AFFBC6166}" FileName="swohxml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A93F3F95-CFD3-49A0-BB82-BF73591FF8F4}" FileName="prt_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A9473200-1875-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AAF88AD8-1F50-11CF-8988-0000E8A49FA0}" FileName="wdtlogu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AB11603C-742F-4293-96B1-F771D88E4B56}" FileName="saptoolbscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AB765AB3-9414-11D1-91F2-006097D41DAE}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AB81E189-9975-45B6-B624-2CBB09080404}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ABD9058D-4A85-11D1-AD4F-0060B01AEE42}" FileName="cadassembly.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ABFF9EC3-393B-11D3-9253-20BA3B000000}" FileName="iccauseeffect.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ABFF9EC6-393B-11D3-9253-20BA3B000000}" FileName="iccauseeffect.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ABFF9EC7-393B-11D3-9253-20BA3B000000}" FileName="iccauseeffect.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AC4F3B5A-0F77-11D3-A690-00104B59C14B}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ACBFFDC1-67AF-11D2-A0E1-006097BAA523}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ACFAD841-4C39-11D2-A0DE-006097BAA523}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ACFAD845-4C39-11D2-A0DE-006097BAA523}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AD2EB2D6-D805-11D3-B9F8-0060B0A4BC15}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AD2EB2D8-D805-11D3-B9F8-0060B0A4BC15}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AD658823-280B-11D3-AB85-00105A1B03E2}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ADB3ECE0-1873-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ADB9C493-52C4-4BAC-BFC8-F1568E2BD61E}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ADFFFF74-B05E-11D1-A218-3A443F000000}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ADFFFF77-B05E-11D1-A218-3A443F000000}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AE122217-6279-4DCE-82B1-DCA770E58E45}" FileName="swohxmlppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AEB799CA-F02B-4183-822A-59055E2A39B0}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AEBEDA76-3BCE-4084-A606-DC08D270C08A}" FileName="abapeditorscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AF12E2D2-3437-11D3-AA99-00E02924C34E}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AF4B81F4-7A7E-4645-AF2E-9F015A36F15C}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AF85558B-56D0-4156-9ED6-B082CB0D2A77}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AFA8C45B-78F2-4299-850F-B57C023CB2DB}" FileName="emf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AFBBE070-7340-11D2-AA6B-00E02924C34E}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AFC1A845-3FCA-41D6-92FA-2C0E40B3A1BF}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AFC756A3-5D8C-11D2-8D2D-0000C0F789DE}" FileName="gif_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AFE6C9B4-CC1C-47DA-A302-F2534D8F1ABE}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B01952B0-AF66-11D1-B10D-0060086F6D97}" FileName="mdrmsap.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B0905983-180A-4D38-9049-8330DF1FCFFA}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B0D4C7C1-51A2-11D2-8205-0000C0BF89DE}" FileName="null_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B0D4C7D5-51A2-11D2-8205-0000C0BF89DE}" FileName="null_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B16EB5D1-5967-4A1F-85FC-298C4BCB4A59}" FileName="eai3dscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B1EB1CB1-3967-11D2-81F4-0000C0BF89DE}" FileName="converter_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B1EB1CC1-3967-11D2-81F4-0000C0BF89DE}" FileName="converter_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B2085E9A-DA15-4453-B878-1D8528208591}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B2375D24-E99E-4E2C-8DC6-CB00E144B8D6}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B24944D6-1501-11CF-8981-0000E8A49FA0}" FileName="wdtlog.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B24944D9-1501-11CF-8981-0000E8A49FA0}" FileName="wdtlog.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B24944DA-1501-11CF-8981-0000E8A49FA0}" FileName="wdtlogu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B380E73C-F760-11D2-B983-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B3C43352-715B-4569-98ED-C32509CF09FD}" FileName="sapbwwmd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B3E2CC4D-7682-11D3-B9BD-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B44A12FD-8B71-11D3-B522-006094193711}" FileName="apodpgrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B44A1300-8B71-11D3-B522-006094193711}" FileName="apodpgrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B44A1301-8B71-11D3-B522-006094193711}" FileName="apodpgrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B475C996-696F-4BE9-A4DF-5DBA91D554C8}" FileName="wdobapiu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B4CB04E6-2B37-11CF-A2E0-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B59C3A64-D283-4158-9592-0CC3CB006E7F}" FileName="sapstagescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B8071447-F4C3-4243-9CE1-D65FA2B4E05B}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B834990E-0470-11D2-AEB6-00E02914DF89}" FileName="navmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B834991C-0470-11D2-AEB6-00E02914DF89}" FileName="navmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B8401130-4FE5-4D36-B0B2-F7334F7A1D24}" FileName="chartscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B856C835-AEC9-4134-8ADB-F91ACC3B985A}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B86B02ED-29AB-4540-96B6-2662F2D5D119}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B8746563-754C-11D5-BBE0-00E02924C679}" FileName="cgm_nist_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B8746564-754C-11D5-BBE0-00E02924C679}" FileName="cgm_nist_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B87D98F7-4BE4-11D2-A6E2-0060B01AEE44}" FileName="vis3dext.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B87D9905-4BE4-11D2-A6E2-0060B01AEE44}" FileName="vis3dext.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B87D990B-4BE4-11D2-A6E2-0060B01AEE44}" FileName="vis3dext.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B90F32AD-859E-4EDD-BFAE-C9216849520C}" FileName="sapfewse.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9157262-98CB-11D2-A19A-0000E8A572E3}" FileName="sapsel.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9BF70A3-9CB1-11D1-A94C-080009B0CB9D}" FileName="sapoipss.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9BF70B1-9CB1-11D1-A94C-080009B0CB9D}" FileName="sapoipss.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9BF70B3-9CB1-11D1-A94C-080009B0CB9D}" FileName="sapoipss.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9E640FD-3D43-4753-9971-927B71933BC9}" FileName="jpeg2k_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BA0175F9-8CC6-4E51-91F7-DF99076B12EF}" FileName="wdtaocxu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BA0983EC-3346-4EBC-801E-0ED0E7A1D52A}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BA10B521-575D-11D4-BD94-00104BCB3878}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BAF8E07B-80DB-4CA3-BB13-48529D15ABB8}" FileName="wadmxhtml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BB81B6C8-6990-404C-A326-F0E3992EFCBF}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BC0B1E04-F58F-4A02-80AC-3CD4FD194F38}" FileName="saphtmlscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BC2D6486-8455-11D2-B440-006094B9D64F}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BCC2432C-E8FB-11CE-9BDF-0000E8A5E1A9}" FileName="wdobapiu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BD1B58B0-6C1D-11D7-B1E7-00105AA84C78}" FileName="hptree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BD1B58BE-6C1D-11D7-B1E7-00105AA84C78}" FileName="hptree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BD493FD8-5A32-4EBD-9535-4CE72BF29A6F}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BE3812FD-8692-11D0-9410-080009EEBECB}" FileName="memfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BE682C96-9382-40DB-818C-761EB3A3E63A}" FileName="sapimagescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BE8711A6-DCA9-4516-ACF6-70474F41568D}" FileName="swohxml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BEBCC162-183D-11D4-B31E-44455354616F}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BEC96C73-4A6A-4FF2-AD62-2A589E1D7494}" FileName="sapimagescripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF232B29-70CB-4B22-AF3F-21C6106830DE}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF246261-BC85-11D2-B766-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF58DCD5-113F-11D4-91A5-0050045E1A0F}" FileName="vpadvancedviews.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF5A9D96-CAF5-46BE-9446-9D24963EE026}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF6113E7-0D02-11D2-A702-0000E82DE990}" FileName="gridview.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF7CBC99-374B-4502-849B-596815FEB548}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF812D6F-E2FE-407A-BB15-EC4CDC6613DC}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BF81B790-0060-494C-9D6F-28A4C5ABECB0}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BFC62011-AEB6-4C1E-B65C-84F675E5F819}" FileName="sapoipd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BFCA9021-11B5-4B4E-B1F0-576028C3FB87}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BFF4E0D9-3A94-4748-8363-210FDBC27BFF}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BFF5C9C1-D0C2-11D2-9342-006097D41E30}" FileName="crosssection.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C0128F80-8FC5-11D2-B2A8-006097BAA642}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C023012A-6750-40E3-A4EA-5858939128D2}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C04BE8E2-B40F-4030-9A68-7197F3258E01}" FileName="sevcontrol2d.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C08AB035-3820-4FA7-9420-B0259A4DA2B8}" FileName="sapfewse.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C099FEC1-068D-49EC-9834-343131BDF095}" FileName="xtutility.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C0A63B80-4B21-11D3-BD95-D426EF2C7949}" FileName="vsflex7l.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C0A63B86-4B21-11D3-BD95-D426EF2C7949}" FileName="vsflex7l.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C0E9FA77-3C21-11D2-A3CB-0060B0A43C14}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C12DE2BE-F737-11D2-B983-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C143C70B-3678-11D1-A65F-0060B01AEE44}" FileName="csviewer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C15F1A43-F665-4768-B249-7A8AF7F8E400}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C1608E51-D92A-11D1-9CD7-00C04F91E286}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C1A7C74E-64AA-43EA-843B-FAEB17889A25}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C1B82513-6E27-11D2-87C5-000000000000}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C1B82522-6E27-11D2-87C5-000000000000}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C1EDF0A2-2564-48F3-A3A8-2E754D286CAF}" FileName="pdf_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C243FECD-A00A-4B40-8215-81883822D0E0}" FileName="visu_se.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C2B4A7C4-D1DD-11D0-A8DE-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C2E23BB0-6058-4F6E-8A77-F1B5886D6BC2}" FileName="assignmentctrl.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C31F4EC2-0F9C-11D2-81DE-0000C0BF89DE}" FileName="loaderfactory.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C3953B4B-31C5-4EC2-91F7-83C5B7025B26}" FileName="chartscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C3C40714-5152-11D2-9D26-00C04F91E286}" FileName="otxpersist.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C3D22F24-0187-451A-B832-2884E30E0B4A}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C41EB5C1-F6E0-11D0-AD26-080009D23306}" FileName="sapdatap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C49E6E5F-5A11-11D3-96B4-0004AC96572D}" FileName="sapbscentryadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C49E6E62-5A11-11D3-96B4-0004AC96572D}" FileName="sapbscentryadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C49E6E63-5A11-11D3-96B4-0004AC96572D}" FileName="sapbscentryadapter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C5180641-C81F-11D1-81A3-0000C0BF89DE}" FileName="cgm_saver.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C5180659-C81F-11D1-81A3-0000C0BF89DE}" FileName="cgm_saver.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C550A5CE-C747-453F-BD1C-C51115DA9D4E}" FileName="apogrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C5834D12-ACD6-11D3-A101-00104BCB3665}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C6F4D2D8-022D-11D3-B986-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C7DCCB61-5019-4E95-A02D-592522174471}" FileName="abapeditorscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C8662019-854D-11D3-B464-006094B9BB74}" FileName="wdboobjb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C8662055-854D-11D3-B464-006094B9BB74}" FileName="wdboobjb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C91CCC20-4C0E-11D2-B2E8-006008BF0C53}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C96B0C72-CAF3-11D1-B2BA-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C96B0C73-CAF3-11D1-B2BA-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9A2839D-F81E-47F7-B7AA-43CC5BF93F36}" FileName="sapfewdbg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9DE6BE2-39CB-11D3-9256-2AABF7000000}" FileName="icdataflow.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9DE6BF2-39CB-11D3-9256-2AABF7000000}" FileName="icdataflow.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9DE6BF2-39CB-11D3-9256-2AABF7000001}" FileName="icjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9DE6BF5-39CB-11D3-9256-2AABF7000000}" FileName="icdataflow.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C9DE6BF5-39CB-11D3-9256-2AABF7000001}" FileName="icjoin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA01EAC2-1B96-11D4-9F64-00105A1B03FD}" FileName="webviewer2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA027016-E9D6-11D3-A693-0000E8353222}" FileName="wdbwwiz.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA027022-E9D6-11D3-A693-0000E8353222}" FileName="wdbwwiz.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA3505C8-718B-43D7-BC81-E76E41DC4538}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA380D3F-8332-4F5E-A2C9-0C7FC4768DF8}" FileName="workspacemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA3F7991-7F37-11D2-A4AC-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA3F7993-7F37-11D2-A4AC-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA3F7995-7F37-11D2-A4AC-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA493852-67E0-48D1-8CAE-B7E829741981}" FileName="sapguirm32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA676414-B8BF-11D3-81D8-8D3DAA446440}" FileName="vis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CA6D527C-4A38-11D3-B456-006094B9BB74}" FileName="wdbcbexc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAEC1A60-96F1-11D0-9A6B-444553540000}" FileName="chart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAEC1A67-96F1-11D0-9A6B-444553540000}" FileName="chart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAEC1A68-96F1-11D0-9A6B-444553540000}" FileName="chart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAF375A0-E9FE-11CF-9DDA-080009A7528E}" FileName="sapsbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAF375A3-E9FE-11CF-9DDA-080009A7528E}" FileName="sapsbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CAF375A4-E9FE-11CF-9DDA-080009A7528E}" FileName="sapsbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CB3024E7-3E18-4AE3-BC78-810B56379DA1}" FileName="vpauthor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CBC60061-A140-11D0-A8CF-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CBC60071-A140-11D0-A8CF-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCA2A90C-1AC5-48A6-B2A1-CDE3371FD636}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCCFA6A5-EC01-11D2-AB0F-00A0C943AFFA}" FileName="sapcltfc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CDB00921-2813-11D0-9683-00000000F7F7}" FileName="grctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CDEB8063-C941-4E2D-8A13-169E4005DDFD}" FileName="wdtaocxu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CF1028F2-5818-4830-B79D-1CA865853208}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CF1E9EE2-8BC0-11D3-901C-00104B6391F3}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CF2646E4-60B9-4393-B582-9065DFEEE04E}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CF952ADF-661A-11D3-B9B4-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CFD4DB08-F978-4D53-A60F-2C731586B026}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D0EDE350-44D3-11D1-A0BE-006097BAA523}" FileName="vis3dtovis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D0EDE362-44D3-11D1-A0BE-006097BAA523}" FileName="vis3dtovis2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D11ADFAB-EE1D-4494-8F19-B4133A953D23}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D1406812-2D63-11D2-9227-006097D41DAE}" FileName="vppickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D1406820-2D63-11D2-9227-006097D41DAE}" FileName="vppickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D190B5DC-A0E8-4D21-94FF-1957C2812EA9}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D1E73AA6-F222-457A-9535-E6096E647D40}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D1F8BD11-7967-11D2-B43A-006094B9EADB}" FileName="saphtmlp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D1F8BD1E-7967-11D2-B43A-006094B9EADB}" FileName="saphtmlp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D2189412-C107-11D2-B768-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D2F480B0-2DD7-11D5-A2E7-00105A1B06C1}" FileName="greppropertiesmanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D2F48F0D-2D90-42CE-832C-D0A10DB4F92B}" FileName="printing.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D311D653-A4B5-11D1-9202-006097D41DAE}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D3BEB7C8-23E7-42DA-A340-9ACCCBC63F19}" FileName="sapfewdbg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D3EF6655-9672-433D-9546-8ACC06AA47A2}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D41E4A4C-F38F-4CEA-94E7-1AC822FDA352}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D4408B81-B7F9-483D-A851-3C97E7FFD509}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEEFB-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEEFC-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEEFD-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEEFE-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEEFF-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF00-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF01-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF02-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF07-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF08-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF09-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF0A-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF0C-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D45FEF0D-393E-11D3-935C-006097D41E30}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D59CAEDE-C42C-4547-B3F3-96BABFCD4706}" FileName="viscarri.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D5BF8A72-5567-11D3-9F53-00105A1B03FD}" FileName="markupproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D5BF8A80-5567-11D3-9F53-00105A1B03FD}" FileName="markupproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D60D07B9-A695-413C-88C2-6F0B68F79C1E}" FileName="sapidbw.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D65F52A4-DA2B-11D2-882B-000000000000}" FileName="sapdpcts.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D65F52B2-DA2B-11D2-882B-000000000000}" FileName="sapdpcts.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D662437A-FAA6-4E65-9C1F-8F9D49F69819}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D709DAD1-C258-4875-84C8-25FF06B32F60}" FileName="gridviewscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D7206A1D-3F10-412A-9F8B-A99536EE68E7}" FileName="wdtlogu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D737C065-6297-11D6-A683-0050DA0BDFAB}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D78408D5-10EC-11D2-B57F-0000E82DEC24}" FileName="sapgradp.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D792E5E1-0DD6-11D1-A903-080009B0CB9D}" FileName="sapoipd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D7A81B50-E8D3-481A-8248-DB79989077F9}" FileName="vpvirtualdisplay.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D7C8757A-636D-464F-B3AC-251A32927D8E}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D7E318FE-2D30-11D6-A505-00105A1B062B}" FileName="vppmi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D80936F0-782B-11D3-900E-00104B6391F3}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D82CE02F-F3F2-44CF-848B-4F6D39AB0692}" FileName="sapcalenscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D855209C-82F7-11D2-A94E-0060B0A4BC15}" FileName="comparedistance.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D866E912-5FA5-11D2-8B6F-0060B0C11126}" FileName="comparecolor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{D8BB5C83-CFEE-11CF-9DD5-080009A7528E}" FileName="saprtf.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DA773960-CDC3-11CF-9DD5-080009A7528E}" FileName="sapedit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DA773963-CDC3-11CF-9DD5-080009A7528E}" FileName="sapedit.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DAADF07B-7D06-4AF4-B3CA-6144830077EC}" FileName="sapfewse.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DAB6FEA4-ECEF-4A84-BCFF-F2348B45B78C}" FileName="visualiz.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DB2CC3A2-CE95-4EDF-8338-FEA72AB296DE}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DB357781-F907-4768-B66E-D847C05A4412}" FileName="vpdataaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DBBF389E-3811-4E90-96E2-F67EF481A35F}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DBDDDEE4-C775-4956-B734-60AD420EBEDE}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC26F082-2D42-11D2-9227-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC26F093-2D42-11D2-9227-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC26F096-2D42-11D2-9227-006097D41DAE}" FileName="pickfeaturemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC3238AA-5BAD-11D3-A16C-00C04FB6A5AC}" FileName="apogrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC3238AD-5BAD-11D3-A16C-00C04FB6A5AC}" FileName="apogrid.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DC74637D-DE04-4B3D-9897-CB2BADEF754C}" FileName="wdobapiu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DCD1EFF5-D15E-11CE-A69B-0000E8A5B7EA}" FileName="wdobapiu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DCD525B6-4B7E-47DF-8A64-AC59036CC800}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DD281B68-7CC4-4398-A155-05604775A3F8}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DD7987F7-28A1-44ED-AEEF-3FC3D0EE132C}" FileName="plmxmlexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DDD1E030-3EA4-11D2-A0DE-006097BAA523}" FileName="vpannotation2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DDD1E03F-3EA4-11D2-A0DE-006097BAA523}" FileName="vpannotation2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DDEF01BE-CDD7-476C-8E71-9B9BAB57F99A}" FileName="sapfprint.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DDEFC2B5-FA08-11D1-B532-0000E82D8C06}" FileName="wdkcfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DDEFC2B6-FA08-11D1-B532-0000E82D8C06}" FileName="wdkcfile.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DE07CF97-F6AA-40D6-89DE-EA6407337832}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DE3472AC-FF26-4444-8FFD-8158A81C782D}" FileName="dakservice.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DE3D4F24-8307-11D6-838A-00A0D2186C21}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DE3D4F26-8307-11D6-838A-00A0D2186C21}" FileName="vpcoordinatesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DE800787-F50C-4F19-BB90-E0F67DE2F706}" FileName="plmxmlloader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DEB486C2-BD26-11D2-B766-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DEB486C6-BD26-11D2-B766-00104BCB3343}" FileName="motionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{DEB4BAB7-0257-453D-9718-B10725E23207}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E07BAAA3-2DEE-11D2-B2E4-006008BF0C53}" FileName="otxmenu.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E07BAAB1-2DEE-11D2-B2E4-006008BF0C53}" FileName="otxmenu.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1204832-CFF0-11D2-B76A-00104BCB3343}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1C069B3-DE8F-11D1-B2BD-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1EBB9D8-4FD4-4E70-8AD3-EF71CBB2C9A2}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E242F686-BDC7-11D3-B9C8-00A0C9425FEF}" FileName="sapgplmp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E2779C61-F87E-4038-98A0-1D9E71334706}" FileName="saprotwr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E2C104C8-F0CD-47A3-896C-C35C045C3D32}" FileName="xtutility.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E34FB2B7-3948-4C11-91A3-7E823C3326A7}" FileName="vpreport.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E3B9ECE2-7A96-4AA5-907C-0623CB1876D5}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E4416EFD-5C36-466B-854C-5DA42C5584EC}" FileName="sapfewdbg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E45587F6-4BAB-11D1-A50F-006097BDC6E1}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E4C71522-8C76-11D3-901C-00104B6391F3}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E4E9650C-2547-4074-8D0F-462C7A7EE0C0}" FileName="wdbranim.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E5131C60-1787-11D0-AC76-080009B4430C}" FileName="sapfewin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E5131C63-1787-11D0-AC76-080009B4430C}" FileName="sapfewin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E5131C64-1787-11D0-AC76-080009B4430C}" FileName="sapfewin.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E5232A60-4CCB-11D2-B284-006097BAA642}" FileName="printing.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E5232A6E-4CCB-11D2-B284-006097BAA642}" FileName="printing.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E52B70D3-15DB-11D2-8D14-0000C0F789DE}" FileName="tiff_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E52B70E1-15DB-11D2-8D14-0000C0F789DE}" FileName="tiff_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E542CAB6-9D2B-4726-91B6-96CDEE6480D9}" FileName="sapchart.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E6035AA1-A9A3-11D1-818B-0000C0BF89DE}" FileName="ovl_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E6035AB0-A9A3-11D1-818B-0000C0BF89DE}" FileName="ovl_loader.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E631300A-4FB2-40B4-BDD1-D9FDB3035AE1}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E677A061-08FE-11D1-A900-080009B0CB9D}" FileName="saphtml.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E677A071-08FE-11D1-A900-080009B0CB9D}" FileName="saphtml.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E76CDC3A-6F65-4086-9FE3-5D0B4645A301}" FileName="sapplan.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E788B1A4-A874-4BAD-A5E1-F54F5F588ED7}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E81F68DD-E4B9-492B-8548-82C04E357605}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E931BF80-56DA-11D2-B2E8-006008BF0C53}" FileName="formx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EA7D34A3-FCED-11D2-8F86-00104B5F200E}" FileName="markup3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EAC9A7C0-5405-11D7-B1BF-00105AA84C78}" FileName="workspacemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EAC9A7CF-5405-11D7-B1BF-00105AA84C78}" FileName="workspacemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EAC9A7D6-5405-11D7-B1BF-00105AA84C78}" FileName="workspacemanager.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EB141322-105F-11D2-B7C9-006097BDC6E1}" FileName="materialeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EB141330-105F-11D2-B7C9-006097BDC6E1}" FileName="materialeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EB141332-105F-11D2-B7C9-006097BDC6E1}" FileName="materialeditor.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EBC57076-C789-463B-AAC1-CE8E6617008B}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EBF47EA2-CA9D-45E4-8FD0-29A57FC97A8C}" FileName="plmxmlconverter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC05D638-DD0F-4C43-9629-77342EA85EC9}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC122E43-1D81-4443-81A6-4ADC5F6D6A50}" FileName="swohxmlppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC15FA50-3EA4-11D2-A0DE-006097BAA523}" FileName="vpmeasurement2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC15FA5F-3EA4-11D2-A0DE-006097BAA523}" FileName="vpmeasurement2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC90F255-49FA-4A30-8FF7-8ACD88E19ED0}" FileName="sxadpaut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC9D2532-28C1-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC9D2540-28C1-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EC9D2542-28C1-11D3-9F52-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ED378E93-57AA-11D2-A2A3-00A024E509A8}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ED38CF9B-51ED-4BBF-BE80-8025D2351A75}" FileName="sxadpepi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EDB67A1C-3DB2-441B-8073-DD8A063363D9}" FileName="visualiz.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EE4E5EA0-00EE-4653-B3BF-BF099A160357}" FileName="vpvirtualdisplay.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EE53CF0E-F75C-11D2-B983-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EF6A4AE4-6FF0-11D5-A4FB-00105A1B062B}" FileName="vpannotation.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{EFA6ABF5-DE75-46FF-B7D9-109884909307}" FileName="hptree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F02097F2-8D4E-11D3-90DC-00104B329645}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F0788BE2-7E6E-11D2-86D6-004005581AEE}" FileName="wdtmlgnd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F0788BE5-7E6E-11D2-86D6-004005581AEE}" FileName="wdtmlgnd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F0788BE6-7E6E-11D2-86D6-004005581AEE}" FileName="wdtmlgnd.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F12B6C48-9386-11D4-BD23-00105A5B612D}" FileName="sapstage.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F12B6C4B-9386-11D4-BD23-00105A5B612D}" FileName="sapstage.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1407E3B-C472-489C-B7CD-C82A4A1B3672}" FileName="vplayer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F16DC514-ADEE-11D1-B2B3-006008BF0C53}" FileName="otxshortcutbar.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F196FF13-0E8D-4F2A-BD19-C40FA90EF8DA}" FileName="vis3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1C63B5A-9ED0-44B2-8CF8-84079E94968E}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1D28CE1-B9F0-11D1-A86D-006008C5F64D}" FileName="vfmdoc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1D28CEF-B9F0-11D1-A86D-006008C5F64D}" FileName="vfmdoc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1F3D343-C454-11D1-A887-006008C5F64D}" FileName="motion.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F20C8A13-44E2-11D3-9F53-00105A1B03FD}" FileName="markupattributes.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F2212AE8-4C38-11CF-A301-0000E8A490E7}" FileName="wdttree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F255A1CF-150D-440D-95EB-3BB737B84A5F}" FileName="vpvirtualdisplay.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F25FBFB3-FBB9-45D3-864F-79499E7CD010}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F2B326D8-EB8D-4C3A-BDDB-171902D700A6}" FileName="v3ddoctree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F324F931-10AD-447B-A112-980CEF358401}" FileName="sapguidrw32.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F3544C10-A515-434C-8F8D-9F18F622511D}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F3A7C152-4FE2-11D3-A260-00105A1B06C1}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F3FC5CA8-C784-4EC8-9494-42AE24763A0E}" FileName="vpcrosssection3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F43E23F1-A7D9-11D1-ADC6-006097D4240B}" FileName="webstream.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F46988D3-DBB8-4A85-99E6-C8944C04F565}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F47B934E-505E-4FC4-AFC7-FB375A7955C2}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4C2CBB6-4DA2-11D2-B6D9-00104B329645}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4F6B14A-CCC3-4E68-85FF-54AD23EBC5BF}" FileName="sapgradpscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F56D0660-94A6-11D1-B6B9-0080C7A2EB96}" FileName="motion.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F56D0670-94A6-11D1-B6B9-0080C7A2EB96}" FileName="motion.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F56D0672-94A6-11D1-B6B9-0080C7A2EB96}" FileName="motion.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F5D96DE3-587D-11D3-B31E-4401FDC00000}" FileName="markupproperties.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F5FE53A3-4675-11D2-8787-000000000000}" FileName="sapguirm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F5FE53B1-4675-11D2-8787-000000000000}" FileName="sapguirm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F5FE53B7-4675-11D2-8787-000000000000}" FileName="sapguirm.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F62C353C-F5BD-4502-AFE8-79BD815223BE}" FileName="swohxml.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F648C171-9E0A-11D3-8ACD-00104B6391F0}" FileName="cs3dframework.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F6BB555F-1E28-4366-A4B0-EDCE65C2B7A2}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F73400C1-364A-11D0-8636-0000E8A5D145}" FileName="wdtmctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F73400C4-364A-11D0-8636-0000E8A5D145}" FileName="wdtmctrl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F74103D2-34A1-11D3-B787-00104BCB3343}" FileName="vpmotionsystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7715F43-B974-11CF-9B1F-0800096E19F4}" FileName="wdtfuncu.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F777D827-7A88-11D3-B9BF-0060B0A4BC1E}" FileName="measurement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7B2B7DA-5D4A-11D2-A2A4-00A024E509A8}" FileName="imageviewutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7B2B7E9-5D4A-11D2-A2A4-00A024E509A8}" FileName="imageviewutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7B2B7EB-5D4A-11D2-A2A4-00A024E509A8}" FileName="imageviewutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7CF1E90-3EA4-11D2-A0DE-006097BAA523}" FileName="vpcompare2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F7CF1E9F-3EA4-11D2-A0DE-006097BAA523}" FileName="vpcompare2d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F8EFD83D-0FEB-410D-BB7A-4A61F721D180}" FileName="vpappearancesystem.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F93DDD43-3599-11D1-9D41-006097BDC6D6}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F989E0B8-9EBC-4801-B32D-19E9FA6638CC}" FileName="sapalvcrprev.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9AA0D86-09F9-11D2-AEB8-00E02914DF89}" FileName="navcommon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9AA0D94-09F9-11D2-AEB8-00E02914DF89}" FileName="navcommon.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C06024-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C06027-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C0602A-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C0602D-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C06030-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C06033-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F9C06036-DA8D-11D1-AF16-006097DA3688}" FileName="mo20.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FA0DBC34-8C62-11D1-A237-00A024E509A8}" FileName="v3dtree.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FA8355F9-0CFF-11D2-A702-0000E82DE990}" FileName="gridview.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FAF5E5EB-5819-4FA1-A3F6-9CAC1013EC62}" FileName="sapselscripting.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FBC9BE64-4F26-11D2-B0A0-525400DBCE13}" FileName="acropdf.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FC0E7F17-F593-11D1-B2D1-006008BF0C53}" FileName="otxrt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FC301047-7FD6-41CC-9A74-A6B1AE777036}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6DCC191-C4A3-4b7b-8041-52D280722E86}" FileName="sapguisv.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FC32CA33-B586-11D0-A8D6-080009B0CB9D}" FileName="sapsdcc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FCB8B6BC-A990-40D8-A6E9-2F101AC6AF33}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FCC11328-A41A-46DD-A5D3-44DBDFFF1B7B}" FileName="wdbspres.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FD287ECB-B7A6-42B7-923A-93B740969AF5}" FileName="vpsearch.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FD31A4A3-7193-4F59-841D-5C4A26FFB2E5}" FileName="awkone.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FD3F9C60-6DEF-4BD6-8293-193D3016595B}" FileName="plmxmlexporter.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FD7D285E-59DD-11D1-A66B-0060B01AEE44}" FileName="crosssection.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE271887-227A-11D4-BCFE-00105A5B612D}" FileName="sapmap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE27188A-227A-11D4-BCFE-00105A5B612D}" FileName="sapmap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE27188B-227A-11D4-BCFE-00105A5B612D}" FileName="sapmap.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE7B78C0-55D6-11D5-A2F4-00105A1B06C1}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE7B78C1-55D6-11D5-A2F4-00105A1B06C1}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE7B78C2-55D6-11D5-A2F4-00105A1B06C1}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE7B78C3-55D6-11D5-A2F4-00105A1B06C1}" FileName="greptools.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FEB42122-2EAD-11D1-83C5-006097097E2E}" FileName="scerrlkp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FF532A91-EE1E-11D0-B4CB-0000E82DEC24}" FileName="sapbarc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FF532A94-EE1E-11D0-B4CB-0000E82DEC24}" FileName="sapbarc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FF532A95-EE1E-11D0-B4CB-0000E82DEC24}" FileName="sapbarc.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FF8423A0-1873-11D0-99B4-00550076453D}" FileName="h5ocx32.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FFD34FE5-3F40-11D1-A50A-006097BDC6E1}" FileName="dmutils.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<!-- KW files: -->
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0001-0000-8001-CFD99CCEE5CC}" FileName="sapkwedocumentbridge.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0001-0000-8002-CFD99CCEE5CC}" FileName="sapkwedocumentbridge.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0001-0000-8014-CFD99CCEE5CC}" FileName="sapkwedocumentbridge.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0004-0000-8001-CFD99CCEE5CC}" FileName="sapkwedbworddocument8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0004-0000-8002-CFD99CCEE5CC}" FileName="sapkwedbworddocument8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0004-0000-8003-CFD99CCEE5CC}" FileName="sapkwedbworddocument8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0005-0000-8001-CFD99CCEE5CC}" FileName="sapkwedbpowerpointshow8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0005-0000-8002-CFD99CCEE5CC}" FileName="sapkwedbpowerpointshow8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0005-0000-8003-CFD99CCEE5CC}" FileName="sapkwedbpowerpointshow8.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0006-0000-8001-CFD99CCEE5CC}" FileName="sapkwedbvisiodrawing5.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0006-0000-8002-CFD99CCEE5CC}" FileName="sapkwedbvisiodrawing5.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0006-0000-8003-CFD99CCEE5CC}" FileName="sapkwedbvisiodrawing5.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0008-0000-8001-CFD99CCEE5CC}" FileName="sapkwedbdefault.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0008-0000-8002-CFD99CCEE5CC}" FileName="sapkwedbdefault.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0008-0000-8003-CFD99CCEE5CC}" FileName="sapkwedbdefault.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0009-0000-8001-CFD99CCEE5CC}" FileName="sapkwedbhtmledit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0009-0000-8002-CFD99CCEE5CC}" FileName="sapkwedbhtmledit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00CF0001-0009-0000-8003-CFD99CCEE5CC}" FileName="sapkwedbhtmledit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01F5D274-5CAE-11D3-A678-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0720E63E-C4D5-446E-8736-B28D38503AE3}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0C2C1DAD-01A0-11D1-AA93-0000E8A5D9EA}" FileName="sapirprs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{11BB36A2-D9B7-4B88-986C-350B3E09F023}" FileName="sautplg.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AE80A8F-AA2C-11D2-B250-0000E8344726}" FileName="sapkewrd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AE80A93-AA2C-11D2-B250-0000E8344726}" FileName="sapkewrd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AE80A95-AA2C-11D2-B250-0000E8344726}" FileName="sapkewrd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1AE80A98-AA2C-11D2-B250-0000E8344726}" FileName="sapkewrd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{21372780-EF5C-11D3-96CE-0004AC965257}" FileName="kwedit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2137278D-EF5C-11D3-96CE-0004AC965257}" FileName="kwedit.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{22CD97F7-C282-11D3-96D3-0004AC964532}" FileName="sapkwhtmlparsebase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{22CD9817-C282-11D3-96D3-0004AC964532}" FileName="sapkwhtmlparsebase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{237C1181-F9E6-4D56-ABF1-819088C928F7}" FileName="swohxml.dll " Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{249BDE3C-0A6A-4B71-B798-07E484DC8A09}" FileName="swohxmlppt.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2B73ABEE-9821-490C-B5D3-EBA1F31A3A4C}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{30197519-BAF2-11D0-8882-080009B69218}" FileName="sapirrlb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{305AA130-28E6-11D1-AA9F-0000E8A5D9EA}" FileName="sapirprs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{305AA132-28E6-11D1-AA9F-0000E8A5D9EA}" FileName="sapirprs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{305AA134-28E6-11D1-AA9F-0000E8A5D9EA}" FileName="sapirprs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{305AA136-28E6-11D1-AA9F-0000E8A5D9EA}" FileName="sapirprs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{32726E08-CD8D-11D2-A592-0000E82F6418}" FileName="kenppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{32726E0B-CD8D-11D2-A592-0000E82F6418}" FileName="kenppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{32726E0F-CD8D-11D2-A592-0000E82F6418}" FileName="kenppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3861C04B-F03C-11D2-8224-00600894AA5F}" FileName="swohdoc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3861C04D-F03C-11D2-8224-00600894AA5F}" FileName="swohdoc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3864141D-2595-4F6C-8FE5-D0CF5322C8EA}" FileName="sxadpaut.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44300375-5407-48D5-9F0E-7D484E2B3532}" FileName="xmladaptordef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44681B73-B479-450F-85C4-1980663AE405}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44BCB03A-F01D-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{44BCB15C-F01D-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4A57A112-A0D9-47D4-A305-284AE09E45E2}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{537CE5CD-ACE8-4188-86BD-BBF31EE65EEA}" FileName="swohxmlppt.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{577A08CA-EB67-4C6D-82D3-3997FC078E5F}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7CFC9-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7CFD3-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7D214-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7D217-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7D21A-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{64A7D21D-F01A-11D2-8224-00600894AA5F}" FileName="swcomctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{66942B24-B30E-11D0-87AE-00AA00198702}" FileName="sapirrfc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6819AE24-D294-4FA6-9791-619ED63A30D3}" FileName="swohxml.dll " Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{69F846C1-1406-11D4-BA0D-009027C3F313}" FileName="kwnetwizard.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{69F846C3-1406-11D4-BA0D-009027C3F313}" FileName="kwnetwizard.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A018394-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A018398-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A01839A-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A01839E-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A0183A2-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A0183B1-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6A0183B7-75B0-11D3-AC81-006008BBC81B}" FileName="sapircio.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6D51309A-0C13-48CB-8678-BCF6ED45998D}" FileName="swutils.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7037D619-AF21-4EC4-ADE1-6FF636535DCC}" FileName="sxadpepi.dll(new)" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{77F12F8A-F117-11D0-8CF1-00A0C91D9D87}" FileName="sapirrfc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{809F73F7-5B0E-11D3-A676-0000E8344726}" FileName="sapkewrd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81028A33-C307-4980-95E7-02D898FDA060}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{81233605-AE3E-4261-8EE9-101302ED27ED}" FileName="xmladaptordef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{82DBBF3B-2AF1-4EF8-A20F-5975C95E1EC9}" FileName="xmladaptordef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8D6D5A4A-DD07-43DC-A1CE-EC0F2EDFF3F2}" FileName="sautplg.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8FF214F0-EE71-11D3-A60D-006008732E32}" FileName="sapkwerrormanagement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F1D-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F1F-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F21-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F23-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F25-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F27-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F2B-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F2D-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{95902F2F-ACA9-11D3-B48E-006094B9BB0F}" FileName="swohidef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9F046A06-3067-4B16-A173-B324CADE54A6}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9FC5F3FC-1528-11D4-96BE-0004AC964230}" FileName="htmlpad.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9FC5F404-1528-11D4-96BE-0004AC964230}" FileName="htmlpad.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9FD89FC3-2155-11D2-A566-0000E82F6418}" FileName="sapshow.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A426ED6F-ED67-11D0-AAE6-0000E8284BFD}" FileName="sapircpr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E17-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E2F-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E31-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E33-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E35-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E37-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E41-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A4F59E4A-75B1-11D3-AC81-006008BBC81B}" FileName="sapirc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A658112B-1160-4C91-8CFB-FB26A42AAD5F}" FileName="sxadpepi.dll(new)" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6E34018-ABEF-11D0-8384-0020AF5CA3D4}" FileName="sapirprp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A6E34026-ABEF-11D0-8384-0020AF5CA3D4}" FileName="sapirprp.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{A809FC66-C8FF-11D3-96D5-0004AC964532}" FileName="sapkwhtmlparsebase.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AB7A9A22-F27E-42C2-AC8C-610C98AA12ED}" FileName="swohxml.dll " Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AEC2E34C-AEE7-11D3-B45B-006094B9448F}" FileName="htmltidy.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AEC2E359-AEE7-11D3-B45B-006094B9448F}" FileName="htmltidy.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AEC2E361-AEE7-11D3-B45B-006094B9448F}" FileName="htmltidy.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{AF8FC894-2B96-11D2-A569-0000E82F6418}" FileName="sapshow.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B08E05DA-F03B-11D2-8224-00600894AA5F}" FileName="swohppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B08E05DC-F03B-11D2-8224-00600894AA5F}" FileName="swohppt.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B78F8FF3-AE84-4E78-9D7A-B9B176D4EE67}" FileName="sapxlhelper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B7B18A80-EE71-11D3-A60D-006008732E32}" FileName="sapkwerrormanagement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B7B18A83-EE71-11D3-A60D-006008732E32}" FileName="sapkwerrormanagement.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C077ED54-9C09-11D3-96A4-0004AC964230}" FileName="kwstrctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C077ED5D-9C09-11D3-96A4-0004AC964230}" FileName="kwstrctl.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BAF8-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BAFA-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BAFC-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB07-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB09-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB0D-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB0F-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB11-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB16-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB18-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB1A-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB1D-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB22-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB24-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB26-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB29-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB2F-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB31-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB36-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB39-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB48-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB4D-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB50-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB53-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB56-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB59-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB5C-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB5E-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB64-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB67-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CCC8BB69-F02C-11D2-8224-00600894AA5F}" FileName="swcomfcs.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AA5-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AAD-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AAF-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AB3-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AB5-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AB8-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ABA-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ABD-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ABF-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AC4-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AC6-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AC8-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ACB-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ACD-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ACF-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AD1-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AD3-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430ADC-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AE5-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AEA-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AEF-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AF2-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AF5-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AF7-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AF9-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AFB-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AFD-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430AFF-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B03-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B07-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B09-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B13-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B18-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B27-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E1430B29-BDFA-11D2-B25E-0000E8344726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E7D2FD5F-2557-4920-AFBD-7F62F254130B}" FileName="sxadpaut.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F11BEAB4-C0B4-445C-AD08-4C88E896C726}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1A8B304-F03A-11D2-8224-00600894AA5F}" FileName="swohgen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F1A8B306-F03A-11D2-8224-00600894AA5F}" FileName="swohgen.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4AC1B80-32B8-11D3-B456-006094B9BB0F}" FileName="kwstrapi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4AC1B82-32B8-11D3-B456-006094B9BB0F}" FileName="kwstrapi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4AC1B84-32B8-11D3-B456-006094B9BB0F}" FileName="kwstrapi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4AC1B88-32B8-11D3-B456-006094B9BB0F}" FileName="kwstrapi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F4AC1B8A-32B8-11D3-B456-006094B9BB0F}" FileName="kwstrapi.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F6908F83-ADA6-11D0-87AA-00AA00198702}" FileName="sapirrfc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F6908F93-ADA6-11D0-87AA-00AA00198702}" FileName="sapirrfc.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F850BF6A-B02B-42ED-B982-A7A0B41CC452}" FileName="xmladaptordef.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FB1EA614-1786-427E-BF69-9C34A7AC2C77}" FileName="sxadpaut.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE0C4169-9207-11D3-96A0-0004AC964230}" FileName="swohvsd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FE0C416B-9207-11D3-96A0-0004AC964230}" FileName="swohvsd.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FFCF225C-F3AA-11D0-AAE9-0000E8284BFD}" FileName="sapircpr.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FFDEBFB7-3EF7-4A7D-B7C6-0AD4AABEEB4B}" FileName="swutils.dll new" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{FFE4FACD-B00F-4056-B796-5AC169328BF5}" FileName="sapiop.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{51C84CAB-ADD5-4F64-9FE1-23C06CB88FDF}" FileName="SapMsgForward.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{53DE7717-B05B-45C2-8090-6BBE2289C481}" FileName="SapMsgForward.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{E205F274-2305-49B5-B2FE-F63A28E007AE}" FileName="SapMsgForward.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{03DCBBED-6478-474F-8D2B-D438DE810F5D}" FileName="SapMsgForward.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00286af7-43bd-4705-899d-f560e5ca9556}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{05cf5ea2-229e-43f0-959a-4023abe3985e}" FileName="sapmsgforward.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0a9039ee-d66e-4971-ade6-53bd2390087d}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0bfa8c79-8e15-47c6-a590-293e18f71e5f}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0c4a845d-4211-4110-8194-71462053c1c5}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1344571f-e98e-4525-b63f-ba0ff0c7c890}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{140fd071-e5cd-4144-a868-dda764c46385}" FileName="wcrcontainer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{18e52f2f-9701-4c88-9a02-b7e8be1ff647}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{19abb2f0-861b-4dd0-a8d8-69bf82c39b6d}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2922bd3b-af35-4f08-844d-024ba62793ef}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{30197521-baf2-11d0-8882-080009b69218}" FileName="sapirrlb.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3822a850-cecb-4bb4-bcb6-b337c04710bf}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3b6b77ba-d6ef-46f1-b5dd-275cc807670b}" FileName="wcrcontainer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{47a88c43-d071-44b5-99f5-06f7e3353699}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{494052d7-6b8d-4524-a8db-d01202daf235}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4b6381eb-8931-4f0b-b861-2763bc685fe7}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4d0edbf8-a58c-40f7-8b2e-d6694b1e1e15}" FileName="jnetbean.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4d0edbf9-a58c-40f7-8b2e-d6694b1e1e15}" FileName="jnetbean.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4d1e1f6e-3fbd-4529-b6d1-55afe0fa49d6}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5287d805-9e79-4d36-913c-8cdcefb45c00}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{568edaa9-c40d-487a-a788-660380b8dd3b}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5c246b61-031d-4a08-9d26-83be5857af9d}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{61727325-64f5-4062-94d5-d2ea5377d03e}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{766790d3-ec86-4c25-9819-d3b9ea771098}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{795a8f39-e0b0-470a-9b18-d6c8c7b131fb}" FileName="wcrcontainer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87F2D946-21ED-4963-9B81-D96489CB2497}" FileName="sapxlhelper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8850944b-da83-4d59-959c-b6f9590d5de7}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9251c691-52ac-4b1a-98df-cc236c42fb0c}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9c424481-fb7f-4557-bf30-d0dafaa9eeb8}" FileName="wcrcontainer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9ca718d2-5eb1-4595-bebf-b94d567efd31}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9cdc3c27-dee7-4dba-8131-022419c3f411}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{9da1e88e-4b42-41c1-9db4-0422ec273818}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{a5180115-49ec-4a63-b060-6bd7ce5c45dd}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{a7a6bb18-ef65-4983-9a0a-d71a704bb340}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{b4e3e0d7-7a05-464c-b89b-29ef4fa1f7c9}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{bfdd7b95-50ca-4340-9135-e5e645d813ba}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4809C68A-A59D-47AA-9972-7A5636896755}" FileName="digitalsignature.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{cc7ab4cd-fd54-4688-9187-686ced06b265}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{cf4767ee-fb92-4dfa-84ac-945bd8b8d082}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d10e648c-544b-4252-9d8b-a5fd156fd30e}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d74571c1-308d-43e9-b2eb-8cb10a88eb9f}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{B9A2E589-3A5A-4DD5-912E-1954743B3CF6}" FileName="digitalsignature.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{e243b1db-4fe9-472f-a75c-90a3cfb1ee59}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{f6e2e02e-141c-4c7c-80d7-0c53136f66a6}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{f6fa44f0-29e4-493e-85cb-8b4a02ec5cea}" FileName="sapconsr3.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{ff2fde4e-ae16-4a2d-af48-822bcde3c28d}" FileName="wcrcontainer.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{fff835b7-016e-41ed-8bb4-b92bc29b17e1}" FileName="sapconsaccess.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{a02c35db-066e-4f0c-8e9b-d4daa7e2e1a2}" FileName="sijab.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{872a8103-6e3c-4953-8199-2c01537e2120}" FileName="sijabclient.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{f1d9c5f5-518e-4728-a525-cbfdf672ebda}" FileName="sijabclient.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{154b8e6b-f4ea-4a38-93f0-76e51c905e60}" FileName="sijab.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{bb7f5543-3021-4064-9ce4-f21b510c2d51}" FileName="sijabclient.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{0ECCD052-60B7-4F31-B28E-AC7407FD173F}" FileName="visualiz.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3c4e90c1-e610-48a7-b949-73949d209721}" FileName="visualiz.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{1cd0bd81-0816-4775-a738-47cb0268d2e0}" FileName="viscarri.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{b663a3b9-e80b-4ad0-9a4d-d115e80b8cf1}" FileName="viscarri.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{86e8f433-4fbc-4b60-a81c-507ea725c4ab}" FileName="visu_se.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{41d4a34c-158a-4ba7-aafc-d330b527888e}" FileName="visu_se.exe" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{99fcc4fe-c1f4-4ae7-b67f-26f475ca9a6b}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{79ae71f6-852f-42ee-a257-9a235085f2e2}" FileName="sapsettings.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{bf912d98-8819-4783-968b-3a97038e77e0}" FileName="sapsettings.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{c9db579d-02a5-44bd-ab2d-33d530970f83}" FileName="sapsettings.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{a1dc4380-4362-440f-8303-17ce4a0873a2}" FileName="sapguifocus.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{709194f0-2947-47cc-8871-b1b42d2a2475}" FileName="sapguifocus.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{056da858-0f19-40ab-9cf5-8621e3b85d00}" FileName="sapguifocus.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{01dd356d-02b6-4ae0-ac25-90f8991471b8}" FileName="sapfewut.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{308ff2a0-01ae-11d5-b6a3-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d6c5cde1-5598-11d5-b6ee-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d6c5cdeb-5598-11d5-b6ee-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d6c5cdef-5598-11d5-b6ee-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d6c5cdf1-5598-11d5-b6ee-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d6c5cdf5-5598-11d5-b6ee-006094b9ea90}" FileName="wdbfodlg.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4ed85fdf-9f43-438a-a9ea-53007947046b}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d4f6a6ec-712e-4f40-be59-f0d882df5269}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3d068b12-27ca-4fac-be80-386bca80d997}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{d464543e-903b-4e71-9e80-8f19464d5c3e}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{8F0A9D74-BD26-4E38-A277-9FD4C81531A2}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{F0EB6805-EB88-4965-85AE-49594CA2A331}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{2D85386F-40C5-4114-8C08-49A24CB92F71}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{3E91AACC-48CB-49c0-8412-6F69B91763AF}" FileName="LSAPIWrapper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{6F6B2E8E-27AB-4715-9C97-B17B1CD24BD5}" FileName="LSAPIWrapper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{7380FE1D-1730-4127-A977-24FCC495DE8C}" FileName="LSAPIWrapper.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{BC532035-25B7-46F8-B2BF-F375A801AFB3}" FileName="vistransmitter.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{442F6E63-3AF5-477D-9076-D3020E70B081}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{63459668-8FC8-471F-A08B-8CAADC5F1672}" FileName="wdbrprn.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4D0107A3-6578-11D5-9F7F-00105A1B03FD}" FileName="webtree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{4D0107A7-6578-11D5-9F7F-00105A1B03FD}" FileName="webtree.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{5BE4618B-033D-4778-89E2-CBBE40590194}" FileName="webdynamictoolbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{70D3A359-E1B2-43B8-8CD8-EE34695888DD}" FileName="webdynamictoolbar.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{C56DDA58-B702-4C2C-B706-70A79D948317}" FileName="webviewer3d.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{CC701D71-31B6-465D-8845-8ED56ED315D2}" FileName="wdbmbm2.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2013-0003-B15F-DDEE179FA5D1}" FileName="sapwdzip.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{00100000-2013-0001-B15F-DDEE179FA5D1}" FileName="sapwdzip.dll" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Internet Explorer\ActiveX Compatibility\{87D28511-6B43-101C-92CE-10005AF5DD4F}" FileName="sapwdtaocx.ocx" Type="Registry">
			<RegValue Name="Compatibility Flags" Type="DWORD">1024</RegValue>
		</Action>
	</Component>
	<Component Guid="{CEA0812E-3E0D-4210-BF7C-CDAFF35C60D3}" Min_Compliant_Version="20000" Name="$SAP GUI Configuration Desktop Icons" Version="20000">
		<Action Condition="(%WinType%=[Windows 2000,Windows XP,Windows Server 2003])&amp;(%WOW64MODE%=FALSE)" Dst="ProgramFiles\SAP Front End\SAP GUI Configuration" Type="Shortcut">
			<Src>&quot;%WinSysDir%\sapfcpl.cpl&quot;</Src>
		</Action>
		<Action Condition="(%WinType%=[Windows 2000,Windows XP,Windows Server 2003])&amp;(%WOW64MODE%=TRUE)" Dst="ProgramFiles\SAP Front End\SAP GUI Configuration" Type="Shortcut">
			<Src>&quot;%WinDir%\SysWOW64\sapfcpl.cpl&quot;</Src>
		</Action>
		<Action Condition="%WinType%=[Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2]" Dst="ProgramFiles\SAP Front End\SAP GUI Configuration" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\sapgui\sapfewcp.exe&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{C166D7A0-8FA9-4412-80F3-38E6B4857B65}" Min_Compliant_Version="20000" Name="$CWDIllegalInDllSearch" Version="20000">
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\saplogon.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\saplgpad.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sapgui.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sapshcut.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sapsettings.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sapfewcp.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\BExAnalyzer.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
		<Action Dst="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wdb3xlau.exe" Type="Registry">
			<RegValue Name="CWDIllegalInDllSearch" Type="DWORD">4294967295</RegValue>
		</Action>
	</Component>
	<Component Guid="{029F8888-F002-4207-9B5D-7AC1EA2663EA}" Min_Compliant_Version="20000" Name="$SAP Logon Pad Desktop Icons and Start Menu Entries" Version="20000">
		<Requires Guid="{88F42711-4FD9-489D-86B2-7E4915FAC7C9}" Name="$SAP Logon Pad Exe"/>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist("%SapFrontEndDir%\sapgui\saplogon.exe") Then
				NWEngine.Variables.InsertVariable "ExistSapLogon", "True"
			Else
				NWEngine.Variables.InsertVariable "ExistSapLogon", "False"
			End If
			]]></Src>
		</Action>
		<Action Condition="%ExistSapLogon%=False" Dst="ProgramFiles\SAP Front End\SAP Logon Pad" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\Sapgui\saplgpad.exe&quot;</Src>
		</Action>
		<Action Condition="%ExistSapLogon%=False" Dst="Desktop\SAP Logon Pad" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\Sapgui\saplgpad.exe&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{597BAB82-701C-4C08-ABDF-F84242B410FA}" Min_Compliant_Version="20000" Name="$SAP Logon EXE" Size="1233" Version="20050">
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src AppPath="%CommonProgramFiles%\SAP Shared">%SAPSrcDir%\sapgui\saplogon.exe</Src>
		</Action>
		<!-- Delete potentially existing "saplogon.exe.manifest" from 640 -->
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
strSapLogonExeManifest = NWEngine.Variables.ResolveString("%SapFrontEndDir%\SAPgui\saplogon.exe.manifest")
			If NwEngine.Shell.FileExist( strSapLogonExeManifest ) Then
				NwEngine.Shell.DeleteFile strSapLogonExeManifest
			End If
			]]></Src>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697868}\LocalServer32" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\saplogon.exe&quot; /ControlManager</RegValue>
		</Action>
		<Action Dst="HKCR\SapFront.App\protocol\StdFileEditing\server" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplogon.exe&quot;</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\DefaultIcon" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplogon.exe&quot;,0</RegValue>
		</Action>
		<Action Dst="HKCR\CLSID\{83658045-6571-3232-7082-797884697869}\LocalServer32" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\Sapgui\saplogon.exe&quot; /Inplace</RegValue>
		</Action>
		<!-- Extra Keys for Exe-Server -->
		<Action Dst="HKLM\SOFTWARE\Classes\Interface\{D9BC3A9C-2275-44F7-AF18-1C3E967CA2D0}" Type="Registry">
			<RegValue>ISapGuiAuto</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\Interface\{D9BC3A9C-2275-44F7-AF18-1C3E967CA2D0}\ProxyStubClsid" Type="Registry">
			<RegValue>{00020420-0000-0000-C000-000000000046}</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\Interface\{D9BC3A9C-2275-44F7-AF18-1C3E967CA2D0}\ProxyStubClsid32" Type="Registry">
			<RegValue>{00020420-0000-0000-C000-000000000046}</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\Interface\{D9BC3A9C-2275-44F7-AF18-1C3E967CA2D0}\TypeLib" Type="Registry">
			<RegValue>{0654CB84-178C-4643-A237-EFBD882653BA}</RegValue>
			<RegValue name="Version">1.0</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\TypeLib\{0654CB84-178C-4643-A237-EFBD882653BA}\1.0" Type="Registry">
			<RegValue>SAPLOGON</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\TypeLib\{0654CB84-178C-4643-A237-EFBD882653BA}\1.0\0\win32" Type="Registry">
			<RegValue>%SapDestDir%\SAPgui\saplogon.exe</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\TypeLib\{0654CB84-178C-4643-A237-EFBD882653BA}\1.0\FLAGS" Type="Registry">
			<RegValue>0</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Classes\TypeLib\{0654CB84-178C-4643-A237-EFBD882653BA}\1.0\HELPDIR" Type="Registry">
			<RegValue>%SapDestDir%\SAPgui</RegValue>
		</Action>
		<Action Dst="HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BLOCK_LMZ_SCRIPT" Type="Registry">
			<RegValue Name="SAPLogon.exe" Type="DWORD">0</RegValue>
		</Action>
	</Component>
	<Component Guid="{66467E17-9309-4965-92C1-AE3B6BCCD5F8}" Min_Compliant_Version="20000" Name="$SAP Logon Desktop Icons and Start Menu Entries" Version="20000">
		<Requires Guid="{597BAB82-701C-4C08-ABDF-F84242B410FA}" Name="$SAP Logon EXE"/>
		<Action Dst="ProgramFiles\SAP Front End\SAP Logon" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\SAPgui\saplogon.exe&quot;</Src>
		</Action>
		<Action Dst="Desktop\SAP Logon" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\SAPgui\saplogon.exe&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{3F61C01F-3797-4d74-BDE6-21073286FFE9}" Min_Compliant_Version="20000" Name="$GUI Scripting Controls" Size="3823" Version="20990">
		<Requires Guid="{4FA50AAA-25C2-4829-B605-D2F2E0FD0401}" Name="$CoreGUI Files"/>
		<Requires Guid="{9EF7439F-8BD6-4E84-9B23-2713401EDA99}" Name="$New Visual Design Extensions"/>
		<Requires Guid="{3E8FAE8C-58D5-44DA-B350-3CF6114097E3}" Name="$GUI Controls"/>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\sapfewse.ocx</Src>
			<Src>%SapSrcDir%\SAPgui\eCATTRH.dll</Src>
		</Action>
		<Action Condition="%WOW64MODE%=false" Dst="%SapFrontEndDir%\SapGui\Scripting" Type="File">
			<Src>%SapSrcDir%\SapGui\Scripting\EAI2DScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\EAI3DScripting.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui\Scripting" Type="File">
			<Src>%SapSrcDir%\SapGui\Scripting\AbapEditorScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\ChartScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\GridViewScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapBarcScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapCalenScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapChartScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapGradpScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapHtmlScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapImageScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapMapScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapNetzScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SAPSDCCScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapSelScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapSplitScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapStageScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\SapToolbScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\TextEditScripting.dll</Src>
			<Src>%SapSrcDir%\SapGui\Scripting\WdtTreeScripting.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SAPgui" Type="File">
			<Src>%SAPsrcDir%\SAPgui\TestFixtures.dll</Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\SAPGUI Front\SAP Frontend Server\Security" Type="Registry">
			<RegValue Name="UserScripting" Type="DWORD">1</RegValue>
		</Action>
		<Action Type="Script">
			<Src><![CDATA[
conKeyDacl     = 0
			conKeyOwner    = 1
			conAccessRead  = &H80000000
			conAccessAll   = &H10000000
			conUsersGrpSid = NwEngine.Shell.GetWellKnownSid (4)
			conAdminGrpSid = NwEngine.Shell.GetWellKnownSid (8)
			conSystemSid   = NwEngine.Shell.GetWellKnownSid (10)
			Dim ACEs(3)
			ACEs(0)        = NwEngine.Shell.CreateAce (conUsersGrpSid, conAccessRead, vbTrue)
			ACEs(1)        = NwEngine.Shell.CreateAce (conAdminGrpSid, conAccessAll,  vbTrue)
			ACEs(2)        = NwEngine.Shell.CreateAce (conSystemSid,   conAccessAll,  vbTrue)
			strKeyAcl      = NwEngine.Shell.CreateAcl (ACEs)
			NwEngine.Shell.SetNamedObjectSecurity "HKLM\SOFTWARE\SAP\SAPGUI Front\SAP Frontend Server\Security", conKeyDacl, strKeyAcl, vbFalse
			NwEngine.Shell.SetNamedObjectSecurity "HKLM\SOFTWARE\SAP\SAPGUI Front\SAP Frontend Server\Security", conKeyOwner, conAdminGrpSid, vbFalse
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{7B6F4DCD-79DC-401a-AE88-A7F225183956}" Min_Compliant_Version="20000" Name="$Gui XT" Size="2640" Version="20030">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\guixt.dll</Src>
			<Src>%SapSrcDir%\SapGui\guixt.exe</Src>
		</Action>
		<Action Dst="HKLM\SOFTWARE\SAP\SAPGUI\Customize" Type="Registry">
			<RegValue Name="GuiXT.IconTipField">0L</RegValue>
			<RegValue Name="GuiXT.IconTipBox">35</RegValue>
			<RegValue Name="GuiXT.StartMinimized" Type="DWORD">1</RegValue>
			<RegValue Name="GuiXT.ComponentGuiXT" Type="DWORD">1</RegValue>
			<RegValue Name="GuiXT.ComponentInputAssistant" Type="DWORD">0</RegValue>
			<RegValue Name="GuiXT.ComponentViewer" Type="DWORD">0</RegValue>
			<RegValue Name="GuiXT.ComponentDesigner" Type="DWORD">0</RegValue>
		</Action>
	</Component>
	<Component Guid="{387D6C6D-236F-4238-8906-6C8AC3384824}" Min_Compliant_Version="20000" Name="$SAPlpd" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.20 C1: Link to SAPlpd not installed anymore!"]]></Src>
		</Action>
	</Component>
	<Component Guid="{12304B5A-A396-472f-A673-C27B00D2315C}" Min_Compliant_Version="20000" Name="$Unicode RFC Libraries" Size="12079" SysSize="5034" Version="20900">
		<Action Dst="%WinSysDir%" Type="File">
			<Src>%SAPSrcDir%\system\Unicode\librfc32u.dll</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\wdtaocxU.ocx</Src>
			<Src>%SapSrcDir%\SapGui\wdtlogU.ocx</Src>
			<Src>%SapSrcDir%\SapGui\wdobapiU.ocx</Src>
			<Src>%SapSrcDir%\SapGui\wdtfuncU.ocx</Src>
		</Action>
	</Component>
	<Component Guid="{9150DEBE-12FC-4818-80CF-71CBFD634E29}" Min_Compliant_Version="20000" Name="$EC-CS: Remote Data Entry" Size="9648" Version="20010">
		<Action Dst="%SapFrontEndDir%\SAPGUI\ECCS" Type="File">
			<Src>%SAPsrcDir%\sapgui\eccs\cs2003_46.mdb</Src>
		</Action>
	</Component>
	<Component Guid="{85FF0B77-9CD6-4214-BCA6-4806306D00AB}" Min_Compliant_Version="20000" Name="$EC-CS: Remote Data Entry Start Menu Entries" Version="20000">
		<Requires Guid="{9150DEBE-12FC-4818-80CF-71CBFD634E29}" Name="$EC-CS: Remote Data Entry"/>
		<Action Dst="ProgramFiles\SAP Front End\R3 Add-On\ECCS - Data Entry" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\sapgui\eccs\cs2003_46.mdb&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{B90423FD-E617-4782-ACB7-BFB6A168D82E}" Min_Compliant_Version="20000" Name="$FI-LC: Remote Data Entry" Size="10068" Version="20010">
		<Action Dst="%SapFrontEndDir%\SAPGUI\FILC" Type="File">
			<Src>%SAPsrcDir%\sapgui\filc\filc2003.mdb</Src>
		</Action>
	</Component>
	<Component Guid="{B412E1E7-4432-4472-A555-20D846D2FFBB}" Min_Compliant_Version="20000" Name="$FI-LC: Remote Data Entry Start Menu Entries" Version="20000">
		<Requires Guid="{B90423FD-E617-4782-ACB7-BFB6A168D82E}" Name="$FI-LC: Remote Data Entry"/>
		<Action Dst="ProgramFiles\SAP Front End\R3 Add-On\FILC - Data Entry" Type="Shortcut">
			<Src>&quot;%SapFrontEndDir%\sapgui\filc\filc2003.mdb&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{82930AE4-5441-446c-8F6E-CB86F3D3D51E}" Min_Compliant_Version="20000" Name="$Interactive Excel" Size="6234" Version="20010">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.10 PL 12: Obsolete files msrepl35.dll, Vb5db.dll, Vbar332.dll, vrfc32.dll not installed anymore!"]]></Src>
		</Action>
		<Action Dst="%CommonProgramFiles%\SAP Shared" Type="File">
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\DigitalSignature.ocx</Src>
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\SAPActiveXL.xlt</Src>
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\SAPActiveXL_nosig.xlt</Src>
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\sapconsaccess.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\sapconsr3.dll</Src>
			<Src>%SAPsrcDir%\SAPgui\InterActiveXL\sapxlhelper.dll</Src>
		</Action>
	</Component>
	<Component Guid="{DEAACE0C-BE11-4798-8FCF-A015330C0C7A}" Min_Compliant_Version="20000" Name="$Interactive Excel Start Menu Entries" Version="20000">
		<Requires Guid="{82930AE4-5441-446c-8F6E-CB86F3D3D51E}" Name="$Interactive Excel"/>
		<Action Dst="ProgramFiles\SAP Front End\SAP Interactive Excel" Type="Shortcut">
			<Src>&quot;%CommonProgramFiles%\SAP Shared\SAPActiveXL.xlt&quot;</Src>
		</Action>
	</Component>
	<Component Guid="{05D5B09F-B401-406c-9F9D-DC86D77A802E}" Min_Compliant_Version="20000" Name="$EC-EIS: MS Word Link" Size="387" Version="20010">
		<Action Dst="%SapFrontEndDir%\sapgui\EIS" Type="File">
			<Src>%SAPsrcDir%\sapgui\eis\read_eng.txt</Src>
			<Src>%SAPsrcDir%\sapgui\eis\read_me.txt</Src>
			<Src>%SAPsrcDir%\sapgui\eis\sap_rep.dot</Src>
			<Src>%SAPsrcDir%\sapgui\eis\sap_rep7.dot</Src>
			<Src>%SAPsrcDir%\sapgui\eis\sap_rep8.dot</Src>
		</Action>
	</Component>
	<Component Guid="{BB87C1E1-DB57-4507-8E35-75E28DE5E9D1}" Min_Compliant_Version="20000" Name="$PD: MS Excel Link" Size="648" Version="20010">
		<Action Dst="%SapFrontEndDir%\sapgui" Type="File">
			<Src>%SAPsrcDir%\sapgui\wdpddm_e.doc</Src>
			<Src>%SAPsrcDir%\sapgui\wdpddmac.doc</Src>
			<Src>%SAPsrcDir%\sapgui\wdpddmac.ver</Src>
			<Src>%SAPsrcDir%\sapgui\wdpddmac.xls</Src>
		</Action>
	</Component>
	<Component Guid="{74D8FEAD-68D7-4fbc-A758-2C2BBBAB4658}" Min_Compliant_Version="20000" Name="$WWI Files" Size="6748" Version="20030">
		<Action Type="Script">
			<Src><![CDATA[
NwEngine.Variables.InsertVariable "SkipWWI", "FALSE"
				If NwEngine.Shell.RegKeyExist("HKCR\WWIDOCUMENT\InstallDir") Then
					strWWIDestDir = NwEngine.Shell.GetRegValue( "HKCR\WWIDOCUMENT\InstallDir\" )
					iPos = InStr(1, strWWIDestDir, "sapgui\wwi", vbTextCompare )
					If Not (iPos > 0) Then
						NwEngine.Context.Log.WriteWarning "WWI is already installed into the directory '" & strWWIDestDir & "'. Skip all actions of this component!"
						NwEngine.Variables.InsertVariable "SkipWWI", "TRUE"
						NwEngine.Variables.Persistent("SkipWWI") = vbFalse
					End If
				End If
			]]></Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.RegKeyExist("HKCR\WWIDOCUMENT\ExecPath") Then
				NwEngine.Shell.DeleteRegKey "HKCR\WWIDOCUMENT\ExecPath"
			End If
			]]></Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\wwires32.dll</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiehs.dll</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwi.dll</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwilabel.exe</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiexe32.exe</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiinfo.exe</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwidispl.dot</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwi.dot</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwilab_e.nls</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwilab_d.nls</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi\lang" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\lang\english.nls</Src>
			<Src>%SapSrcDir%\sapgui\wwi\lang\deutsch.nls</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi.ini" ) Then
				NwEngine.Shell.CopyFile "%SapFrontEndDir%\sapgui\wwi\wwi.ini", "%SapFrontEndDir%\sapgui\wwi\wwi.ini.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwilabel.ini" ) Then
				NwEngine.Shell.CopyFile "%SapFrontEndDir%\sapgui\wwi\wwilabel.ini", "%SapFrontEndDir%\sapgui\wwi\wwilabel.ini.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi_user.lbl" ) Then
				NwEngine.Shell.CopyFile "%SapFrontEndDir%\sapgui\wwi\wwi_user.lbl", "%SapFrontEndDir%\sapgui\wwi\wwi_user.lbl.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi_all.lbl" ) Then
				NwEngine.Shell.CopyFile "%SapFrontEndDir%\sapgui\wwi\wwi_all.lbl", "%SapFrontEndDir%\sapgui\wwi\wwi_all.lbl.bak"
			End If
			]]></Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" RunAt="UnInstall" Type="Script">
			<Src><![CDATA[
If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi.ini.bak" ) Then
				NwEngine.Shell.DeleteFile "%SapFrontEndDir%\sapgui\wwi\wwi.ini.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwilabel.ini.bak" ) Then
				NwEngine.Shell.DeleteFile "%SapFrontEndDir%\sapgui\wwi\wwilabel.ini.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi_user.lbl.bak" ) Then
				NwEngine.Shell.DeleteFile "%SapFrontEndDir%\sapgui\wwi\wwi_user.lbl.bak"
			End If
			If NwEngine.Shell.FileExist( "%SapFrontEndDir%\sapgui\wwi\wwi_all.lbl.bak" ) Then
				NwEngine.Shell.DeleteFile "%SapFrontEndDir%\sapgui\wwi\wwi_all.lbl.bak"
			End If
			]]></Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\wwi.ini</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwilabel.ini</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwi_user.lbl</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwi_all.lbl</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi\graphics" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_acid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_bottle.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_exclam.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_explos.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_flamme.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_pollut.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_rondflam.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_silhouet.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GHS_skull.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_C.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_E.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_F.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_N.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_O.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_T.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\GS_X.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\P_fire.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\P_meal.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\P_phone.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\P_smoke.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\P_water.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_attent.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_bridge.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_earpro.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_gloves.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_goggle.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_helmet.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_mask.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_powerp.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_shield.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_shoes.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_suit.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\R_switch.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\S_1aid.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\S_doc.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\S_emshow.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\S_eyesho.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_asbest.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_bio.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_cautio.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_corros.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_elmag.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_exair.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_explos.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_fire.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_harm.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_oxidiz.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_radioa.bmp</Src>
			<Src>%SapSrcDir%\sapgui\wwi\graphics\W_tox.bmp</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi\wwi.ini" Type="Ini">
			<IniSection Name="PATHS">
				<IniKey Name="GUI-HOME">%SapFrontEndDir%\sapgui\WWI</IniKey>
			</IniSection>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\.wwi" Type="Registry">
			<RegValue>WWIDOCUMENT</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT" Type="Registry">
			<RegValue>WWI Document</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\CurSP" Type="Registry">
			<RegValue>0302001</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\CurVer" Type="Registry">
			<RegValue>2.7b</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\InstallDir" Type="Registry">
			<RegValue>%SapFrontEndDir%\sapgui\wwi</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\Program" Type="Registry">
			<RegValue>%SapFrontEndDir%\sapgui\wwi\WWIEXE32.EXE</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" RunAt="Install" Type="Script">
			<Src><![CDATA[
dim TV1winword
			TV1winword = ""
			If NwEngine.Shell.RegKeyExist("HKCR\Word.Document.8\shell\open\command") Then
				TV1winword = NwEngine.Shell.GetRegValue( "HKCR\Word.Document.8\shell\open\command\" )
			End If
			If TV1winword = "" Then
				NwEngine.Context.Log.WriteWarning "Path to WinWord.Exe could not be read from HKCR\Word.Document.8\shell\open\command : default !"
			End If
			NWEngine.Variables.InsertVariable "WinWordExe", TV1winword
			]]></Src>
		</Action>
		<Action Condition="(%WinWordExist%=YES)&amp;(%SkipWWI%=FALSE)" Dst="HKCR\WWIDOCUMENT\shell\open\command" Type="Registry">
			<RegValue>%WinWordExe%</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\shell\open\ddeexec" Type="Registry">
			<RegValue>[FileOpen(&quot;%%1&quot;)][FileTemplates Template:=&quot;%SapFrontEndDir%\sapgui\wwi\wwi.dot&quot;][wwiES.S(&quot;%%2&quot;, &quot;%%3&quot;)]</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\shell\open\IniPath" Type="Registry">
			<RegValue>%SapFrontEndDir%\sapgui\wwi</RegValue>
			<RegValue Name="WWILabelPath">%SapFrontEndDir%\sapgui\wwi</RegValue>
		</Action>
		<Action Condition="(%WinWordExist%=YES)&amp;(%SkipWWI%=FALSE)" Dst="HKCR\WWIDOCUMENT\shell\open\DisplayExt" Type="Registry">
			<RegValue>WWI</RegValue>
		</Action>
		<Action Condition="(%WinWordExist%&lt;&gt;YES)&amp;(%SkipWWI%=FALSE)" Dst="HKCR\WWIDOCUMENT\shell\open\DisplayExt" Type="Registry">
			<RegValue>RTF</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\WWIDOCUMENT\shell\open\template" Type="Registry">
			<RegValue>%SapFrontEndDir%\sapgui\wwi\layout\WWITEMPL.DOC</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\WwiInPhr.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiCdGrp.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiInSym.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiRpGrp.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiWzGrp.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiWzPhr.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwiWzSym.dlg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\wwirun.exe</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi\layout" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\layout\WWITEMPL.DOC</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\wwilayt.dot</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi\Wizard" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\Wizard\1.jpg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\Wizard\2.jpg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\Wizard\3.jpg</Src>
			<Src>%SapSrcDir%\sapgui\wwi\Wizard\4.jpg</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="%SapFrontEndDir%\sapgui\wwi" Type="File">
			<Src>%SapSrcDir%\sapgui\wwi\glmPT.exe</Src>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\.lpf" Type="Registry">
			<RegValue>GLM_Print_Tool</RegValue>
			<RegValue Name="Content Type">application/glmPT</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\GLM_Print_Tool" Type="Registry">
			<RegValue>Global Labeling Management Print File</RegValue>
			<RegValue Name="AlwaysShowExt"/>
			<RegValue Name="EditFlags" Type="Binary">00000100</RegValue>
			<RegValue Name="Clientname">CLIENTNAME</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\GLM_Print_Tool\DefaultIcon" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\wwi\glmPT.exe&quot;,0</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\GLM_Print_Tool\shell" Type="Registry">
			<RegValue>open</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\GLM_Print_Tool\shell\open\command" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\wwi\glmPT.exe&quot; &quot;%1&quot;</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\Applications\glmPT.exe\shell" Type="Registry">
			<RegValue>open</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\Applications\glmPT.exe\shell\open\command" Type="Registry">
			<RegValue>&quot;%SapFrontEndDir%\sapgui\wwi\glmPT.exe&quot; &quot;%1&quot;</RegValue>
		</Action>
		<Action Condition="%SkipWWI%=FALSE" Dst="HKCR\MIME\Database\Content Type\application/glmPT" Type="Registry">
			<RegValue Name="Extension">.lpf</RegValue>
		</Action>
	</Component>
	<Component Guid="{7736EFB1-4E4C-4c78-8B4C-41BE3F3BEF46}" Min_Compliant_Version="20000" Name="$CalSync" Size="2052" Version="20910">
		<Action Dst="%SapFrontEndDir%\sapgui\calsync\bin" Type="File">
			<Src>%SapSrcDir%\Sapgui\calsync\bin\calsync.avi</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\calsyncd.htm</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\calsynce.htm</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image649.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image661.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image663.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image665.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image672.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image673.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image674.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\image675.gif</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\sapcalex.ecf</Src>
			<Src>%SapSrcDir%\Sapgui\calsync\bin\wdkSyCl.exe</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\calsync\bin\sapcalex.ecf" Type="Ini">
			<IniSection Name="General">
				<IniKey Name="Path">&quot;%SapFrontEndDir%\SapGui\wdkcalex.dll&quot;</IniKey>
			</IniSection>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\wdkcalex.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkCBase.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkCFile.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkcol.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkCR3.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkICCon.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkSyCM.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkSyPro.dll</Src>
			<Src>%SapSrcDir%\SapGui\wdkSySrv.dll</Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
szKeyValue = "HKLM\SOFTWARE\Microsoft\Exchange\Client\Extensions\Outlook Setup Extension"
			NwEngine.Context.Log.Write "Script : Reset registry key during install: " & szKeyValue
			szKeyData  = "4.0;Outxxx.dll;7;00000000000000;0000000;OutXXX."
			If Not NwEngine.Shell.SetRegValue( szKeyValue, "REG_SZ", szKeyData ) Then
				Engine.Context.Log.WriteWarning "Script : Failed to reset " & szKeyValue
			End If
			]]></Src>
		</Action>
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[
NwEngine.Context.Log.Write "Script: Read MS Office InstallPath from the registry during install: "
			szMsOfficeDir = ""
			If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\12.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\12.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\11.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\11.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\10.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\10.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\9.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\9.0\Outlook\InstallRoot\Path")
			Else
				If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\8.0") Then
					szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\8.0\BinDirPath")
				End If
			End If
			NwEngine.Context.Log.Write "Script: szMsOfficeDir = " & szMsOfficeDir
			If szMsOfficeDir <> "" Then
				szOfficeEcf = szMsOfficeDir & "\Addins\DLGSETP.ECF"
				If NwEngine.Shell.FileExist( szOfficeEcf ) Then
					szCopyOfSapCalexEcf = szMsOfficeDir & "\addins\sapcalex.ecf"
					NwEngine.Shell.CopyFile "%SapFrontEndDir%\sapgui\calsync\bin\sapcalex.ecf", szCopyOfSapCalexEcf
				Else
					NwEngine.Context.Log.WriteWarning "Script: File not found!" & szOfficeEcf
				End If
			Else
				NwEngine.Context.Log.WriteWarning "Script: szMsOfficeDir is empty!"
			End If
			]]></Src>
		</Action>
		<Action RunAt="UnInstall" Type="Script">
			<Src><![CDATA[
szKeyValue = "HKLM\SOFTWARE\Microsoft\Exchange\Client\Extensions\Outlook Setup Extension"
			NwEngine.Context.Log.Write "Script : Reset registry key during uninstall: " & szKeyValue
			szKeyData  = "4.0;Outxxx.dll;7;00000000000000;0000000;OutXXX."
			If Not NwEngine.Shell.SetRegValue( szKeyValue, "REG_SZ", szKeyData ) Then
				Engine.Context.Log.WriteWarning "Script : Failed to reset " & szKeyValue
			End If
			]]></Src>
		</Action>
		<Action RunAt="UnInstall" Type="Script">
			<Src><![CDATA[
NwEngine.Context.Log.Write "Script Action: Cleaning step"
			If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\12.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\12.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\11.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\11.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\10.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\10.0\Outlook\InstallRoot\Path")
			ElseIf NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\9.0\Outlook\InstallRoot") Then
				szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\9.0\Outlook\InstallRoot\Path")
			Else
				If NwEngine.Shell.RegKeyExist("HKLM\SOFTWARE\Microsoft\Office\8.0") Then
					szMsOfficeDir = NwEngine.Shell.GetRegValue ("HKLM\SOFTWARE\Microsoft\Office\8.0\BinDirPath")
				End If
			End If
			If szMsOfficeDir <> "" Then
				szSAPCalexEcf = szMsOfficeDir & "\AddIns\sapcalex.ecf"
				If NwEngine.Shell.FileExist( szSAPCalexEcf ) Then
					NwEngine.Context.Log.Write "Script Action: Deleting file " & szSAPCalexEcf
					NwEngine.Shell.DeleteFile szSAPCalexEcf
				End If
			End If
			]]></Src>
		</Action>
	</Component>
	<Component Guid="{52D10F6C-F5FD-48c5-8D32-1931FB941C75}" Min_Compliant_Version="20000" Name="$Graphical Distribution Network" Size="1796" Version="20010">
		<Action Dst="%SapFrontEndDir%\sapgui\gmd\maps" Type="File">
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\AUSTRALA.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\EUROPE.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\FRANCE.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\GERMANY.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\ITALY.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\SPAIN.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\UKMAP.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA1.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA11.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA12.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA4.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA5.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\USA6.EMF</Src>
			<Src>%SAPsrcDir%\sapgui\GMD\MAPS\WORLD.EMF</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\sapgui\gmd" Type="File">
			<Src>%SAPsrcDir%\sapgui\gmd\DRPNET.exe</Src>
		</Action>
	</Component>
	<Component Guid="{71792B1A-E97D-4d5d-B3AE-32C245D630EE}" Min_Compliant_Version="20000" Name="$GIS Viewer" Size="944" Version="20030">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapmap.ocx</Src>
		</Action>
	</Component>
	<Component Guid="{79E5B7E3-B62E-4643-A519-8A9670D75674}" Min_Compliant_Version="20000" Name="$Stage Control" Size="144" Version="20030">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\sapstage.ocx</Src>
		</Action>
	</Component>
	<Component Guid="{F87FF52D-5D62-4035-97E0-D083935DD96F}" Min_Compliant_Version="20000" Name="$CRM DLL" Size="171" Version="20010">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\SAPgplmp.dll</Src>
		</Action>
	</Component>
	<Component Guid="{23B2DA68-7F1B-4ecc-BAE8-84C9B361C27F}" Min_Compliant_Version="20000" Name="$SCM" Size="1054" Version="20030">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SAPSrcDir%\SapGui\apogrid.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\apodpgrid.ocx</Src>
			<Src>%SAPSrcDir%\SapGui\apoviewer.ocx</Src>
		</Action>
		<Action Dst="%SapFrontEndDir%\SapGui\Scripting" Type="File">
			<Src>%SapSrcDir%\SapGui\Scripting\ApoGridScripting.dll</Src>
		</Action>
	</Component>
	<Component Guid="{4D36A368-CFB5-45c4-9529-A338FD75E50F}" Min_Compliant_Version="20000" Name="$SEM GA Controls" Size="1789" Version="20620">
		<Action Dst="%SapFrontEndDir%\SapGui" Type="File">
			<Src>%SapSrcDir%\SapGui\PsDebug.dll</Src>
			<Src>%SapSrcDir%\SapGui\PsErrorDbg.dll</Src>
			<Src>%SapSrcDir%\SapGui\AssignmentCtrl.dll</Src>
		</Action>
	</Component>
	<Component Guid="{9554FF96-7639-40ce-ADCB-D36C3D1F254C}" Min_Compliant_Version="20000" Name="$SEM Sales Planning" Version="20000"/>
	<Component Guid="{75260F0A-3B23-4142-87D5-12945E55DBD3}" Min_Compliant_Version="20000" Name="$MS Word Link via RFC" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.30: Obsolete $MS Word Link via RFC 'wswinsrv.exe' and related files not installed anymore!"]]></Src>
		</Action>
	</Component>
	<Component Guid="{C86005A4-A3DD-4277-9354-1DD84D567E50}" Min_Compliant_Version="20000" Name="$Report Writer: MS Excel Link" Size="81" Version="20010">
		<Action Dst="%SapFrontEndDir%\sapgui\RW" Type="File">
			<Src>%SapSrcDir%\sapgui\RW\EXAMPLE.RPW</Src>
		</Action>
		<Action Condition="(%User_UI_LangId%&lt;&gt;DE)&amp;(%User_UI_LangId%&lt;&gt;JA)" Dst="%SapFrontEndDir%\sapgui\RW" Type="File">
			<Src>%SapSrcDir%\sapgui\rw\EN\sap_rpw.xla</Src>
		</Action>
		<Action Condition="%User_UI_LangId%=DE" Dst="%SapFrontEndDir%\sapgui\RW" Type="File">
			<Src>%SapSrcDir%\sapgui\rw\DE\sap_rpw.xla</Src>
		</Action>
		<Action Condition="%User_UI_LangId%=JA" Dst="%SapFrontEndDir%\sapgui\RW" Type="File">
			<Src>%SapSrcDir%\sapgui\rw\JA\sap_rpw.xla</Src>
		</Action>
	</Component>
	<Component Guid="{EC9CA316-4FAB-41ca-9049-605CA86A626D}" Min_Compliant_Version="20000" Name="$TweakGui" Size="0" Version="20000">
		<Action RunAt="Install" Type="Script">
			<Src><![CDATA[NwEngine.Context.Log.Write "Script-Action: From 7.20 C1: Tweak SAP GUI not installed anymore!"]]></Src>
		</Action>
	</Component>
</SapSetup>
