Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

adamsync against users and groups

633 views
Skip to first unread message

daulphin

unread,
Aug 6, 2009, 3:10:46 PM8/6/09
to
Curious, how are some of you guys syncing ADAM against AD for users
while getting their group memberships. I'm working under this idea.
i'm trynig to achieve the following: sync only user objects and groups
along with memberships.

The problem i'm finding is that to achieve this is a two step process,
sync user objects, then sync groups. I have two seperate configs for
this, but I can only have one config loaded at a time as they both are
aiming at the same AD root.

Thoughs? I've searched and can't seem to find a solution. Much help
appreciated.

Thanks.

Garry Starck-MCITP Enterprise Admin

unread,
Aug 9, 2009, 10:43:01 AM8/9/09
to
Hi Daulphin

PS: Another link at the end of my message for MIIS/Group management exists

http://support.microsoft.com/kb/840001 Will explain forward and backlink
attributes in AD (ADAM is also an AD ESE storage database with same
constraints).

A User object is a has a backlink to the memberof attribute. The group on
the other hand as a forwardlink to the members attribute. Each DC is
responsible for maintaining their own backlinks, (They are not replicated
values, they are generated by the creation of the forward link). This is why
when a user is deleted, and was a member of a group/groups, then 1 restore is
needed to recover the user object, then (the require reboot), then another
restore of groups to recreate the forward link to replicate out to all dc's
to recreate their backlinks. (New ways exist since SP1 for Win2003 AD via
scripting backlinks with ntdsutil, to use with LDIFDE), but the same
underlying principal exists. ADAM will also require the security principals
IE Users, before groups.

Maybe have a read on MIIS automated group management (Group populator) ways
at http://207.46.16.252/en-us/magazine/2006.07.automate.aspx

Most of all, advise if I understood you incorrectly


--
Garry Starck
MCITP Enterprise Administrator, MCTS AD, MCSE 2003 Messaging, MCDBA

Lee Flight

unread,
Aug 10, 2009, 5:42:46 AM8/10/09
to
Hi,

what object-filter elements do you have in your ADAMSync XML configuration
files?

Thanks
Lee Flight

"daulphin" <aristide...@gmail.com> wrote in message
news:8f05f18e-7e45-4dca...@j21g2000vbn.googlegroups.com...

daulphin

unread,
Sep 22, 2009, 4:27:34 PM9/22/09
to
Sorry didn't get back to you sooner, been tied up. Below you'll find
my config. I had previously tried to do a full sync of the domain but
got errors related when it tried to sync krbtgt and barked about
builtin objects. I got around this by creating a more focused filter
so as to exclude builtin objects like krbtgt. Let me know if there's a
better way to do this. Either way, currently, if i try to do get group
memberships into Adam it's two step process where i have to get all
the users synced first, then i have to swap the configs and sync the
groups. It's really annoying. Why couldn't I just have both configs
loaded and running. You'll find my two xml files below.

Here's my xml file to sync users

------------------------------------------------

<?xml version="1.0"?>
<doc>
<configuration>
<description>user-config</description>
<security-mode>object</security-mode>
<source-ad-name>*domain*</source-ad-name>
<source-ad-partition>dc=****,dc=***</source-ad-partition>
<source-ad-account>*accountname*</source-ad-account>
<account-domain>*domain*</account-domain>
<target-dn>dc=****,dc=****</target-dn>
<query>
<base-dn>dc=****,dc=****</base-dn>
<object-filter>(&amp;(objectCategory=person)(memberOf=CN=Exchange
Users,OU=Distribution,OU=Groups,DC=*****,DC=*****))</object-filter>
<attributes>
<include>objectSID</include>
<include>sourceObjectGuid</include>
<include>displayName</include>
<include>company</include>
<include>givenName</include>
<include>member</include>
<include>memberOf</include>
<include>sAMAccountName</include>
<include>primaryGroupID</include>
<include>department</include>
<include>sn</include>
<include>givenName</include>
<include>l</include>
<include>telephoneNumber</include>
<include>mail</include>
<include>title</include>
<!-- <include>userPrincipalName</include> -->
<include>postalcode</include>
<include>st</include>
<include>streetAddress</include>
<include>extensionAttribute2</include>
<include>cn</include>

<exclude></exclude>
</attributes>
</query>
<user-proxy>
<source-object-class>user</source-object-class>
<target-object-class>userProxy</target-object-class>
</user-proxy>
<schedule>
<aging>
<frequency>2</frequency>
<num-objects>0</num-objects>
</aging>
<schtasks-cmd></schtasks-cmd>
</schedule>
</configuration>
<synchronizer-state>
<dirsync-cookie></dirsync-cookie>
<status></status>
<authoritative-adam-instance></authoritative-adam-instance>
<configuration-file-guid></configuration-file-guid>
<last-sync-attempt-time></last-sync-attempt-time>
<last-sync-success-time></last-sync-success-time>
<last-sync-error-time></last-sync-error-time>
<last-sync-error-string></last-sync-error-string>
<consecutive-sync-failures></consecutive-sync-failures>
<user-credentials></user-credentials>
<runs-since-last-object-update></runs-since-last-object-update>
<runs-since-last-full-sync></runs-since-last-full-sync>
</synchronizer-state>
</doc>

-------------------------------------

Here's the other xml that i use to sync groups. For the most part it's
a copy of the above config.

-----------------------------------------

<?xml version="1.0"?>
<doc>
<configuration>
<description>group-config</description>
<security-mode>object</security-mode>
<source-ad-name>*domain*</source-ad-name>
<source-ad-partition>dc=****,dc=****</source-ad-partition>
<source-ad-account>*syncaccount*</source-ad-account>
<account-domain>*domain*</account-domain>
<target-dn>ou=groups,dc=****,dc=****</target-dn>
<query>
<base-dn>ou=groups,dc=****,dc=****</base-dn>
<object-filter>(objectCategory=group)</object-filter>
<attributes>
<include>objectSID</include>
<include>sourceObjectGuid</include>
<include>displayName</include>
<include>grouptype</include>
<include>name</include>
<include>member</include>
<include>sAMAccountName</include>
<include>primaryGroupID</include>
<include>instancetype</include>
<include>objectCategory</include>
<include>objectclass</include>
<include>title</include>
<include>userPrincipalName</include>
<include>sAMAccountType</include>
<include>st</include>
<include>streetAddress</include>
<include>extensionAttribute2</include>
<include>cn</include>
<include>primaryGroupToken</include>
<include>description</include>
<exclude></exclude>
</attributes>
</query>
<schedule>
<aging>
<frequency>2</frequency>
<num-objects>0</num-objects>
</aging>
<schtasks-cmd></schtasks-cmd>
</schedule>
</configuration>
<synchronizer-state>
<dirsync-cookie></dirsync-cookie>
<status></status>
<authoritative-adam-instance></authoritative-adam-instance>
<configuration-file-guid></configuration-file-guid>
<last-sync-attempt-time></last-sync-attempt-time>
<last-sync-success-time></last-sync-success-time>
<last-sync-error-time></last-sync-error-time>
<last-sync-error-string></last-sync-error-string>
<consecutive-sync-failures></consecutive-sync-failures>
<user-credentials></user-credentials>
<runs-since-last-object-update></runs-since-last-object-update>
<runs-since-last-full-sync></runs-since-last-full-sync>
</synchronizer-state>
</doc>

-----------------------

Thanks much

Lee Flight

unread,
Sep 24, 2009, 1:06:52 PM9/24/09
to
Hi

so you are actually doing a transform to userProxy rather than just sync'ing
users...
and you also want to sync group membership. You could try:

using ADSchemaanalyzer tool [1] to export your AD schema
for synchronization with ADAM. So,
--
Install a clean ADAM instance and create the naming context that you want in
it,
do not apply any LDIFs

Run ADSchemaAnalyzer load the AD schema from a DC
as the *target*, load the (minimal) ADAM schema as the base. Then check
the "Mark all non-present elements as included" menu option and then
"Create LDIF File...".

Load the LDIF just created into the ADAM Schema

Load MS-AdamSyncMetadata.LDF into the ADAM schema
--

In your XML configuration try

<object-filter>(&#124;(objectCategory=person)(objectCategory=group))</object-filter>for your object filter and have an include entities of just<include>objectSID</include><include>member</include>and specifying the other elements as before.Then /install your XML configuration file and try a /syncLee Flight[1]http://technet.microsoft.com/en-us/library/cc755803(WS.10).aspx"daulphin" <aristide...@gmail.com> wrote in messagenews:9dbd2af5-90e4-406d...@33g2000vbe.googlegroups.com...> Sorry didn't get back to you sooner, been tied up. Below you'll find> my config. I had previously tried to do a full sync of the domain but> got errors related when it tried to sync krbtgt and barked about> builtin objects. I got around this by creating a more focused filter> so as to exclude builtin objects like krbtgt. Let me know if there's a> better way to do this. Either way, currently, if i try to do get group> memberships into Adam it's two step process where i have to get all> the users synced first, then i have to swap the configs and sync the> groups. It's really annoying. Why couldn't I just have both configs> loaded and running. You'll find my two xml files below.>> Here's my xml file to sync users>> ------------------------------------------------>> <?xml version="1.0"?>> <doc>> <configuration>> <description>user-config</description>> <security-mode>object</security-mode>> <source-ad-name>*domain*</source-ad-name>> <source-ad-partition>dc=****,dc=***</source-ad-partition>> <source-ad-account>*accountname*</source-ad-account>> <account-domain>*domain*</account-domain>> <target-dn>dc=****,dc=****</target-dn>> <query>> <base-dn>dc=****,dc=****</base-dn>> <object-filter>(&amp;(objectCategory=person)(memberOf=CN=Exchange> Users,OU=Distribution,OU=Groups,DC=*****,DC=*****))</object-filter>> <attributes>> <include>objectSID</include>> <include>sourceObjectGuid</include>> <include>displayName</include>> <include>company</include>> <include>givenName</include>> <include>member</include>> <include>memberOf</include>> <include>sAMAccountName</include>> <include>primaryGroupID</include>> <include>department</include>> <include>sn</include>> <include>givenName</include>> <include>l</include>> <include>telephoneNumber</include>> <include>mail</include>> <include>title</include>> <!-- <include>userPrincipalName</include> -->> <include>postalcode</include>> <include>st</include>> <include>streetAddress</include>> <include>extensionAttribute2</include>> <include>cn</include>>> <exclude></exclude>> </attributes>> </query>> <user-proxy>> <source-object-class>user</source-object-class>> <target-object-class>userProxy</target-object-class>> </user-proxy>> <schedule>> <aging>> <frequency>2</frequency>> <num-objects>0</num-objects>> </aging>> <schtasks-cmd></schtasks-cmd>> </schedule>> </configuration>> <synchronizer-state>> <dirsync-cookie></dirsync-cookie>> <status></status>> <authoritative-adam-instance></authoritative-adam-instance>> <configuration-file-guid></configuration-file-guid>> <last-sync-attempt-time></last-sync-attempt-time>> <last-sync-success-time></last-sync-success-time>> <last-sync-error-time></last-sync-error-time>> <last-sync-error-string></last-sync-error-string>> <consecutive-sync-failures></consecutive-sync-failures>> <user-credentials></user-credentials>> <runs-since-last-object-update></runs-since-last-object-update>> <runs-since-last-full-sync></runs-since-last-full-sync>> </synchronizer-state>> </doc>>> ------------------------------------->> Here's the other xml that i use to sync groups. For the most part it's> a copy of the above config.>> ----------------------------------------->> <?xml version="1.0"?>> <doc>> <configuration>> <description>group-config</description>> <security-mode>object</security-mode>> <source-ad-name>*domain*</source-ad-name>> <source-ad-partition>dc=****,dc=****</source-ad-partition>> <source-ad-account>*syncaccount*</source-ad-account>> <account-domain>*domain*</account-domain>> <target-dn>ou=groups,dc=****,dc=****</target-dn>> <query>> <base-dn>ou=groups,dc=****,dc=****</base-dn>> <object-filter>(objectCategory=group)</object-filter>> <attributes>> <include>objectSID</include>> <include>sourceObjectGuid</include>> <include>displayName</include>> <include>grouptype</include>> <include>name</include>> <include>member</include>> <include>sAMAccountName</include>> <include>primaryGroupID</include>> <include>instancetype</include>> <include>objectCategory</include>> <include>objectclass</include>> <include>title</include>> <include>userPrincipalName</include>> <include>sAMAccountType</include>> <include>st</include>> <include>streetAddress</include>> <include>extensionAttribute2</include>> <include>cn</include>> <include>primaryGroupToken</include>> <include>description</include>> <exclude></exclude>> </attributes>> </query>> <schedule>> <aging>> <frequency>2</frequency>> <num-objects>0</num-objects>> </aging>> <schtasks-cmd></schtasks-cmd>> </schedule>> </configuration>> <synchronizer-state>> <dirsync-cookie></dirsync-cookie>> <status></status>> <authoritative-adam-instance></authoritative-adam-instance>> <configuration-file-guid></configuration-file-guid>> <last-sync-attempt-time></last-sync-attempt-time>> <last-sync-success-time></last-sync-success-time>> <last-sync-error-time></last-sync-error-time>> <last-sync-error-string></last-sync-error-string>> <consecutive-sync-failures></consecutive-sync-failures>> <user-credentials></user-credentials>> <runs-since-last-object-update></runs-since-last-object-update>> <runs-since-last-full-sync></runs-since-last-full-sync>> </synchronizer-state>> </doc>>> ----------------------->> Thanks much

Lee Flight

unread,
Sep 24, 2009, 1:52:16 PM9/24/09
to

Sorry for the formatting in my last post, the final bit should have been:

Lee Flight

unread,
Sep 24, 2009, 2:04:16 PM9/24/09
to
Sorry for the formatting in my last post, the final bit should have been:

In your XML configuration try

==

<object-filter>(&#124;(objectCategory=person)(objectCategory=group))</object-filter>==for your object filter and have an include entities of just==<include>objectSID</include><include>member</include>==and specifying the other elements as before.Then /install your XMLconfiguration file and try a /syncLee Flight

Mehmet Ali SAHIN

unread,
Sep 9, 2022, 11:11:35 AM9/9/22
to
24 Eylül 2009 Perşembe tarihinde saat 21:04:16 UTC+3 itibarıyla Lee Flight şunları yazdı:
https://advtest.exibart.com/adv/adv.php?id_banner=7201&link=https://excelturkiye.com/microsoft-excel/
http://www.themza.com/redirect.php?r=//excelturkiye.com/microsoft-excel/
http://www.china-lottery.net/Login/logout?return=https://excelturkiye.com/microsoft-excel/
http://r.ypcdn.com/1/c/rtd?dest=https://excelturkiye.com/microsoft-excel/
http://takesato.org/~php/jisaba_link/rank.php?url=https://excelturkiye.com/microsoft-excel/
http://go.gomtv.com/rd?link_id=10805&send=https://excelturkiye.com/microsoft-excel/
https://forum.everleap.com/proxy.php?link=https://excelturkiye.com/microsoft-excel/
http://canuckstuff.com/store/trigger.php?r_link=https://excelturkiye.com/microsoft-excel/
http://gosudar.com.ru/go.php?url=https://excelturkiye.com/microsoft-excel/
http://centroarts.com/go.php?https://excelturkiye.com/microsoft-excel/
https://doterra.myvoffice.com/Application/index.cfm?ReturnUrl=https://excelturkiye.com/microsoft-excel/
http://taca.siam2web.com/change_language.asp?link=https://excelturkiye.com/microsoft-excel/
https://noumea.urbeez.com/bdd_connexion_msgpb.php?url=https://excelturkiye.com/microsoft-excel/
http://www.sdam-snimu.ru/redirect.php?url=https://excelturkiye.com/microsoft-excel/
https://www.avtoprozvon.ru/bitrix/redirect.php?event1=click&goto=https://excelturkiye.com/microsoft-excel/
http://m.shopintucson.com/redirect.aspx?url=https://excelturkiye.com/microsoft-excel/
https://dms.netmng.com/si/cm/tracking/clickredirect.aspx?siclientId=2877&redirectUrl=https://excelturkiye.com/microsoft-excel/
http://baldi-srl.it/changelanguage/1?returnurl=https://excelturkiye.com/microsoft-excel/
http://click.app4mobile-services.biz/storelink/?url=https://excelturkiye.com/microsoft-excel/
http://brementourguide.com/?wptouch_switch=desktop&redirect=https://excelturkiye.com/microsoft-excel/
http://mailer.revisionalpha.com/includes/php/emailer.track.php?vinculo=https://excelturkiye.com/microsoft-excel/
https://ovatu.com/e/c?url=https://excelturkiye.com/microsoft-excel/
http://www.kemonosearch.com/kemono/rank.cgi?mode=link&id=883&url=https://excelturkiye.com/microsoft-excel/
http://anifre.com/out.html?go=https://excelturkiye.com/microsoft-excel/
http://opac2.mdah.state.ms.us/stone/SV90I22.php?referer=https://excelturkiye.com/microsoft-excel/
https://analytics.bluekai.com/site/16231?done=https://excelturkiye.com/microsoft-excel/
http://www.cherrybb.jp/test/link.cgi/excelturkiye.com/microsoft-excel/
http://home.384.jp/haruki/cgi-bin/search/rank.cgi?mode=link&url=https://excelturkiye.com/microsoft-excel/
http://www.hellothai.com/wwwlink/wwwredirect.asp?hp_id=1334&url=https://excelturkiye.com/microsoft-excel/
http://mosvedi.ru/url/excelturkiye.com/microsoft-excel/
http://udobno55.ru/redir.php?r=https://excelturkiye.com/microsoft-excel/
https://www.art-prizes.com/adredirector.aspx?ad=melbprizesculpture_2017&target=https://excelturkiye.com/microsoft-excel/
http://b1.bitty.com/b2browser/?title=excelturkiye.com/microsoft-excel/&contenttype=website&contentvalue=https://excelturkiye.com/microsoft-excel/
https://www.meteogarda.it/website.php?url_to=https://excelturkiye.com/microsoft-excel/
https://hao.dii123.com/export.php?url=https://excelturkiye.com/microsoft-excel/
http://cd-log.co.il/languages/en/change?redirectUrl=https://excelturkiye.com/microsoft-excel/
http://www.image2d.com/fotografen.php?action=mdlInfo_link&url=https://excelturkiye.com/microsoft-excel/
http://executivefloors.com/netRedirect.asp?ID=1463&url=https://excelturkiye.com/microsoft-excel/
https://board-en.drakensang.com/proxy.php?link=https://excelturkiye.com/microsoft-excel/
https://athemes.ru/go?https://excelturkiye.com/microsoft-excel/
http://wcbi411.wcbi.com/__media__/js/netsoltrademark.php?d=excelturkiye.com/microsoft-excel/
http://archive.cym.org/conference/gotoads.asp?url=https://excelturkiye.com/microsoft-excel/
http://www.americanstylefridgefreezer.co.uk/go.php?url=https://excelturkiye.com/microsoft-excel/
http://www.exafield.eu/presentation/langue.php?url=https://excelturkiye.com/microsoft-excel/
https://xat.com/web_gear/chat/linkvalidator.php?link=https://excelturkiye.com/microsoft-excel/
https://scanverify.com/siteverify.php?site=excelturkiye.com/microsoft-excel/
https://irealite.com/simulateur.php?url=https://excelturkiye.com/microsoft-excel/
http://odokon.org/w3a/redirect.php?redirect=https://excelturkiye.com/microsoft-excel/
https://rel.chubu-gu.ac.jp/soumokuji/cgi-bin/go.cgi?https://excelturkiye.com/microsoft-excel/
http://phrip.com/phi.php?url=https://excelturkiye.com/microsoft-excel/
https://www.arsenaltula.ru/bitrix/redirect.php?goto=https://excelturkiye.com/microsoft-excel/
https://feed2js.org/feed2js.php?src=https://excelturkiye.com/microsoft-excel/
http://gomag.com/?id=73&move_to=https://excelturkiye.com/microsoft-excel/
http://p113831.typo3server.info/index.php?id=34&jumpurl=https://excelturkiye.com/microsoft-excel/
http://fot.li/?format=simple&action=shorturl&url=https://excelturkiye.com/microsoft-excel/
https://frekvensregister.ens.dk/Common/ModalFrameset.aspx?title=excelturkiye.com/microsoft-excel/&scrolling=auto&url=https://excelturkiye.com/microsoft-excel/
http://www.doctor-navi.com/cgi/hospital-search-engine2/rank.cgi?mode=link&id=14979&url=https://excelturkiye.com/microsoft-excel/
http://api.buu.ac.th/getip/?url=https://excelturkiye.com/microsoft-excel/
http://a-tribute-to.com/st/st.php?id=4477&url=https://excelturkiye.com/microsoft-excel/
http://beerthirty.tv/?wptouch_switch=desktop&redirect=https://excelturkiye.com/microsoft-excel/
https://oscarotero.com/embed/demo/index.php?url=https://excelturkiye.com/microsoft-excel/
https://siebenmeilenstiefel-online.de/content?url=https://excelturkiye.com/microsoft-excel/
https://www.wdlinux.cn/url.php?url=https://excelturkiye.com/microsoft-excel/
https://intelli-genter-reisen.de/content?url=https://excelturkiye.com/microsoft-excel/
https://baoviet.com.vn/Redirect.aspx?url=https://excelturkiye.com/microsoft-excel/
http://mailmaster.target.co.za/forms/click.aspx?CampaignID=45778&URL=https://excelturkiye.com/microsoft-excel/
https://www.alliedacademies.org/user-logout.php?redirect_url=https://excelturkiye.com/microsoft-excel/
http://m.landing.siap-online.com/?goto=https://excelturkiye.com/microsoft-excel/
https://wuangus.cc/go.php?url=https://excelturkiye.com/microsoft-excel/
http://park3.wakwak.com/~yadoryuo/cgi-bin/click3/click3.cgi?cnt=chalet-main&url=https://excelturkiye.com/microsoft-excel/
http://elbahouse.com/Home/ChangeCulture?lang=ar&returnUrl=https://excelturkiye.com/microsoft-excel/
http://www.studyinbritain.com/banner_tracker_direct.aspx?id=1156&url=https://excelturkiye.com/microsoft-excel/
http://www.avitop.com/aviation/link.asp?snd=4208&url=https://excelturkiye.com/microsoft-excel/
http://mx2.radiant.net/Redirect/excelturkiye.com/microsoft-excel/
https://dms.netmng.com/si/cm/tracking/clickredirect.aspx?siclientId=2877&redirectUrl=https://excelturkiye.com/microsoft-excel/
https://interecm.com/interecm/tracker?op=click&id=5204.db2&url=https://excelturkiye.com/microsoft-excel/
http://www.bookmailclub.com/x/modules/wordpress/wp-ktai.php?view=redir&url=https://excelturkiye.com/microsoft-excel/
http://www.odd-proekt.ru/redirect.php?link=https://excelturkiye.com/microsoft-excel/
https://www.adminer.org/redirect/?url=https://excelturkiye.com/microsoft-excel/
http://www.bb3x.ru/go.php?https://excelturkiye.com/microsoft-excel/
http://nanos.jp/jmp?url=https://excelturkiye.com/microsoft-excel/
http://talesofasteria.cswiki.jp/index.php?cmd=jumpto&r=https://excelturkiye.com/microsoft-excel/
http://www.goodstop10.com/t/go.php?url=https://excelturkiye.com/microsoft-excel/
http://airetota.w24.wh-2.com/BannerClic.asp?CampMail=N&CampId=19&url=https://excelturkiye.com/microsoft-excel/
http://presto-pre.com/modules/wordpress/wp-ktai.php?view=redir&url=https://excelturkiye.com/microsoft-excel/
http://www.blogwasabi.com/jump.php?url=https://excelturkiye.com/microsoft-excel/
http://gikit-pack.com/change_language.asp?link=https://excelturkiye.com/microsoft-excel/
https://it.paltalk.com/client/webapp/client/External.wmt?url=https://excelturkiye.com/microsoft-excel/
http://support.kaktusancorp.com/phpads/adclick.php?bannerid=33&source=&dest=https://excelturkiye.com/microsoft-excel/
http://directory.hawaiitribune-herald.com/__media__/js/netsoltrademark.php?d=excelturkiye.com/microsoft-excel/
http://ir.chartnexus.com/s/p.php?u=1&f=1&c=108&t=https://excelturkiye.com/microsoft-excel/
http://essencedental.com.br/Home/SetCulture?culture=es&returnUrl=https://excelturkiye.com/microsoft-excel/
http://km.koreaa2z.com/viewerOld.php?dbid=sk_047&strUrl=https://excelturkiye.com/microsoft-excel/
http://www.mein-sonntag.de/redirect.php?seite=https://excelturkiye.com/microsoft-excel/
http://sns.gongye360.com/link.php?url=https://excelturkiye.com/microsoft-excel/
http://fuckinggaytube.com/go.php?s=55&u=https://excelturkiye.com/microsoft-excel/
http://dukeofdrones.com/?wptouch_switch=desktop&redirect=https://excelturkiye.com/microsoft-excel/
http://www.yapi.com.tr/kategorisponsorsayfasinagit?categoryid=22&redirectionlink=https://excelturkiye.com/microsoft-excel/
http://www.music-inn.de/redirect.php?ref=true&site=excelturkiye.com/microsoft-excel/
https://bedrijfskring.nl/f/communication/email-redirect/be583d138b44d37a?uri=https://excelturkiye.com/microsoft-excel/
http://www.onlineguiden.dk/redirmediainfo.aspx?MediaDataID=45b76158-9e7e-4bef-ac42-0e39f848670f&url=https://excelturkiye.com/microsoft-excel/
http://www.takehp.com/y-s/html/rank.cgi?mode=link&id=2292&url=https://excelturkiye.com/microsoft-excel/
https://www.oic.or.th/sites/all/modules/pubdlcnt/pubdlcnt.php?file=https://excelturkiye.com/microsoft-excel/
http://www.argifocus.com/client/bridalg/lm1/lm/rs_linkto.asp?url=excelturkiye.com/microsoft-excel/
http://www.maturefuckzone.com/tp/out.php?p=55&fc=1&url=https://excelturkiye.com/microsoft-excel/
https://dealers.webasto.com/UnauthorizedAccess.aspx?Url=https://excelturkiye.com/microsoft-excel/
https://knitty.com/banner.php?id=587&url=https://excelturkiye.com/microsoft-excel/
http://navi-mxm.dojin.com/cgi-bin/ys/rank.cgi?mode=link&id=3385&url=https://excelturkiye.com/microsoft-excel/
http://www.mardigrasparadeschedule.com/phpads/adclick.php?bannerid=18&zoneid=2&dest=https://excelturkiye.com/microsoft-excel/
http://datatelaustralia.com.au/?wptouch_switch=mobile&redirect=https://excelturkiye.com/microsoft-excel/
http://www.simmessa.com/twoo/go.php?url=https://excelturkiye.com/microsoft-excel/
0 new messages