W
W
WindBridges2021-07-22 17:45:06
System administration
WindBridges, 2021-07-22 17:45:06

How to set up Windows 10 remotely?

I have always dealt only with nix servers, where you can automate the configuration and installation of the necessary software via SSH. There and ansible can be used for automation and other things. And then it happened to deal with a Windows server, and not even a server, but a regular Windows 10 installed on the server. Initially, there is only RDP. How can the number of manual actions be minimized? Install manually SSH server, and then everything through it? Or are there more convenient ways?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
N
Newbie2, 2021-07-22
@WindBridges

Windows has Powershell. Powerful automation environment. Study manuals.

Y
Yerlan Ibraev, 2021-07-23
@mad_nazgul

AD + GPO
<:o)
On a good note, all client Windows management is best done through group policies.
Almost everything is possible there.

Y
Yuri Slinkin, 2021-07-22
@niknils

there is a built-in graphical tool in Windows - C:\Windows\System32\msra.exe
it can also be found in C:\Windows\System32\msconfig.exe
by default, protocols 3389 and 135 are blocked, which can prevent sending a "request" to a remote help through %WinDir%\System32\msra.exe, and to disable it, you can use a graphical tool, and then find and change it, or create rules for these ports:
firewall.cpl
or you can use the command line (as administrator):
netsh advfirewall firewall add rule name="Remote Access" protocol=TCP localport=3389 action=allow dir=IN
netsh advfirewall firewall add rule name="Remote Access" protocol=TCP localport=135 action=allow dir=IN

T
tormozillo, 2021-07-26
@tormozillo

ansible can also work with Windows:
https://docs.ansible.com/ansible/latest/user_guide...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question