M
M
Matvey Bubenets2017-04-20 04:38:37
PHP
Matvey Bubenets, 2017-04-20 04:38:37

How to disable Remote Desktop Licensing?

Good day! There was a problem with windows server 2012. The problem is as follows:
When trying to connect to it via rdp, the following message is displayed: "The remote session has been disconnected because there are no remote desktop license servers available to perform licensing." The problem arose after this very licensing was enabled about six months ago. How it was included - no one, of course, remembers. Licensing is not required at all. There is access to the server without rdp, but rdp is needed.
How to disable licensing and forget about it?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
A
Arman, 2018-05-02
@Arik

<?= array_sum(array_map(function ($item) {
    return $item['invoice_status'] == 1 ? $item['invoice_ammount'] : 0;
}, $invoices)) ?>

S
Sergey Gerasimov, 2018-05-02
@mrTeo

<?=array_reduce($invoices, function(&$sum, $item) {
    return $sum + ($item['invoice_status'] == 1) ? $item['invoice_ammount'] : 0; 
})?>

K
Kairat Ubukulov, 2018-05-02
@ubukulov

You can use the operator: +=
Read more here:

<?$invo = 0;
foreach($invoices as $item): ?>
<? if (!($item['invoice_status'] == 1)) {
continue;
}?>
<? $invo += $item['invoice_ammount']; ?>
<?endforeach; echo $invo; ?>

M
mamayama, 2017-04-20
@mamayama

You are wrong.
Licensing has always been necessary.
There are 2 but:
1) 180 days or so - free licenses are given. Most likely, this free period has ended and now you need to redeem the licenses.
2) It is possible to log in (with the /admin key or with the /console key) as an administrator without licenses. But no more than 2 sessions.
If you are talking about cracks, then you are in the wrong place.

J
Janus74, 2017-04-20
@Janus74

Remove the Terminal Server role

A
Artem, 2017-04-20
@devspec

tavalik.ru/ustanovka_servera_terminalov_windows_se...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question