Host is a persistent module that you can install on a remote computer for 24/7 access including unattended access. You must have administrative privileges on the computer in order to install Host.
You can review and change the Host settings through the Windows Start menu or by right-clicking its icon in the system tray.
Host facts
- Host can accept direct connections and Internet-ID connections. Direct connection is enabled by default. Internet-ID connection must be enabled first. See Quick Start Guide.
- Host works for both unattended and attended access. Enable Ask user permission if you want to ask the remote user permission to connect to their computer.
- Host always runs as a SYSTEM service and starts with Windows by default. You can change this behavior in the startup mode settings.
- Because Host runs as a system service, you can remotely control UAC prompt windows and perform administrative tasks on the remote computer.
Host icon colors
The Host icon in the system tray can turn different colors depending on the Host connection status and connection type (direct vs Internet-ID) used.
Host application is a command prompt Windows utility ported from FreeBSD Host utility.
Host application is a command prompt Windows utility ported from FreeBSD Host utility.
Host looks for information about Internet hosts. It gets this information from a set of interconnected servers that are spread across the world.
By default, it simply converts between host names and Internet addresses.
However, with the [-d] or [-a] options, it can be used to find all of the information about this host that is maintained by the domain server (A, MX, NS records, TTL).
The arguments can be either host names or host numbers. The program first attempts to interpret them as host numbers. If this fails, it will treat them as host names.
A host number consists of IPv4 dotted decimal quad (127.0.0.1). A host name consists of names separated by dots, e.g. www.itsamples.com.
tags
host names host numbers information about
Download Host 1.0
Download Host 1.0
Authors software
Window Minimizer 1.2
Igor Tolmachev
Window Minimizer is small tool that allows you to minimize to the System Tray and restore each of the desktop window by clicking system menu item or pressing user-defined hot key.
Network Lights 1.1
Igor Tolmachev
Network Lights is a Windows application, which blinks keyboard LEDs (Light Emitting Diode) indicating outgoing and incoming network packets on network interface.
Host 1.0
Igor Tolmachev
Host application is a command prompt Windows utility ported from FreeBSD Host utility.
Link Encoder 1.0
Igor Tolmachev
Link Encoder enables you to encode your email and other links on your website so they can’t be extracted by rogue internet spiders looking for email addresses to add to junk mailing lists.
Similar software
Host 1.0
Igor Tolmachev
Host application is a command prompt Windows utility ported from FreeBSD Host utility.
FastResolver 1.26
NirSoft Freeware
FastResolver is a small utility that resolves multiple host names into IP addresses and vice versa.
TrayPing 1.1
Mike Gleason
TrayPing is an application built to be a powerful and free host monitoring program.
Query Application 1.06
Lior Ostrowsky
Query Application is an application that shows up all of the Internet technical information.
Remote Host Explorer 1.2
PipSoft Inc
Remote Host Explorer allows to create any HTTP header, send it to remote website and see the reply.
Web-Host-Uploader 105
Notepad Web Design
Web-Host-Uploader is a simple FTP tool which uploads local website changes to a web host with a single click replacing the need to manually upload with an FTP client.
Link Monitor 2.0
Dracula
Link Monitor is an application that will check an Internet or network connection by pinging a specified host.
Host Block Notifier 1.0
FaltronSoft
Host Block Notifier will inform you whenever you attempt to access a blocked website.
Konst Pinger 1.31
VisualSoft
Konst Pinger is a program for ping and trace internet host.
Other software in this category
Antiy Ports 1.30
Antiy Labs
Antiy Ports is TCP/UDP Port to Precess Mapper,Support Windows NT/2K/XP/2003, the user must belong to administrator group
In NT system, is requires the file psapi.
UpdateXpress 2.0
Imceda Software, Inc
UpdateXpress is a network administration utility that dramatically simplifies the propagation of updated files across the network.
Mac Makeup 1.95d
H&C Works
Did you ever get bored with your old MAC address?
If you did, this is the solution! Mac MakeUp let’s you change the MAC address of any of the interfaces present on your Windows 2000/XP/2003 box.
Ascella Log Monitor 1.0
AAR Software Ltd.
Ascella Log Monitor monitors the Windows event logs at real-time for any activity that matches the specified rules.
Программа Remote Utilities Host позволяет управлять компьютером удалённо. В комплект входят сервер Remote Utilities Server и программа просмотра Remote Utilities — Viewer.
Viewer устанавливается на главный компьютер, а сервер — на управляемые ПК. Серверный компонент можно установить удалённо из программы просмотра.
Чтобы добавить новый компьютер в список, нужно указать его имя и IP-адрес, интернет-идентификатор или DNS-имя. После подключения можно выбрать тип операции.
Возможности программы:
- просмотр только экрана;
- передача файлов;
- доступ к настройкам питания;
- запуск диспетчера задач;
- открытие окна консоли;
- выполнение программ;
- управление инвентаризацией;
- удалённая работа с рабочим столом (RDP);
- чат;
- запись экрана;
- отправка сообщений;
- контроль веб-камеры;
- настройка записей реестра;
- голосовые и видеозвонки;
- полный контроль над компьютером.
Можно одновременно оставаться на связи с несколькими компьютерами. Соединения отображаются на интуитивно понятной панели навигации. Интерфейс Ribbon упрощает работу.
Скачать с официальной страницы
Remote Utilities Host
Похожие программы
Hosts
Hosts is a CMD commandline tool to manage your hosts file entries.
Usage: hosts [OPTIONS] VALUE
Shorthand for add: hosts VALUE
Copyright 2017 René Larch
-e, --edit Edit the hosts file in editor. set %EDITOR% to use your
favorite editor.
-l, --list List using wildcards or regex
-a, --add Add to hosts file
-r, --remove Remove from hosts file
-f, --force Use force (e.g. force remove)
-i, --ip Filter by ip address
-n, --line Filter by line number
-R, --regex Use regex for filter
-d, --debug Enables debuging
--help Display this help screen.
Install
If you have the chocolatey packagemanager installed, you can just run:
choco install hosts -version 1.1.0
if this fails you have to install chocolatey and you need to
set your ExecutionPolicy
to RemoteSigned
.
I dont have chocolatey installed
Then run this:
PowerShell # remember ExecutionPolicy $old = Get-ExecutionPolicy Set-ExecutionPolicy RemoteSigned # install chocolatey iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex # install the package choco install hosts -version 1.1.0 # reset ExecutionPolicy Set-ExecutionPolicy $old
I wont to use Windows 10 PackageManager
Then run this:
PowerShell # remember ExecutionPolicy $old = Get-ExecutionPolicy Set-ExecutionPolicy RemoteSigned # install chocolatey iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex # just for windows 10: setup provider ;) # you can scip this step Install-PackageProvider -Name Chocolatey Set-PackageSource -Name chocolatey # install the package Install-Package hosts -version 1.1.0 # reset ExecutionPolicy Set-ExecutionPolicy $old
- Бесплатно
- Windows
771
Лицензия:
Бесплатно
Версия:1.0
Дата обновления:5 мая 2025 г. 0:34
Платформа ОС:Windows 11, 10, 8.1, 8, 7, …
Язык:Русский, Английский
Размер:40
Загрузок:276
Host — это небольшая утилита командой строки, портированная с FreeBSD. Ее основное назначение — обращение и получение информации с DNS-серверов. Утилита поддерживает огромное количество команд и различные типы запросов (aaaa, cname, mx, ns, srv, txt). Несмотря на свою простоту, данная утилита является незаменимым инструментом и верным помощником для любого системного администратора.
Ответы на вопросы
- Как установить DLL файлы на Windows?
- Как удалить временные файлы в windows 7 и где они хранятся?
- Как добавить день недели в часы на панели задач рабочего стола?
- Как добавить исключения в AVG антивирус
- Как изменить фамилию вконтакте?
- Как в aimp (плеер аимп) установить обложку (скин)?