воскресенье, 17 сентября 2017 г.

MS SQL Server. DBMail error [474] Microsoft.SqlServer.Management.SqlIMail.Server.Common.BaseException: Mail configuration information could not be read from the database. ---> System.InvalidCastException

Дата        17.09.2017 19:14:16
Журнал        Агент SQL Server (Текущий - 17.09.2017 19:14:00)

Сообщение
[474] Unable to refresh Database Mail profile notify@extdomain.com. (reason: Microsoft.SqlServer.Management.SqlIMail.Server.Common.BaseException: Mail configuration information could not be read from the database. ---> System.InvalidCastException: Не удалось привести тип объекта "System.DBNull" к типу "System.Byte[]".
   в Microsoft.SqlServer.Management.SqlIMail.Server.DataAccess.DataAccessAdapter.GetAccount(Int32 accountID)
   --- Конец трассировки внутреннего стека исключений ---
   в Microsoft.SqlServer.Management.SqlIMail.Server.DataAccess.DataAccessAdapter.GetAccount(Int32 )

Для решения читать этот пост.

В SQL убрана поддержка TLS 1.0

Копипаста:
Enabling FIPS in local group policy fixed the database mail issue:

    Open gpedit.msc. In the Local Group Policy Editor, double-click Windows Settings under the Computer Configuration node, and then double-click Security Settings.
    Under the Security Settings node, double-click Local Policies, and then click Security Options.
    In the details pane, double-click System cryptography: Use FIPS-compliant algorithms for encryption, hashing, and signing.
    In the System cryptography: Use FIPS-compliant algorithms for encryption, hashing, and signing dialog box, click Enabled, and then click OK to close the dialog box. Close the Local Group Policy Editor.

Restart SQL Server machine for this change to take affect.

четверг, 7 сентября 2017 г.

Veeam Endpoint + Veeam Backup & Replication

https://helpcenter.veeam.com/evaluation/backup/vsphere/en/setup_repository.html
+
https://helpcenter.veeam.com/endpoint/11/vbr_integration.html
+
https://www.veeam.com/blog/veeam-endpoint-backup-integration-with-veeam-backup-replication-administration.html
+
https://habrahabr.ru/company/veeam/blog/261481/

Veeam Endpoint Backup используемые порты

https://helpcenter.veeam.com/endpoint/11/used_ports.html

Ограничить ресурсы на терминальном сервере по пользователям

Читать сюда:
https://blogs.technet.microsoft.com/enterprisemobility/2009/05/29/using-wsrm-to-control-rds-dynamic-fair-share-scheduling/
Гуглится по
terminal server limit user resources
- - -
Компонент был убран в 2012 и новее. Замена - hyper-v. Бгггг

среда, 6 сентября 2017 г.

Exchange. Удаление писем во всех ящиках с темой и пр.

Поиск сообщений на нужном сервере + с нужной темой и удаление соответствующего элемента.
Get-Mailbox -Server "MYEXCHANGE" | Search-Mailbox -SearchQuery 'Subject:"Приветствую! THIS IS A SPAM"' -targetmailbox "MYMAILBOX" -targetfolder "*" -loglevel full -deletecontent

Поиск сообщений в определенном ящике + с нужной темой и удаление соответствующего элемента.
Search-Mailbox -Identity USERMAILBOX@DOMAIN.COM -SearchQuery 'Subject:"Приветствую! THIS IS A SPAM"' -targetmailbox "MYMAILBOX" -targetfolder "*" -loglevel full -deletecontent

Поиск сообщений на нужном сервере + с нужной темой и вывод результата в лог.
Get-Mailbox -Server  "MYEXCHANGE" | Search-Mailbox -SearchQuery 'Subject:"Приветствую! THIS IS A SPAM"' -targetmailbox "MYMAILBOX" -targetfolder "*" -logonly -loglevel full >c:\temp\temp111111.txt

Копипаста:
Источник 


Windows, показать сохраненный пароль от wifi сети

1. netsh wlan show profile
2. netsh wlan show profile name=MYWIFINETWORK key=clear

сурс