<?xml version="1.0" encoding="UTF-8"?><policy>
	<rule>
		<description>On Termination, disable user and move to Disabled container</description>
		<conditions>
			<and>
				<if-operation op="equal">modify</if-operation>
				<if-class-name op="equal">User</if-class-name>
				<if-op-attr mode="regex" name="Description" op="equal">^terminated.*</if-op-attr>
			</and>
		</conditions>
		<actions>
			<do-set-dest-attr-value direct="true" name="Login Disabled">
				<arg-value type="string">
					<token-text xml:space="preserve">True</token-text>
				</arg-value>
			</do-set-dest-attr-value>
			<do-move-dest-object when="after">
				<arg-dn>
					<token-text xml:space="preserve">Users\Disabled</token-text>
				</arg-dn>
			</do-move-dest-object>
		</actions>
	</rule>
</policy>
