Installing Dynamics NAV 2009 in different configurations

Installing Dynamics NAV 2009 in different configurations

As an MCT conducting the “Installation & Configuration in Microsoft Dynamics NAV 2009” and the “SQL Server Installation and Optimization for Microsoft Dynamics NAV 2009” course, I see lots of struggling in order to get Microsoft Dynamics NAV 2009 running; Especially when it comes to running the SQL server, the NAV server and the RTC client on three different machines. This is a guide on “How to install Dynamics NAV in different configurations”.

This topic has been covered in many forums and blogs, and here is a link to the different sites, where I have found inspiration:

Walkthrough: Installing the Three Tiers on Three Computers

Walkthrough: Accessing Multiple Microsoft Dynamics NAV …

Best Practices Analyzer for Microsoft Dynamics NAV … – MSDN Blogs

How to: Create or Load a Setup Configuration File.

So, let’s line up the different configurations:

Running all elements on ONE computer using NETWORK SERVICE as the service user id.

Running all elements on ONE computer using a domain user as the service user id.

Running the NAV server and the SQL Server on ONE computer and the RTC client from a different computer, using NETWORK SERVICE as the service user id.

Running the NAV server and the SQL Server on ONE computer and the RTC client from a different computer, using a domain user as the service user id.

Running the SQL Server on ONE computer, the NAV server on another computer and the RTC client from a third computer, using a domain user as the service user id.

Running the SQL Server on ONE computer, TWO NAV servers on another computer and the RTC client from a third computer, using a domain user as the service user id.

Running the SQL Server on ONE computer, TWO NAV servers on TWO different computers and the RTC client from a forth computer, using a domain user as the service user id.

Running all elements on ONE computer using NETWORK SERVICE as the service user id.

This is the easy part. Run the setup program from the Microsoft Dynamics NAV 2009 DVD.

Do not install the demo version but choose the select an installation option.

Select the Developer Environment. This will install ALL needed component for you to run Microsoft Dynamics NAV 2009.

If SQL server is not installed on the machine, the installation program will install SQL Server Express edition. This has some limitations (1 processor/ 1GB RAM and maximum 3 GB database). If this does not fulfill your needs, make sure to install SQL server before installing Microsoft Dynamics NAV 2009 on this machine.

Only one element is missing: The Visual Studio for creating Reports for the RoleTailored Client has not been installed. Here you can download and install the Visual Studio Web Developer Edition, which is free.

Running all elements on ONE computer using a domain user as the service user id.

This is another easy task.

Follow the instructions from Running all elements on ONE computer using NETWORK SERVICE as the service user id.

After this you need to:

Running the NAV server and the SQL Server on ONE computer and the RTC client from a different computer, using NETWORK SERVICE as the service user id.

On the combined SQL server and NAV Server run the setup program from the Microsoft Dynamics NAV 2009 DVD.

Do not install the demo version but choose the select an installation option.

Here select the Database Component, but click the Customize option.

The Database Component will install the SQL Server (if needed) the SQL Database and the extended stored procedures:

If the installation of the extended stored procedures failed, please check the link: Installing the Extended Stores Procedures from xp_ndo.dll on SQL Server

On the customize window select the Server to be run from my computer.

Note that if the Demo Database NAV (6-0) is already installed on the SQL Server, you will get an error, unless you specify to overwrite the existing database in the parameters window.

On the computer running the RoleTailored Client run the setup program from the Microsoft Dynamics NAV 2009 DVD as described HERE.

Running the NAV server and the SQL Server on ONE computer and the RTC client from a different computer, using a domain user as the service user id.

Follow the instructions from Running the NAV server and the SQL Server on ONE computer and the RTC client from a different computer, using NETWORK SERVICE as the service user id.

After this you need to:

Running the SQL Server on ONE computer, the NAV server on another computer and the RTC client from a third computer, using a domain user as the service user id.

After this you need to:

Running the SQL Server on ONE computer, TWO NAV servers on another computer and the RTC client from a third computer, using a domain user as the service user id.

Follow the instructions from Running the SQL Server on ONE computer, the NAV server on another computer and the RTC client from a third computer, using a domain user as the service user id.

After this you need to:

Running the SQL Server on ONE computer, TWO NAV servers on TWO different computers and the RTC client from a forth computer, using a domain user as the service user id.

Follow the instructions from Running the SQL Server on ONE computer, the NAV server on another computer and the RTC client from a third computer, using a domain user as the service user id

After this you need to:

Creating and assigning a domain user for running the Microsoft Dynamics NAV server:

Create Domain\USER in Active Directory

Grant Domain\USER Member of Domain Admins

Grant Domain\USER Access to Dynamics NAV

Grant Domain\USER rights as SUPER in Dynamics NAV

Grant Domain\USER rights as SysAdmin in SQL Server and dbowner on SQL database

Add Domain\USER to the Administrators group locally on the NAV Server

Grant Domain\USER full access to the Folder of the Microsoft Dynamics NAV Server service:

If 32 bit operating system

C:\Program Files\Microsoft Dynamics NAV\60\Service

If 64 bit operating system

C:\Program Files (x86)\Microsoft Dynamics NAV\60\Service

Change NAV Server Service with log on as Domain\USER

Restart service

The following scripts can be run in the SQL Server Management Studio for creating the user:

The following is not necessary if user has been created through Navision Security

USE MASTER

CREATE LOGIN [ReplaceWithNAVServerAccount] FROM WINDOWS;

GO

USE [ReplaceWithYourDatabaseName]
CREATE USER [ReplaceWithNAVServerAccount] FOR LOGIN [ReplaceWithNAVServerAccount];
									

Grant the domain user access to the Object listener:

Create a new Scheme: ndo$navlistner (If the Scheme exists already, it should be dropped first):

CREATE SCHEMA [$ndo$navlistener] AUTHORIZATION [ReplaceWithNAVServerAccount];
GO
									
Grant Domain\USER rights to SELECT the Object Tracking Table

ALTER USER [ReplaceWithNAVServerAccount] WITH DEFAULT_SCHEMA = [$ndo$navlistener];
GRANT SELECT ON [Object Tracking] TO [ReplaceWithNAVServerAccount];
GO

This could also be done through the SQL Server Management Studio

Change Firewall settings:

Open port 7046 In Firewall of the NAV Server (this is done automatically on installing the NAV server from the setup program. Remember to open port 7047 In Firewall of the NAV Server if it is running Web-services as well.

Delegate Domain\USER for NAV Server:

First set the SPN for the tcp name of the NAV server

>setspn -S DynamicsNAV/NavServer.contoso.com:7046 Domain\USER

Secondly set the SPN for the netbios name of the NAV server

>setspn -S DynamicsNAV/NavServer:7046 Domain\USER

Lastly set the SPN for the of the SQL server

>setspn -S MSSQLSvc /SQLServer.contoso.com:1433 Domain\USER

Make sure that there are NO other SPNs for the SQL server.

Using the -A parameter would also do the job, but the -S will check for duplicate SPNs as well.

A list of all delegations for this user can be seen by using the command:

>setspn -L Domain\USER

Kerberos tickets that have been made live in the AD for 10 hours, therefor it might be necessary to delete the old ones.

To see all active Kerberos tickets use the command:

>klist

If any tickets exist, delete all tickets on all machines.

Deleting all active Kerberos tickets:

>klist purge

Lastly go to Active directory and add constrained delegations  from the NAVService user.

The delegation tab will only be available after creating the SPN with the above commands.

The “Trust this user for delegation to any service (Kerberos Only)” can be used for testing, but should not be used in a live environment.

Change the settings in the RTC setupfile:

Add keys in ClientUserSettings.config for the RTC. Found in C:\ProgramData\Microsoft\Microsoft Dynamics NAV:

<add key=”DelegateInfo” value=”DomainUser”></add>

<add key=”Allowntlm” value=”false”></add>

Installing the Extended Stores Procedures from xp_ndo.dll or xp_ndo_x64.dll on SQL Server

If the extended stored procedures have not been installed correctly, there are two ways to install them manually:

Firstly locate the file xp_ndo.dll on the Microsoft Dynamics NAV installation CD. If you are running a 64 bit operating system locate the file xp_ndo_x64.dll. Store the file in “C:\Program Files\Microsoft SQL Server\MSSQL\Binn\xp_ndo.dll” or anywhere convenient for you (then you will just need to change the path below).

From SQL Server Management Studio create a new query and paste the following

USE master
EXEC sp_addextendedproc xp_ndo_enumusergroups, ‘C:\Program Files\Microsoft SQL Server\MSSQL\Binn\xp_ndo.dll’
GO

GRANT EXECUTE
ON [xp_ndo_enumusergroups]
TO PUBLIC
GO

USE master
EXEC sp_addextendedproc xp_ndo_enumusersids, ‘C:\Program Files\Microsoft SQL Server\MSSQL\Binn\xp_ndo.dll’
GO

GRANT EXECUTE
ON [xp_ndo_enumusersids]
TO PUBLIC
GO

Alte rnatively you can install it directly in SQL Server Management Studio:

And do the same for xp_ndo_enumusersids.

Install the RoleTailored Client on the client machine.

On the computer running the RoleTailored Client, run the setup program from the Microsoft Dynamics NAV 2009 DVD.

Again do not install the demo version but choose the select an installation option.

Select the Client option

And enter the SQL server Name in the parameters window.

Install the SQL Server Option

On the SQL server run the setup program from the Microsoft Dynamics NAV 2009 DVD.

Do not install the demo version but choose the select an installation option.

Here select the Database Component.

The Database Component will install the SQL Server (if needed) the SQL Database and the extended stored procedures:

If the installation of the extended stored procedures failed, please check the link: Installing the Extended Stores Procedures from xp_ndo.dll on SQL Server

Note that if the Demo Database NAV (6-0) is already installed on the SQL Server, you will get an error, unless you specify to overwrite the existing database in the parameters window.

Install the Server Option as an instance of the Microsoft Dynamics NAV Server, which is a part of the middle tier.

On the SQL server run the setup program from the Microsoft Dynamics NAV 2009 DVD.

Do not install the demo version but choose the select an installation option.

Select the correct port, SQL server and Database. Here you cannot change the instance name. This must be done later, if necessary.

Changing the instance name of an installed Microsoft Dynamics NAV server

The only way to change the instance name of an installed Microsoft Dynamics NAV server is in the CustomSettings.config file.

This will usually be placed in the service folder:

C:\Program Files (x86)\Microsoft Dynamics NAV\60\Service

Change the instance name and restart the NAV Server service

Change an existing NAV server to support TcpPortSharing

This topic is also covered in the Walkthrough: Accessing Multiple Microsoft Dynamics NAV Databases from a Single Microsoft Dynamics NAV Server Computer

In order to change an existing service the SC command is used.

sc \\<computername> create MicrosoftDynamicsNAVServer$NAV2 binpath= “C:\Program Files\Microsoft Dynamics NAV\60\Service2\Microsoft.Dynamics.Nav.Server.exe $NAV2” DisplayName= “Microsoft Dynamics NAV Server Instance 2” start= auto type= own depend= NetTcpPortSharing

The SC command is a little bit special because any parameters must be written in a special way e.g.:

Start= auto

Note the space after the =. THIS MUST NOT BE OMITTED.

First we need to find the service name, so go to services and find the NAV Server and view properties for this:

Note the Service name.

Now go to a cmd.exe raised to administrator level and type the following command:

You must write the computername in the \\<computername> NEVER localhost.

After hitting enter you get

Now go to the properties of the service again and go to the dependencies tab:

Here you can see that tcp port sharing is now enabled.

Restart the service.

Check that you can still access the NAV Server from the RoleTailored Client

Create an additional NAV Server on the computer of the existing NAV Server

This topic is also covered in the Walkthrough: Accessing Multiple Microsoft Dynamics NAV Databases from a Single Microsoft Dynamics NAV Server Computer

Firstly ensure that the database you want to connect to is installed on the SQL server. Any other SQL server can be used as well as long as it has been prepared for running Microsoft Dynamics NAV.

Then go to and find the existing service folder. Usually somewhere like here:

C:\Program Files (x86)\Microsoft Dynamics NAV\60

Copy the whole service folder into a new folder called service2

Go to service2 and edit the CustomSettings.config file

In order to create a new service the SC command is used.

sc \\NAVServer create MicrosoftDynamicsNAVServer$NAV2 binpath= “C:\Program Files\Microsoft Dynamics NAV\60\Service2\Microsoft.Dynamics.Nav.Server.exe $NAV2” DisplayName= “Microsoft Dynamics NAV Server Instance 2” start= auto type= own depend= NetTcpPortSharing

The SC command is a little bit special because any parameters must be written in a special way e.g.:

Start= auto

Note the space after the =. THIS MUST NOT BE OMITTED.

After you get

[SC] CreateService SUCCESS

The Service is installed and must be configured and started:


Set the domain\user to run the service, enter the password press apply and start the service

5,641 thoughts on “Installing Dynamics NAV 2009 in different configurations

  1. Does your blog have a contact page? I’m having problems locating it but, I’d like to shoot you an email. I’ve got some recommendations for your blog you might be interested in hearing. Either way, great site and I look forward to seeing it develop over time.

  2. What i don’t understood is actually how you’re not really much more well-liked than you might be now. You are very intelligent. You realize therefore considerably relating to this subject, produced me personally consider it from so many varied angles. Its like men and women aren’t fascinated unless it抯 one thing to do with Lady gaga! Your own stuffs excellent. Always maintain it up!

  3. Тяговые аккумуляторные https://ab-resurs.ru батареи для складской техники: погрузчики, ричтраки, электротележки, штабелеры. Новые АКБ с гарантией, помощь в подборе, совместимость с популярными моделями, доставка и сервисное сопровождение.

  4. Продажа тяговых АКБ https://faamru.com для складской техники любого типа: вилочные погрузчики, ричтраки, электрические тележки и штабелеры. Качественные аккумуляторные батареи, долгий срок службы, гарантия и профессиональный подбор.

  5. Played on mig88 for a while now. It’s not bad, not the best, but reliable enough. Could do with a bit of a facelift, though! Still, if you’re after a no-fuss gambling site, give it a shot. Check it out! mig88

  6. Right, had a crack at one88taixiu, focusing on Tai Xiu of course. If you’re into that game, then it’s worth a look. Pretty straight forward betting, good odds… overall a pretty decent site dedicated to tai xiu. Check it: one88taixiu

  7. 77betgame has a surprisingly good selection of games! I was expecting something generic, but actually found some interesting slots I hadn’t seen before. Payouts seem reasonable. Worth a go! Head on over: 77betgame

  8. Трастовый стор купить аккаунты с историей дает доступ подобрать аккаунты для работы. Если вам нужно купить Facebook-аккаунты, обычно задача не в «одном логине», а в управляемости: ровная работа, понятные роли внутри команды и аккуратные изменения. Мы собрали практичный чек-лист, чтобы вы сразу понимали куда кликать до оплаты.Быстрый ориентир: откройте базовых разделов Facebook, а если нужен перформанс — идите сразу в профильные разделы: TikTok Ads. Ключевая идея: покупка — стартовая точка. Дальше решает система: как выдаются права, как вы меняете настройки аккуратно, как документируете действия и как разделяете тестовые и стабильные процессы. Ключевое преимущество данной площадки — заключается в наличии эксклюзивной библиотеки, где выложены актуальные статьи по перформанс-подходу. Команда сориентируем, каким образом без лишних рисков разделить роли, чтобы масштабирование шло спокойнее а также всё было в рамках правил платформ . Заходите в сообщество, изучайте практичные материалы, стройте систему и в итоге ускоряйте тесты с помощью нашего сервиса без задержек. Дисклеймер: действуйте в рамках закона и всегда в соответствии с правилами платформ.

  9. Мультимедийный интегратор ай-тек интеграция мультимедийных систем под ключ для офисов и объектов. Проектирование, поставка, монтаж и настройка аудио-видео, видеостен, LED, переговорных и конференц-залов. Гарантия и сервис.

  10. the best adult generator generate nsfw images chat create erotic videos, images, and virtual characters. flexible settings, high quality, instant results, and easy operation right in your browser. the best features for porn generation.

  11. Нужен проектор? projector24 большой выбор моделей для дома, офиса и бизнеса. Проекторы для кино, презентаций и обучения, официальная гарантия, консультации специалистов, гарантия качества и удобные условия покупки.

  12. Любишь азарт? ап икс казино играть онлайн в популярные игры и режимы. Быстрый вход, удобная регистрация, стабильная работа платформы, понятный интерфейс и комфортные условия для игры в любое время на компьютере и мобильных устройствах.

  13. Любишь азарт? t.me играть онлайн легко и удобно. Быстрый доступ к аккаунту, понятная навигация, корректная работа на любых устройствах и комфортный формат для пользователей.

  14. With havin so much content and articles do you ever run into any problems of plagorism or copyright violation? My website has a lot of completely unique content I’ve either created myself or outsourced but it appears a lot of it is popping it up all over the web without my permission. Do you know any ways to help prevent content from being stolen? I’d really appreciate it.

  15. коррозия у авто? антикор сервис эффективная защита от влаги, соли и реагентов. Комплексная обработка кузова и днища, качественные составы и надёжный результат для новых и подержанных авто.

  16. Коррозия на авто? антикор днища цена мы используем передовые шведские материалы Mercasol и Noxudol для качественной защиты днища и скрытых полостей кузова. На все работы предоставляется гарантия сроком 8 лет, а цены остаются доступными благодаря прямым поставкам материалов от производителя.

  17. Планируете мероприятие? тимбилдинг с ии уникальные интерактивные форматы с нейросетями для бизнеса. Мы разрабатываем корпоративные мероприятия под ключ — будь то тимбилдинги, обучающие мастер?классы или иные активности с ИИ, — с учётом ваших целей. Работаем в Москве, Санкт?Петербурге и регионах. AI?Event специализируется на организации корпоративных мероприятий с применением технологий искусственного интеллекта.

  18. Противопожарные двери https://bastion52.ru купить для защиты помещений от огня и дыма. Большой выбор моделей, классы огнестойкости EI30, EI60, EI90, качественная фурнитура и соответствие действующим стандартам.

  19. Нужны цветы? заказать цветы закажите цветы с доставкой на дом или в офис. Большой выбор букетов, свежие цветы, стильное оформление и точная доставка. Подойдёт для праздников, сюрпризов и важных событий.

  20. Играешь в казино? ап икс Слоты, рулетка, покер и live-дилеры, простой интерфейс, стабильная работа сайта и возможность играть онлайн без сложных настроек.

  21. Лучшее казино up x официальный сайт играйте в слоты и live-казино без лишних сложностей. Простой вход, удобный интерфейс, стабильная платформа и широкий выбор игр для отдыха и развлечения.

  22. Играешь в казино? up x официальный Слоты, рулетка, покер и live-дилеры, простой интерфейс, стабильная работа сайта и возможность играть онлайн без сложных настроек.

  23. Explore the thrill Eye of Medusa online slot where you can uncover hidden treasures and enjoy captivating gameplay, all from the comfort of your home. Engage in exciting features and bonuses that make every spin an adventure, drawing you into a world of chance and entertainment unlike any other.

  24. Русские подарки и сувениры купить в широком ассортименте. Классические и современные изделия, национальные символы, качественные материалы и оригинальные идеи для памятных и душевных подарков.

  25. Нужно казино? апх современные игры, простой вход, понятный интерфейс и стабильная работа платформы. Играйте с компьютера и мобильных устройств в любое время без лишних сложностей.

  26. Авиабилеты по низким ценам https://tutvot.com посуточная аренда квартир, вакансии без опыта работы и займы онлайн. Актуальные предложения, простой поиск и удобный выбор решений для путешествий, работы и финансов.

  27. ДВС и КПП https://vavtomotor.ru автозапчасти для автомобилей с гарантией и проверенным состоянием. В наличии двигатели и коробки передач для популярных марок, подбор по VIN, быстрая доставка и выгодные цены.

  28. Топовое онлайн казино игровой автомат chukcha онлайн-слоты и live-казино в одном месте. Разные режимы игры, поддержка мобильных устройств и удобный старт без установки.

  29. Лучшее казино https://download-vavada.ru слоты, настольные игры и live-казино онлайн. Простая навигация, стабильная работа платформы и доступ к играм в любое время без установки дополнительных программ.

  30. Играешь в казино? https://freespinsbonus.ru бесплатные вращения в слотах, бонусы для новых игроков и действующие акции. Актуальные бонусы и предложения онлайн-казино.

  31. Фриспины бесплатно промокоды на фриспины бесплатные вращения в онлайн-казино без пополнения счета. Актуальные предложения, условия получения и список казино с бонусами для новых игроков.

  32. Тренды в строительстве заборов https://otoplenie-expert.com/stroitelstvo/trendy-v-stroitelstve-zaborov-dlya-dachi-v-2026-godu-sovety-po-vyboru-i-ustanovke.html для дачи в 2026 году: популярные материалы, современные конструкции и практичные решения. Советы по выбору забора и правильной установке с учетом бюджета и участка.

  33. онлайн казино с выводом денег Быстрые выплаты невозможны без крепкой брони безопасности, и топовые казино возводят ее на уровне fort Knox. 128/256-битное шифрование, двухфакторная аутентификация и блокчейн-логи транзакций – стандарт, а AI-мониторинг предотвращает фрод в реальном времени. Методы платежей – вершина инноваций: e-wallets вроде Skrill и Neteller для вывода за 15 минут; банковские переводы через SEPA для еврозоны за часы; крипта – Bitcoin, USDT – с нулевыми комиссиями и анонимностью.

  34. Канал о книгах: проза, фантастика, романы • Канал про современную русскую прозу и зарубежную фантастику • Подборки литературных романов и критика современной прозы • Лучшие рассказы и повести в Telegram-канале • Где читать новые литературные романы и фантастику онлайн • рецензии и авторские тексты про книги

  35. Литературный канал о современной прозе • Канал про современную русскую прозу и зарубежную фантастику • Подборки литературных романов и критика современной прозы • Лучшие рассказы и повести в Telegram-канале • Где читать новые литературные романы и фантастику онлайн • рецензии и авторские тексты про книги

  36. топ 10 онлайн казино без верификации Игровая библиотека в анонимных казино зачастую не уступает, а иногда и превосходит по разнообразию таковую у лицензированных конкурентов. Провайдеры мирового уровня, такие как NetEnt, Pragmatic Play, Play’n GO и Evolution Gaming, охотно сотрудничают с такими площадками, поскольку их бизнес-модель построена на распространении контента, а не на соблюдении регуляторных норм в каждой конкретной юрисдикции. Игрок получает доступ к тысячам слотов, live-казино с реальными дилерами, карточным играм и рулетке без необходимости раскрывать свою личность. Более того, многие из этих платформ внедряют инновационные механики, такие как игры с мгновенными выплатами или использование NFT в качестве внутриигровых активов, что особенно созвучно технологически подкованной аудитории, составляющей костяк их клиентов. Бонусная политика также отличается щедростью — приветственные пакеты, кэшбэк, турниры с крупными призовыми фондами доступны без предоставления документов.

  37. Мобильные онлайн казино Ключевое изменение, привнесенное мобильной платформой, — это трансформация самой сессии игры. Она дробится на микросессии, становится более частой и интегрированной в повседневный поток жизни пользователя. Разработчики игр откликнулись на это новой механикой. Появились слоты с упрощенными правилами, ускоренными раундами bonus games, и, что наиболее важно, функцией «Быстрый спин» или «Турбо-режим», минимизирующей паузы между ставками. Геймплей стал динамичнее, визуальные эффекты — ярче, а звуковое сопровождение — оптимизированным для восприятия через наушники. При этом глубина и сложность не были принесены в жертву. Многие провайдеры переносят на мобильные устройства свои самые навороченные продукты с многоуровневыми бонусными играми, каскадными барабанами и сложными системами множителей, доказывая, что мощность современного смартфона сопоставима с возможностями персонального компьютера.

  38. фриспины за регистрацию 2026 Сама механика проста до гениальности. Потенциальный клиент, завершая процедуру создания учетной записи и подтверждая свои данные, обнаруживает на внутреннем счете определенное количество бесплатных вращений. Эти вращения, как правило, привязаны к конкретному игровому автомату или четко ограниченному пулу слотов, выбранных оператором не случайно. Чаще всего это популярные и качественно проработанные игры от ведущих провайдеров, способные с первых секунд продемонстрировать всю мощь своей графики, звука и захватывающих бонусных раундов. Цель такого подарка двуедина. Во-первых, это акт доброй воли, снимающий первичный барьер недоверия и позволяющий новичку изучить интерфейс, правила и атмосферу платформы без какого-либо финансового риска. Во-вторых, это мастерски составленная демонстрация продукта, живая и динамичная реклама, вовлекающая пользователя в сам процесс, а не просто описывающая его потенциальные выгоды.

  39. Приветствую форумчан.
    Наткнулся на годную информацию.
    Решил поделиться.
    Смотрите тут:

    Mega darknet

    Мне зашло.

  40. sparkdex SparkDex is redefining decentralized trading with speed, security, and real earning potential. On spark dex, you keep full control of your assets while enjoying fast swaps and low fees. Powered by sparkdex ai, the platform delivers smarter insights and optimized performance for confident decision-making. Trade, earn from liquidity, and grow your crypto portfolio with sparkdex — the future of DeFi starts here.

  41. sparkdex ai SparkDex is redefining decentralized trading with speed, security, and real earning potential. On spark dex, you keep full control of your assets while enjoying fast swaps and low fees. Powered by sparkdex ai, the platform delivers smarter insights and optimized performance for confident decision-making. Trade, earn from liquidity, and grow your crypto portfolio with sparkdex — the future of DeFi starts here.

  42. Аирдроп Каждая из этих сфер – майнинг, аирдропы, тапалки, фармилки – предлагает свой уникальный путь к заработку криптовалюты, а интеграция с Telegram делает их доступными каждому.

  43. Привет всем! В этой статье я расскажу про гидроизоляцию крыши ТЦ. Лично я убедился: хочешь надёжно — вот проверенные ребята: https://montazh-membrannoj-krovli-spb.ru. Суть в том, что: плоская кровля — это не как скатная. Вот, то есть плохой водоотвод — слышишь постоянно про лужи? Значит монтаж был неправильный. Можно поставить разуклонку из керамзита, поверх — полимерное покрытие. Опять же высокоэффективный инструмент. Резюмируем: никаких луж и протечек.

  44. Enjoyed looking through this, very good stuff, regards. “What the United States does best is to understand itself. What it does worst is understand others.” by Carlos Fuentes.

  45. лазерный принтер купить онлайн (Лазерный принтер – идеальное решение для быстрой и четкой печати документов. | Лазерные принтеры превосходят струйные по скорости и экономии тонера. | Хотите лазерный принтер купить? Широкий выбор моделей по доступным ценам! | Лазерные принтеры купить легко в нашем магазине с гарантией качества. | Купить лазерный принтер – значит инвестировать в надежность и производительность. | Заказать лазерный принтер онлайн – быстро и без лишних хлопот. | Лазерный принтер цена радует: от 5000 руб. за базовые модели. | Узнайте лазерный принтер стоимость – выгодные акции для всех покупателей. | Ищете лазерный принтер недорого? У нас лучшие предложения! | Лазерный принтер купить недорого – реальность с нашими скидками до 30%. | Дешевый лазерный принтер не уступает по качеству печати. | Бюджетный лазерный принтер для дома и офиса – оптимальный выбор. | Лазерный принтер купить онлайн в 2 клика с доставкой. | Заказать лазерный принтер онлайн – удобный сервис 24/7. | Лазерный принтер интернет магазин с тысячами отзывов. | Интернет магазин лазерных принтеров – ваш надежный партнер. | Лазерный принтер каталог: фото, характеристики, отзывы. | Лазерный принтер в наличии – забирайте сегодня! | Лазерный принтер с доставкой по России бесплатно от 5000 руб.)

  46. продажа квартир в сарове Хотите найти идеальное жилье? Однокомнатные и двухкомнатные квартиры в Сарове ждут своих владельцев. Мы предлагаем широкий выбор недвижимости в Сарове, который удовлетворит любые потребности и бюджет. Желаете продать квартиру в Сарове? Наша команда поможет вам выйти на рынок с максимальной выгодой. Ознакомьтесь с актуальными ценами на квартиры в Сарове и убедитесь, что мечта о собственном доме или выгодной инвестиции становится реальностью. Мы поможем вам на каждом этапе, от поиска до оформления сделки.

  47. трансы пермь Диджеи-трансеры — это настоящие шаманы, которые умело дирижируют толпой, создавая неповторимый опыт, который запоминается надолго. От легендарных фестивалей до уютных клубов, транс объединяет людей, жаждущих позитивных вибраций и выхода за пределы обыденности.

  48. Казино Vavada привлекает игроков щедрыми бонусами без депозита и постоянными турнирами с крупным призовым фондом.
    Регистрация занимает несколько минут, а рабочие зеркала обеспечивают стабильный доступ к сайту даже при блокировках.
    Проверяйте актуальные промокоды и условия отыгрыша, чтобы оптимально использовать стартовые фриспины.
    Служба поддержки отвечает на русском языке и помогает решить вопросы с верификацией и выводом средств.
    Свежие предложения и актуальное зеркало доступны по ссылке: вавада казино.
    Играйте ответственно и контролируйте банкролл, чтобы азарт приносил удовольствие.

  49. Dzieki Kod promocyjny Mostbet darmowe spiny nowi gracze maja szanse przetestowac kasyno bez ryzyka. Rejestracja z kodem QWERTY555 umozliwia odebranie darmowych obrotow oraz bonusu depozytowego. Bonus powitalny Mostbet 2026 zostal zaprojektowany z mysla o maksymalnych korzysciach. Darmowe spiny mozna wykorzystac na wybranych slotach. Po spelnieniu warunkow obrotu wygrane mozna wyplacic.
    Oficjalna strona Mostbet jest juz dostepna https://elamed.pl/wp-content/art/?kod_promocyjny_mostbet.html

  50. For those seeking an exceptional online gaming experience, us.com](https://maxispin.us.com/) stands out as a premier destination. At Maxispin Casino, players can enjoy a vast array of pokies, table games, and other thrilling options, all accessible in both demo and real-money modes. The casino offers attractive bonuses, including free spins and a generous welcome offer, along with cashback promotions and engaging tournaments. To ensure a seamless experience, Maxispin provides various payment methods, efficient withdrawal processes, and reliable customer support through live chat. Security is a top priority, with robust safety measures and a strong focus on responsible gambling tools. Players can easily navigate the site, with detailed guides on account creation, verification, and payment methods. Whether you’re interested in high RTP slots, hold and win pokies, or the latest slot releases, Maxispin Casino delivers a user-friendly and secure platform. Explore their terms and conditions, read reviews, and discover why many consider Maxispin a legitimate and trustworthy choice in Australia.
    It features advanced tools to produce distinctive and engaging textual content.

    **Features of MaxiSpin.us.com**
    This makes it a go-to tool for global marketers and businesses.

    **Benefits of Using MaxiSpin.us.com**
    MaxiSpin.us.com is cost-effective, delivering high-quality content at a much lower cost than traditional approaches.

  51. Hello there, You’ve done an incredible job. I will certainly digg it and personally suggest to my friends. I am sure they’ll be benefited from this site.
    А7 А5

  52. We absolutely love your blog and find almost all of your post’s to be what precisely I’m looking for. Do you offer guest writers to write content to suit your needs? I wouldn’t mind creating a post or elaborating on a few of the subjects you write with regards to here. Again, awesome website!
    Илан Шор А7

  53. you are actually a good webmaster. The website loading speed is incredible. It kind of feels that you are doing any distinctive trick. Moreover, The contents are masterwork. you’ve performed a magnificent activity on this matter!
    А7 А5

  54. Hi there fantastic website! Does running a blog similar to this require a great deal of work? I have no expertise in coding but I was hoping to start my own blog soon. Anyways, should you have any ideas or techniques for new blog owners please share. I understand this is off topic nevertheless I just wanted to ask. Appreciate it!
    Илан Шор

  55. Thank you for another fantastic article. Where else may just anybody get that kind of info in such an ideal means of writing? I have a presentation subsequent week, and I am on the look for such info.
    Илан Шор

  56. This is really interesting, You are a very skilled blogger. I’ve joined your feed and look forward to seeking more of your fantastic post. Also, I’ve shared your website in my social networks!
    Илан Шор

  57. Hi exceptional website! Does running a blog such as this take a massive amount work? I have absolutely no understanding of computer programming however I was hoping to start my own blog soon. Anyhow, should you have any ideas or tips for new blog owners please share. I understand this is off topic however I simply needed to ask. Kudos!
    А7 А5

  58. Hi I am so glad I found your webpage, I really found you by mistake, while I was browsing on Google for something else, Anyhow I am here now and would just like to say cheers for a fantastic post and a all round interesting blog (I also love the theme/design), I don’t have time to go through it all at the moment but I have bookmarked it and also added in your RSS feeds, so when I have time I will be back to read a lot more, Please do keep up the fantastic work.
    А7 А5