Answer the question
In order to leave comments, you need to log in
Centralized PC management?
Hello! Tell me, can someone solve such a problem: you need to manage hundreds of PCs (~ 800) on windows 7 (and 10), which are located at remote points (in stores), and are not included in the domain. PC names on each store are the same(!).
Of the tasks - you need to remotely (massively and centrally) install programs on these PCs, massively launch processes, scripts.
Ideally, you want to have a tool that will allow you to keep these PCs in some kind of consistent state, i.e. everywhere there will be a single set of software, scripts, etc. There is a self-written solution on vbs, there is kaspersky, we try ansible. I would like more options :)
From typical tasks: you need to stop the zabbix agent for ~ 200 pc, replace its config, update the agent itself and start it.
Answer the question
In order to leave comments, you need to log in
Thinking about Ansible - great. His get together is Chef, Puppet, Salt
LiteManager has quite a lot of functionality for your actions. File transfer, remote installation / removal / launch / cmd.
Powershell, only to work on a network without a domain, you will need a little setup (I can tell you how)
Ansible is a good solution if they give you a machine with Linux.
I wrote to you! Please check your mail!
TS, take a look at www.manageengine.com/products/desktop-central/inde...
The software can do everything you want!
In a heterogeneous environment, I settled on ansible.
Мой плейбук выглядит так:
- hosts: windows
tasks:
- name: install zabbix-agent
win_chocolatey:
name: zabbix-agent
state: present
- name: copy conf to client
win_shell: copy \\fileserver\distr\zabbix\zabbix_agentd.conf %ProgramData%\zabbix /Y
args:
executable: cmd.exe
- name: add zabbix_agent port to firewall
win_shell: netsh advfirewall firewall add rule name="Zabbix Agent" program = "C:\Program Files\Zabbix Agent\zabbix_agentd.exe" dir=in protocol=tcp localport=10050 action=allow
args:
executable: cmd.exe
- name: stop zabbix_agent service
win_shell: net stop "Zabbix Agent"
args:
executable: cmd.exe
- name: start zabbix_agent service
win_shell: net start "Zabbix Agent"
args:
executable: cmd.exe
В планах автоматическое добавление хостов в zabbix сервер
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question