The Lync 2013 Web Scheduler was made for User who need to setup a Web Meeting without having Outlook available. It is a very convenient method and easy to understand. In our Demo Lab, I have documented all necessary steps: So let’s add a new Simple URL. We have three simple commands: $urlEntry = […]
Summary This article explains the authentication mechanisms of the following Skype for Business features: Dial-in conferencing Modern Admin Control Panel Web Scheduler applications Note: We recommend that you use the new Modern Admin Control Panel (MACP) instead of the old Admin Control Panel. This is because the old panel operates on Silverlight technology that is out of […]
Prerequisites Go to Package Center and install Docker Go to File stations and navigate to Docker folder Create two folders, wp-app and wp-db Open Docker on Synology and select Registry tab Search for WordPress and MySQL, download both with latest tag Buy me a drink on Ko-fi 🙂 Create MySQL Container Go to Container tab and Create a Container: Select Image: mysql Network: bridge […]
To see who has autoreply set, run powershell script Get-Mailbox | Get-MailboxAutoReplyConfiguration | Where-Object { $_.AutoReplyState –eq “scheduled” } | fl identity. or this Get-Mailbox | Get-MailboxAutoReplyConfiguration | Where-Object { $_.AutoReplyState –eq “enabled” } | fl identity. To check autoreply for 1 user, run Get-MailboxAutoReplyConfiguration –identity username To turn off, run Set-MailboxAutoReplyConfiguration -Identity username -AutoReplyState […]
The point of this post is to help those that can’t have 2 NIC on 2 separated not routable subnets. I have already encountered some customers whose security team stated that it was technically impossible to deploy an additional subnet on their current security/network infrastructure. Many of you know that Lync Edge Requirements have the following […]
Download OpenSSL Win64OpenSSL_Light-3_2_1 openssl pkcs7 -in c:\temp\certnew.p7b -inform DER -print_certs -out c:\temp\certificate.pem
Microsoft IIS can serve the role of an SMTP quite nicely but requires quite a few steps to get set up. Lucky for you, I’ve set up an IIS SMTP relay server and documented all of the steps! In this article, we will cover all of the steps needed to successfully set up an SMTP […]
List DNS servers ~ # esxcli network ip dns server list DNSServers: 192.168.76.2 ~ # Add DNS server ~ # esxcli network ip dns server add -s 8.8.8.8 ~ # esxcli network ip dns server list DNSServers: 192.168.76.2, 8.8.8.8 ~ # Remove DNS server ~ # esxcli network ip dns server remove -s 8.8.8.8 ~ […]