- Add url to windows
- Asked by:
- Question
- All replies
- Add IP address and URL to Windows Defender Firewall Exclusion.
- Replies (8)
- An URL to a Windows shared folder [duplicate]
- 4 Answers 4
- Для чего нужны аддурилки, и как в них попасть
- Главные функции аддурилки
- У каких поисковых систем есть аддурилки
- Яндекс
- Rambler
- Mail.ru
- Nigma
- Как добавить сайт в аддурилку Яндекса
- Программы для добавления в аддурилки
- CS YAZZLE
- HWaddurl
- ToIndex
Add url to windows
This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Asked by:
Question
Please let me know how to add a series of IP address and URL to Windows Defender Firewall in Windows 10 Enterprise N.
One of my application is not opening and the technical support of the application instructed me to white list the URL and IP address in Windows Defender Firewall as given below.
52.70.61.153
52.70.61.184
52.1.273.164
52.6.21.244
Please explain by which I can Whitelist the above in Windows Defender — Win 10.
I am not a Computer expert, so please give the guidelines step by step.
All replies
To my knowledge, Windows Defender doesn’t have exclusions setting for IP address or website, we only can set a file, file type, folder, or a process in Windows Defender’s Exclusions setting.
If you want to add IP address in white list, you need to configure it in built-in Windows Firewall.
Control panel > Windows Firewall > Advanced Settings (in the left side panel). This Opens up an mmc window for advanced firewall configuration.
In the left panel, choose Inbound or Outbound rules.
Right panel, click New rule.
In the dialog, choose «custom».
In the left again, go to «Scope.» When you add an IP, you can add a range. Look at my picture, one thing I need to remind you, 52.1.273.164 is not a valid IP address.
Besides, about websites, you could configure IE browser’s security zone and Trusted sites to allow them.
Add IP address and URL to Windows Defender Firewall Exclusion.
Please let me know how to add a series of IP address and URL to Windows Defender Firewall in Windows 10 Enterprise N.
One of my application is not opening and the technical support of the application instructed me to white list the URL and IP address in Windows Defender Firewall.
52.70.61.153
52.70.61.184
52.1.273.164
52.6.21.244
Please explain by which I can Whitelist the above in Windows Defender — Win 10.
Moved from: Windows / Windows 10 / Network & internet
Replies (8)
We are volunteers willing to help you try to resolve this issue.
Start — Settings — type in —> Firewall — Windows Defender Firewall — on left
Advanced settings
See Custom here :
How to Create Advanced Firewall Rules in the Windows Firewall
https://www.howtogeek.com/112564/how-to-create-.
Just in case you need it Windows Enterprise versions are supported via Microsoft’s TechNet (I am there as well).
And of course, MSDN offers Developer Support.
Please let us know if you need further assistance.
3 people found this reply helpful
Was this reply helpful?
Sorry this didn’t help.
Great! Thanks for your feedback.
How satisfied are you with this reply?
Thanks for your feedback, it helps us improve the site.
How satisfied are you with this reply?
Thanks for your feedback.
Thank you for your swift response. Unfortunately I am not a computer expert to dig deep inside on my own. So please guide me step by step.
WD Firewall > Advanced Settings > WDF with Advanced Security > Inbound Rules > New Rule > Custom > form here I need detailed step by step instruction to allow my 4 Ip addresses and 2 web address to allow access. Do I need to select ‘Custom’ or any other rule (Program, Port, Predefined)?
Please help. Really I am upset with this.
We are volunteers willing to help you try to resolve this issue.
Start — Settings — type in —> Firewall — Windows Defender Firewall — on left
Advanced settings
See Custom here :
How to Create Advanced Firewall Rules in the Windows Firewall
https://www.howtogeek.com/112564/how-to-create-.
Just in case you need it Windows Enterprise versions are supported via Microsoft’s TechNet (I am there as well).
And of course, MSDN offers Developer Support.
Please let us know if you need further assistance.
Was this reply helpful?
Sorry this didn’t help.
Great! Thanks for your feedback.
How satisfied are you with this reply?
Thanks for your feedback, it helps us improve the site.
How satisfied are you with this reply?
Thanks for your feedback.
Was this reply helpful?
Sorry this didn’t help.
Great! Thanks for your feedback.
How satisfied are you with this reply?
Thanks for your feedback, it helps us improve the site.
How satisfied are you with this reply?
Thanks for your feedback.
We are volunteers willing to help you try to resolve this issue.
Start — Settings — type in —> Firewall — Windows Defender Firewall — on left
Advanced settings
See Custom here :
How to Create Advanced Firewall Rules in the Windows Firewall
https://www.howtogeek.com/112564/how-to-create-.
Just in case you need it Windows Enterprise versions are supported via Microsoft’s TechNet (I am there as well).
And of course, MSDN offers Developer Support.
Please let us know if you need further assistance.
Thank you for your swift response. Unfortunately I am not a computer expert to dig deep inside on my own. So please guide me step by step.
WD Firewall > Advanced Settings > WDF with Advanced Security > Inbound Rules > New Rule > Custom > form here I need detailed step by step instruction to allow my 4 Ip addresses and 2 web address to allow access. Do I need to select ‘Custom’ or any other rule (Program, Port, Predefined)?
An URL to a Windows shared folder [duplicate]
Is there a way to incorporate a working link to a Windows shared folder into an HTML page? E.g. a link to \\server\folder\path ?
For simplicity, let’s say the page will be opened on a Windows machine (and on the same intranet where the server is located, of course.)
I’ve tried a few tricks with file:// scheme, but none of them seemed to work.
4 Answers 4
I think there are two issues:
- You need to escape the slashes.
- Browser security.
I checked one of mine, I have the pattern:
Please note that we ended up with 5 slashes after the protocol ( file: )
Firefox will try to prevent cross site scripting. My solution was to modify prefs.js in the profile directory. You will add two lines:
File protocol URIs are like this
that’s why you often see file URLs like this (3 slashes) file:///c:\path.
So if the host is server01, you want
This is according to the wikipedia page on file:// protocols and checks out with .NET’s Uri.IsWellFormedUriString method.
If you are allowed to go further then javascript/html facilities — I would use the apache web server to represent your directory listing via http.
If this solution is appropriate. these are the steps:
download apache hhtp server from one of the mirrors http://httpd.apache.org/download.cgi
unzip/install (if msi) it to the directory e.g C:\opt\Apache (the instruction is for windows)
map the network forlder as a local drive on windows (\server\folder to let’s say drive H:)
open conf/httpd.conf file
make sure the next line is present and not commented
LoadModule autoindex_module modules/mod_autoindex.so
Add directory configuration
7. Start the web server and make sure the directory listingof the remote folder is available by http. hit localhost/path 8. use a frame inside your web page to access the listing
What is missed: 1. you mignt need more fancy configuration for the host name, refer to Apache Web Server docs. Register the host name in DNS server
- the mapping to the network drive might not work, i did not check. As a posible resolution — host your web server on the same machine as smb server.
Для чего нужны аддурилки, и как в них попасть
Аддурилка происходит от английского «add url» ー добавить сайт. Это страница поисковой системы (ПС), которая позволяет добавить ссылку на сайт или страницу, чтобы она была проиндексирована. Добавить ресурс в аддурилку ー первое что стоит сделать после создания сайта или написания новой статьи.
Главные функции аддурилки
- ускоряет индексацию: если самостоятельно рассказать роботу о появлении новых страниц и статей, они быстрее попадут в ПС, а значит и пользователи увидят их быстрее. Это помогает продвижению сайта;
- позволяет избежать попадания под фильтры из-за неуникального контента: если ваш контент украли, это еще не значит, что на ваших страницах он проиндексируется быстрее, чем у вора. Даже если вы опубликовали его раньше. Аддурилки помогают избежать этого;
- помогает быстрее снять фильтры и санкции: скажем, вам снизили трафик за переспам, вы исправили недочеты и хотите, чтобы робот быстрее просмотрел страничку, и вы могли работать в прежнем режиме. Чтобы ускорить процесс, добавляем страничку в add url.
У каких поисковых систем есть аддурилки
Яндекс
Чтобы попасть в индекс, понадобится 4-7 дней, однако бывают и случаи, когда приходится ждать дольше месяца. Лайфхак: разместите ссылку в каталоге сайтов, на доске объявлений или форуме и сократите время ожидания.
При размещении ссылки на популярном форуме, можно ускорить время ожидания.
Rambler
Работает только на территории России и стран СНГ.
Это зарубежный поисковик, и он приносит мало трафика на территории русскоязычных стран.
Mail.ru
Достаточно популярный поисковик в РФ, так что имеет смысл добавиться в его аддурилку.
Nigma
Еще один русский поисковик, на долю которого приходится всего 10% запросов.
Как добавить сайт в аддурилку Яндекса
Яндекс ー самый популярный поисковик в рунете, поэтому рассмотрим, как добавить страничку в его аддурилку.
- Открываем Яндекс.Вебмастер.
- Добавляем сайт и подтверждаем права на него (в данной статье не рассматриваем, как это сделать, так как тема обширна и требует отдельного внимания).
- Переходим во вкладку «Индексирование» -> «Переобход страниц» и добавляем адреса страниц в появившееся поле.
Можно добавлять до 20-ти ссылок в день.
Программы для добавления в аддурилки
Добавлять ссылки вручную — времязатратный процесс, особенно если у вас несколько сайтов и нужно использовать много адресов. В этом случае полезны специальные программы, которые позволяют применять add url массово и сразу для нескольких ПС.
CS YAZZLE
Делается это с помощью функции «Добавление страниц в индекс». В окне «Список страниц» вставляем нужные адреса, а в «Поисковые системы» отмечаем, в какие аддурилки хотим попасть (можно использовать Яндекс и Google). Удобство в том, что можно добавить все нужные страницы сразу в две ПС.
HWaddurl
Ее удобство в том, что не обязательно вручную вставлять каждую ссылку — можно использовать список из Sitemap. Также позволяет использовать add url сразу нескольких поисковых систем. В поле «Ссылки» вставляем адреса страниц. Чтобы использовать ссылки из карты сайта, нажимаем «Инструменты» -> «Парсить sitemap.xml».
При добавлении большого количества ресурсов, придется вводить каптчу. Можно делать это вручную, а можно избежать неудобств, купив AntiGate. Затем в настройках вводим ключ, чтобы синхронизировать антикаптчу с HWaddurl.
Ключ можно найти в личном кабинете AntiGate в настройках аккаунта:
ToIndex
Чтобы начать работать в программе, вводим в поле «Список ссылок» необходимые url. Здесь также можно воспользоваться автоматическим вводом каптчи, введя ключ AntiGate.
Неудобство программы в том, что вручную каптчу ввести невозможно, так что в любом случае придется покупать ключ, а также она поддерживает только аддурилку Яндекса.
А вы пользуетесь аддурилками? Пишите в комментариях!