This PowerShell script will enable [PowerShell Remote Access] for all your servers in your network Server Farm.
If you have automated scripts that need to run on these servers at a specific time, then this needs to be set up for all Servers in your Farm.
[PowerShell - Remote Access Permissions]
CFFCS | CarrzSynEdit: | PS (PowerShell)
# List all the Server Nodes here at the top.

$nodes = @("Core01", "Core02", "Core03")
$psPath = "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"

foreach ($node in $nodes) {
    Write-Host "Enabling PSRemoting on $node..." -ForegroundColor Cyan
    Invoke-CimMethod -ComputerName $node -ClassName Win32_Process -MethodName Create -Arguments @{
        CommandLine = "$psPath -ExecutionPolicy Bypass -Command 'Enable-PSRemoting -Force'"
    }
}

[Successful Output]
Enabling PSRemoting on Core01...
Enabling PSRemoting on Core02...
Enabling PSRemoting on Core03...
ProcessIdReturnValuePSComputerName
---------------------------
24120Core01
81880Core02
69200Core03