• Home
  • Articles
    • Office 365
    • Exchange
    • Skype for Business (Lync)
    • Active Directory
    • Windows
    • Sharepoint
    • Joomla
    • Linux
    • Other
    • Blackberry
  • Project: Nagios Monitoring
    • First steps
    • NSCP installation
    • Scripts
    • FAQs
  • Links
  • Home
  • About
  • Impressum
Toggle navigation
Admin Enclave
  • Home
  • Articles
    • Office 365
    • Exchange
    • Skype for Business (Lync)
    • Active Directory
    • Windows
    • Sharepoint
    • Joomla
    • Linux
    • Other
    • Blackberry
  • Project: Nagios Monitoring
    • First steps
    • NSCP installation
    • Scripts
    • FAQs
  • Links
Home
/
Articles
/
Skype for Business (Lync)
/
Implementing the Skype for Business Call Quality Dashboard

Implementing the Skype for Business Call Quality Dashboard

Bastian W.Nov 08, 2016Articles \ Skype for Business

Abstract: This short HowTo will outline the steps needed to install the Skype for Business (=SfB) Call Quality Dashboard

This is a quick/basic installation guide, it will not go true some security hardening steps!

Preparation:

- Install a Windows 2012 R2 OS (fully patched) [In this howto we will reference the machine with the name sfbcdq01]

- Download the SfB Call Quality Dashboard installer from here and store it on the sfbcdq01 server

- Add a 2nd Disk to the sfbcdq01 server. It will be used to save the SfB Call Quality Dashboard data

- Install a supported SQL version on the sfbcdq01 server (We will use SQL 2012 Standard in this howto). You need "Database Engine Services", "Analysis Services", the full "Management Tools". During installation the AD account which is used should be added to the administrator section. You later one can change that. Once done start the SQL Server Agent and set that to automatically.

- Create an AD account (contoso\SfBQoEmetricsRead) which you assign reader access (db_datareader role/permissions) on the SfB QoEmetrics DB. This account will replicate the data from this DB to the QoEArchive which exists on our sfbcdq01. To follow this howto you need to give the user also Administrator access on sfbcdq01.

- Create an 2nd AD account (contoso\SfBCQDPortal). Grant him also administrator access on sfbcdq01

Do not use a password which starts with "+" as this might cause issues

 

Steps:

1.) Install the prequisites via:

add-windowsfeature Web-Server, Web-Static-Content, Web-Default-Doc, Web-Asp-Net, Web-Asp-Net45, Web-Net-Ext, Web-Net-Ext45, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Http-Logging, Web-Url-Auth, Web-Windows-Auth, Web-Mgmt-Console

After that check for pending updates and reboot the server if needed.

2.) Download and install (on the Call Quality Dashboard server) the following SQL features from here:

SQL_AS_ADOMD.msi

SQL_AS_AMO.msi

3.) Fully patch the Server and the installed SQL components via Microsoft Update

4.) run the SfB Call Quality Dashboard installer (you can find more details here)

4a.) Press "Next"

 

4b.) Select the license and press next

4c.) Accept the default folder and press on "next"

4d.) Make sure all the features are selected, then press next

4e.) Now here comes the tricky part, the QoE Archive Configuration

A.) QoEMetrics SQL Server: SQL Server and instance name where the SfB QoE Metrics database is located. This DB should be created when you install your SfB environment. If you use the default instance from the SQL server here, you can use the hostname.

B.) QoE Archive SQL Server Instance:the The local SQL Server instance name for where the Archive DB is to be created. Leave this field blank for the default SQL instance installed on the current server.

C.) QoE Archive Database: as we will start with a new DB, keep that on "Create new database"

D.) Database File Directory: location where the new database files are to be created. Recommended a separate disk volume, so change the folder to "D" instead "C"

E.) Use Multiple Partitions: 'Multiple partition' requires Business Intelligence edition or Enterprise edition of SQL Server. 'Single Partition' only requires for a Standard edition (but cube processing performance may be impacted) which must be selected here.

F.) SQL Agent Job User: AD User Name & Password which is used to connect to the QoEmetrics database and replicate the QoEArchive

After that press on "next"

4f.) the next is the "Cube Configuration"

 

A.)  QoE Archive SQL Server Instance: SQL Server instance name for where the QoE Archive DB is located. To specify a default SQL Server instance on the current server, leave this field blank.

B.) Cube Analysis Server: SQL Server Analysis Service instance name for where the cube is to be created. This can be a different machine but for this howto we need to enter the FQDN from our sfbcdq01 here.

C.) Partition: 'Multiple partition' requires Business Intelligence edition or Enterprise edition of SQL Server. 'Single Partition' only requires for a Standard edition (but cube processing performance may be impacted) which must be selected here.

D.) Cube user: A Domain service account name and password (masked) that will trigger the cube processing. If QoE Archive component was selected for the install, this field will be pre-populated with the value provided on the Archive Configuration page for the SQL Agent Job User. Microsoft recommend to specifying a different domain service account so that Setup can grant the least required privilege to it here, but we will not change that and use the same account as a step before.

After that press on "next"

4g.) Next step is the "Portal Configuration"

A.) QoE Archive SQL Server: SQL Server instance name for where the QoE Archive database is located. Note that unlike the QoE Archive Configuration page and the Cube Configuration page, the machine name is not fixed and must be provided. If QoE Archive component was selected for the install, this field will be pre-populated with the value provided on the QoE Archive Configuration page.

B.) Cube Analysis Server: SQL Server Analysis Service instance name for where the cube is located. If Cube component was selected for the install, this field will be pre-populated with the value provided on the Cube Configuration page.

C.) Repository SQL Server: SQL Server instance name where the Repository database is to be created. If the SQL Server instance name for where the QoE Archive database is located has been provided earlier in the setup (in other components), this field will be pre-populated with the QoE Archive DB SQL Server instance name. This can be any SQL Server instance.

D.) Repository Database: By default the option is set to “Create new database”. Since Repository DB upgrade is not supported, the only circumstance under which the “Use existing database” option can be used is if the existing Repository DB has the same schema as the build to be installed.

E.) IIS App Pool User: An AD User Name & Password which is the account that the IIS application pool should execute under. We use the 2nd AD account here.

4h.) Press "Install"

4i.) Press "Finish" to close the installer.

5.) Now add a https binding to the server and assign an SSL certificate to it. For security reasons you can now also remove the http binding

6.) Configure the authorization (as written here)

6a.) Create a local  group on the server called "CQDPortalUsers". You can use the GUI or use powershell:

$cn = [ADSI]"WinNT://$env:computername"
$group = $cn.Create("Group","CQDPortalUsers")
$group.setinfo()
$group.description = "Allow access to the SfB CQD Portal"
$group.SetInfo()

6b.) Now add the users (e.g. AD user) you need to the local AD group

6c.) Now go to the authorization rule (Root Level) inside the IIS Manager

6d.) Modified the default Authorization rule and add the CQDPortalUsers group we created before.

7.) Configuring File Access

According to the Microsoft Technet, the next step is to configure the dashboard of the CQD. After users are authenticated by IIS, they will have to have file permissions on the CQD directory in order to access the web portal content. It is possible to change the ACLs through the security tab of the CQD directory properties to add individual users or groups; however the recommended approach is to leave the file permissions untouched. Instead, change the IIS setting to use the IIS worker process to access the CQD directory no matter which user is authenticated.

7a.) Make sure you select "CQD" under the "Default Web Site" then click on the configuration editor icon

7b.) Under Section, choose system.webServer/serverRuntime.

7c.) Change the "authenticatedUserOverrride" to "UseWorkerProcessUser" after that press on "Apply"

8.) At this point the CDQ portal is configured and should work. You can visit the following URL "https://<YourServer>/CQD/#/Health" to check for any issues and when the latest import took place.To access the portal simply browse the URL "https://<YourServer>/CQD". Check then here on how to create some reports.

If you wish to troubleshoot something you can configure the debug mode in the QoEDataService/Web.config as written here.

9.) Cleanup:

As the accounts we use have administrator access you might wish to finetune that and lower the needed rights for security purpose.

10.) Post-install

Follow the Post-install tasks here now. For more infos how to use the DashBoard, check the Microsoft Website here.

11.) Optional:

SSL encryption for an SQL Server instance

Kommentare (16)

Pat
Pat
  1. vor 3 Jahren
  2. #153
This comment was minimized by the moderator on the site

I keep getting errors trying to get the Cube installed.
It goes through the install and at the end says:
"Skype for Business Server 2015, Call Quality Dashboard Setup Wizard ended prematurely because of an error. Your system as not been modified....

I keep getting errors trying to get the Cube installed.
It goes through the install and at the end says:
"Skype for Business Server 2015, Call Quality Dashboard Setup Wizard ended prematurely because of an error. Your system as not been modified. To install this program at a later time, run Set Wizard again. Click the Finish button to exit the Setup Wizard."
I'm stuck at what to do next.

Weiterlesen
  1. Antworten
Bastian W.
Bastian W.    Pat
  1. vor 3 Jahren
  2. #154
This comment was minimized by the moderator on the site

Hm, did you see something in the logfiles / eventlog which shows a better error message?

  1. Antworten
Pat
Pat    Bastian W.
  1. vor 3 Jahren
  2. #155
This comment was minimized by the moderator on the site

The only thing I see in the "Application" logs is:

"Product: Skype for Business Server 2015, Call QUality Dashboard - Error 1806. You have in sufficient privileges to read this folder."

I'm logged on as a domain admin running the installer so...

The only thing I see in the "Application" logs is:

"Product: Skype for Business Server 2015, Call QUality Dashboard - Error 1806. You have in sufficient privileges to read this folder."

I'm logged on as a domain admin running the installer so not sure what to look at.

Weiterlesen
  1. Antworten
Bastian W.
Bastian W.    Pat
  1. vor 3 Jahren
  2. #156
This comment was minimized by the moderator on the site

That´s not that much. I would delete all folders created here ans start from scratch. Error 1806 mean "You have insufficient privileges to read this folder." as written here (https://msdn.microsoft.com/en-us/library/windows/desktop/aa372835(v=vs.8...

That´s not that much. I would delete all folders created here ans start from scratch. Error 1806 mean "You have insufficient privileges to read this folder." as written here (https://msdn.microsoft.com/en-us/library/windows/desktop/aa372835(v=vs.85).aspx), so something is not fine on that OS.

Weiterlesen
  1. Antworten
Jeff
Jeff    Pat
  1. vor 3 Jahren
  2. #230
This comment was minimized by the moderator on the site

run powershell or cmd as administrator then navigate to the msi and execute the msi through the Administrator Powershell or CMD.

  1. Antworten
big dave
big dave    Jeff
  1. vor 2 Jahren
  2. #417
This comment was minimized by the moderator on the site

Kind of got further but then got SQL errors Imagonna reboot the server again

  1. Antworten
MAME
MAME
  1. vor 3 Jahren
  2. #187
This comment was minimized by the moderator on the site

Hi, trying to install Call Quality Dashboard on Windows Server 2016 with SQL Server 2016. Installation Keep asking me for IIS 7 or 8 version. Is there any Workaround for IIS 10?

  1. Antworten
Bastian W.
Bastian W.    MAME
  1. vor 3 Jahren
  2. #188
This comment was minimized by the moderator on the site

Windows 2016 is not yet supported. So there is currently no known workaround.

  1. Antworten
MAME
MAME    Bastian W.
  1. vor 3 Jahren
  2. #189
This comment was minimized by the moderator on the site

THANKS

  1. Antworten
john
john
  1. vor 3 Jahren
  2. #244
This comment was minimized by the moderator on the site

I'm logged on as a domain admin running the installer so not sure what to look at.

  1. Antworten
Bastian W.
Bastian W.    john
  1. vor 3 Jahren
  2. #267
This comment was minimized by the moderator on the site

Try to run the installed as admin, you should have admin rights, but running it "as admin" might help.

  1. Antworten
Varun
Varun
  1. vor 3 Jahren
  2. #320
This comment was minimized by the moderator on the site

Hi,

We have deployed successfully CQD in our Skype On-Premises Environment.
We have 3 DC in US, EMEA & APAC and 150 Branch sites. Also we have added subnet and site information in SKype Control Panel (Network Configuration).
But when we run CQD...

Hi,

We have deployed successfully CQD in our Skype On-Premises Environment.
We have 3 DC in US, EMEA & APAC and 150 Branch sites. Also we have added subnet and site information in SKype Control Panel (Network Configuration).
But when we run CQD through URL we can see only global reports not specific to site and subnet,
I have found lots of article where everyone is talking about how to upload data in Skype Online but did not get for Skype On-Premises how to upload this site and network configuration in QOEdb.

Please paste the article or tell us the way how we can deploy this?

Thanks
Vics

Weiterlesen
  1. Antworten
Muse
Muse
  1. vor 3 Jahren
  2. #327
This comment was minimized by the moderator on the site

is this CQD supported for Lync server 2013?

  1. Antworten
Bastian
Bastian    Muse
  1. vor 3 Jahren
  2. #328
This comment was minimized by the moderator on the site

According to the Microsoft Website which said "The Skype for Business Server 2015 Call Quality Dashboard (CQD) is a reporting layer on top of the Quality of Experience Database in the Monitoring Server in Skype for Business Server 2015 and Lync...

According to the Microsoft Website which said "The Skype for Business Server 2015 Call Quality Dashboard (CQD) is a reporting layer on top of the Quality of Experience Database in the Monitoring Server in Skype for Business Server 2015 and Lync Server 2013." Lync Server 2013 should work here as well yes.

Weiterlesen
  1. Antworten
Bugra
Bugra
  1. vor 10 Monaten
  2. #763
This comment was minimized by the moderator on the site

I couldn't get over Cube step

my sql server is enterprise and seperated. I created new instance for QoEArchive but it doesn't work

I think it says that can't connect SQL Server Analysis Service but i can connect easily throught SQL Management...

I couldn't get over Cube step

my sql server is enterprise and seperated. I created new instance for QoEArchive but it doesn't work

I think it says that can't connect SQL Server Analysis Service but i can connect easily throught SQL Management Tools without any problem

Action 16:55:03: CheckCubeArchiveSQLConnection.
Action start 16:55:03: CheckCubeArchiveSQLConnection.
Action ended 16:55:06: CheckCubeArchiveSQLConnection. Return value 1.
Action 16:55:06: CheckSSASConnection.
Action start 16:55:06: CheckSSASConnection.
Action ended 16:55:07: CheckSSASConnection. Return value 3.
DEBUG: Error 2896: Executing action CheckSSASConnection failed.
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2896. The arguments are: CheckSSASConnection, ,

Weiterlesen
  1. Antworten
Bastian W.
Bastian W.    Bugra
  1. vor 9 Monaten
  2. #769
This comment was minimized by the moderator on the site

hm, did you checked the rights from the taskuser you are using? Maybe this user do not have the required rights...

  1. Antworten
There are no comments posted here yet

Einen Kommentar verfassen

  1. Posting comment as a guest.
Anhänge (0 / 3)
Share Your Location

Server 20152016 - MS Skype for Business Server

Follow me on Twitter

Recent Posts

  • How to connect a Osram On/Off Plug with Phoscon/deCONZ

    Freitag, 20. März 2020
  • Update TPM Firmware on Windows 10 1909

    Samstag, 15. Februar 2020
  • Switch your PC from BIOS to UEFI

    Dienstag, 07. Januar 2020
  • WLAN 6 (AX) released

    Montag, 23. September 2019
  • Use deCONZ to perform an OTA firmware update of OSRAM devices

    Samstag, 23. März 2019

Tags

Exchange 20162016 - MS ExchangeServer 2015Hardening2016 - MS Skype for Business Server 2017 - MS WindowsWindows Server 2012Windows2017 - MS ExchangeExchange 20132016 - MS Windows2013Exchange2017 - MS Skype for Business Server 2016 - MS SharepointRaspberry PiMicrosoftOpenHABHomeMatic2017 - MS Sharepoint

Archive

      • How to connect a Osram On/Off Plug with Phoscon/deCONZ
      • Update TPM Firmware on Windows 10 1909
      • Upgrade the BIOS from an ReadyNAS device
      • Switch your PC from BIOS to UEFI
      • WLAN 6 (AX) released
      • [ReSolved] Get-MailboxRestoreRequest matches multiple entries and couldn´t be performed
      • Use deCONZ to perform an OTA firmware update of OSRAM devices
      • Remove the Transparent Data Encryption (TDE) from a SQL DB
      • Install OpenHAB 2.4.x on Raspberry Pi (on Debian 9 - Stretch)
      • Windows 10 Driver for HP EliteBook 2570p Notebook-PC
      • Windows 10 Driver for HP EliteBook 850 G1 Notebook
      • Windows 10 Driver for HP EliteBook 8570p Notebook
      • Windows 10 Driver for IBM Thinkpad T560 Notebook
      • Windows 10 Driver for HP EliteBook 850 G5 Notebook
      • Windows 10 Driver for Lenovo T560 Notebook
      • Add an additional Sharepoint Admin to every Site Collection via Powershell
      • Do not install .NET Framework 4.7.2 on Exchange Servers yet
      • [Resolved] Unable to Migrate User to O365 due to "Target user 'XYZ' already has a primary mailbox"
      • Migrate SharePoint Elements to SharePoint Online
      • Microsoft Exchange OU picker is empty when creating new user or group
      • Exchange Online Powershell failed to connect when using MFA
      • Move-DatabasePath caused a "WMI exception occurred on server XY: Quota violation"
      • Privacy Policy
      • D:\AdvancedDataGovernanceLogs created on Exchange 2016
      • After May 2018 security update "An authentication error occurred" using RDP
      • Find out which .NET Framework version is installed
      • Install OpenHAB 2.0.x on Raspberry Pi (on Debian 9 - Stretch)
      • Convert a *.pfx certificate into *.pem
      • Changing last modified and creation date or time via PowerShell
      • Multidimensional arrays in Powershell
      • HowTo create an Enterprise Wiki on SharePoint Online
      • Attention: Microsoft Office 365 will disable support for TLS 1.0 and 1.1
      • [RESOLVED] Graphics Card issue when installing BlueStacks inside VMWare
      • How to create a pkcs12 file with a ordered certificate chain?
      • Publish an S/Mime certificate to AD via Powershell
      • [RESOLVED] iOS accounts needs permission to access resources in your organization that only an admin can grant
      • [RESOLVED] Exchange 2016 CU X failed to install error 1619
      • Headless Raspberry Pi WLAN Configuration
      • How to remove all partitions on an USB stick / SD card
      • How to generate a notifications once Handbreak finished its current work?
      • Enable TLS 1.1 and TLS 1.2 as a default secure protocols in WinHTTP
      • Security Hardening: Upgrade Diffie-Hellman Prime to 2048 bit on Windows Server
      • Change a SSL Certificate on Windows Server 2012 R2 Web Application Proxy
      • Add Windows Updates to a Windows 7 SP1 image
      • When using Import-Module you got an unblock file error
      • [Resolved] Exchange admin got the error "User profile cannot be loaded" when using RDP
      • Google Chrome browser to deprecate trust in existing Symantec-issued certificates
      • [RESOLVED] Error ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY when using Google Chome and OWA
      • Cumulative Update 6 for Exchange Server 2016 released
      • Windows Phone 8.1 will reach EOL on the 2017-07-11
      • .NET Framework 4.7.* and Microsoft Exchange Server
      • Disable weak cipher (e.g. 3DES, SSLv3, MD5, ...) suites in Java
      • [RESOLVED] "Could not find stored procedure" after installing SfB Server Updates
      • [RESOLVED] None of the network adapters are bound to the netmon driver.
      • [Resolved] No connectivity with any of Web Conferencing Edge Servers - Event 41026
      • Raspberry Pi - Connect to multiple wireless networks (WLAN) automatically
      • From 0 to Raspberry Pi (start with Raspberry Pi)
      • [RESOLVED] Exchange 2016 IIS not usable after installation from CU5
      • Microsoft Exchange 2007 reached end of life today
      • .NET Framework 4.7 released but not yet supported on Exchange 2016
      • .NET Framework 4.7 released but not yet supported on Skype for Business
      • Using Quest ActiveRoles Management Shell to add/update all users from a OU inside an AD group
      • [RESOLVED] Can´t install Office Web Apps Server because it requires .NET 4.5
      • Cumulative Update 5 for Exchange Server 2016 released
      • Using the Skype for Business device update service
      • Enable XA transactions on Microsoft SQL 2012
      • [RESOLVED] The Open Procedure for service XXX in DLL "C:\Windows\System32\XXX.dll" failed. Performance data for this service will not be available. The first four bytes (DWORD) of the Data section contains the error code
      • WES7 is crashing on VMWare Workstation
      • WES7 / WES8 OS deployment issue on VMWare Workstation
      • [RESOLVED] Growing amount of missing disk space on Microsoft Exchange
      • Disabling TLS 1.0 on Microsoft Sharepoint
      • Reset the content index on an MS Exchange DAG environment
      • Deploy the Statistics Manager for Skype for Business Server
      • HowTo add own formats to the TinyMCE Editor in Joomla?
      • Create a Kerberos authentication account in Skype for Business
      • Hardening Microsoft Exchange 2016 Server
      • Hardening Microsoft SharePoint 2016 Server
      • Hardening Microsoft Skype for Business Server
      • [Workaround] "Screen presenting isn't supported with this contact" with SfB MAC
      • [RESOLVED] Black or frozen screen during screensharing in Skype for Business 2016
      • Exchange Windows OS Hardening: Disable SSL 2.0/3.0 & PCT 1.0 & weak ciphers
      • SfB Windows OS Hardening: Disable SSL 2.0/3.0 & PCT 1.0 & weak ciphers
      • SharePoint Windows OS Hardening: Disable SSL 2.0/3.0 & PCT 1.0 & weak ciphers
      • Configure https for Windows Remote Management (WinRM) on Windows 2012 R2
      • Configure https for Windows Remote Management (WinRM) on Windows 2012 R2
      • Configure https for Windows Remote Management (WinRM) on Windows 2012 R2
      • Hardening Skype for Business Server
      • [RESOLVED] You do not have the permission to send the message on behalf of the specified user
      • Copy Windows Installation DVD to ISO
      • [RESOLVED] The remote certificate is invalid according to the validation procedure.
      • Prevent that the Skype for Business client will open when the user click on an meeting URL
      • Test GroupPolicy (*.admx templates) locally without AD
      • Implementing the Skype for Business Call Quality Dashboard
      • Configure / Finetune the Microsoft Exchange search / indexing feature
      • Disable content indexing on all DBs on an Exchange DAG
      • HowTo: create Search Sharepoint 2013 Foundation Application via Powershell
      • Migrate from Exchange 2010 to Exchange 2016
      • Enable TLS 1.2 on Windows 2012 R2
      • Download Skype for Business for MAC
      • [RESOLVED] Exchange 2013/2016 hub transport Mail.que file large in size
      • How to get only a subset from a 2 GB big logfile?
      • Add the Internet Explorer 11 and Updates to a Windows 7 SP1 image
      • [RESOLVED] MSExchange Mailbox Replication error 1006 (database doesn't exist)
      • Nagios Core 3.x installation guide on Debian 8.x (Jessie)
      • Move Exchange 2010/2013 user to Exchange 2016
      • [RESOLVED]: "Whole calendar" greyed out when publishing a calendar via Outlook on a webdav server
      • SfB Windows OS Hardening: Disable the "X-AspNet-Version" header
      • Exchange Windows OS Hardening: Disable the "X-AspNet-Version" header
      • SharePoint Windows OS Hardening: Disable the "X-AspNet-Version" header
      • Powershell: Clean (Remove) all completed Exchange Mailbox move requests
      • HP Data Protector isn´t able to browse an Exchange 2016 DAG
      • Powershell: Get a list from all Exchange users, where the latest logon time is older then 270 days
      • Usefull links
      • Hardening Microsoft Exchange 2013 Server
      • [Solution] Skype for Business Error: This message wan´t send to Firstname LastName
      • Step-By-Step: Configuring Office Online Server with Skype for Business
      • Troubleshooting connection issues from users migrated from Exchange 2010 to Exchange 2013/2016
      • Skype for Business Server DB update needed after patch management
      • How to check the progress of the ‘Shrink Database’ task in SQL Server 2012
      • Build an MS Exchange Throttling Policy to remove inactive mobile device partnerships
      • Exchange Windows OS Hardening: Disable NTFS 8 Dot 3
      • SfB Windows OS Hardening: Disable NTFS 8 Dot 3
      • SharePoint Windows OS Hardening: Disable NTFS 8 Dot 3
      • Windows OS Hardening: Disable NTFS 8 Dot 3
      • [RESOLVED] Centralized Logging Service Agent Error while moving cache files to network share.
      • [RESOLVED] MS Web Application Proxy used with SfB caused a Error 502
      • Manage the SSL certificate on Exchange 2016 via Powershell
      • [RESOLVED] How to fix damaged or corrupt Health Mailbox on Exchange 2016
      • [RESOLVED] "The client and server cannot communicate, because they do not possess a common algorithm"
      • Homematic IP Schalt und Steckdose mit CCU 2 verbinden / anlernen
      • Exchange 2010 to Exchange 2016 Co-Existence migration OWA redirect not working
      • Factory reset HomeMatic IP devices
      • Factory reset / Werksreset von HomeMatic IP Geräten
      • Pairing / Using Homematic IP Pluggable Switch and Meter with an CCU2
      • [Resolved] A Skype for business user isn´t able to join meeting via invitation link
      • Installation von BluePy auf dem Raspberry Pi
      • Install BluePy on Raspberry Pi
      • Released: Microsoft Exchange 2016 CU 2
      • Install OpenHAB 1.x on Raspberry Pi
      • Installieren von OpenHAB 1.x auf dem Raspberry Pi
      • Rebalance Mailbox Databases in an Exchange Server DAG via TaskManager
      • Fix a failed and suspended content index state on MS Exchange
      • Howto send an email using telnet
      • Hardening Windows Server (Basic Steps)
      • [RESOLVED] No DNS servers could be retrieved from network adapter 00000000-0000-0000-0000-000000000000
      • [RESOLVED] Setup can't use the domain controller because it belongs to Active Directory site
      • Use MS Web Application Proxy as reverse proxy (and ADFS) with Skype for business
      • [RESOLVED] Error message 0x80094004 when completing a certification request on IIS
      • [RESOLVED] Unable to collect NUMA physical memory utilization data. The first four bytes (DWORD) of the Data section contains the status code.
      • Get all Exchange user inclusive details from a list of AD groups
Admin Enclave

The Admin enclave delivers the latest news, quick tips, useful tricks, and in-depth tutorials for IT pros working with IT solutions (e.g. Microsoft Sharepoint, Microsoft Exchange, Microsoft Skype for Business, Joomla, ...).

Follow Us

Recent Posts

  • How to connect a Osram On/Off Plug with Phoscon/deCONZ

    Freitag, 20. März 2020
  • Update TPM Firmware on Windows 10 1909

    Samstag, 15. Februar 2020
  • Switch your PC from BIOS to UEFI

    Dienstag, 07. Januar 2020
  • WLAN 6 (AX) released

    Montag, 23. September 2019
  • Use deCONZ to perform an OTA firmware update of OSRAM devices

    Samstag, 23. März 2019

Popular Posts

  • How to fix “The program can’t start because MSVCR110.dll is missing from your computer.” error on Windows

    Sonntag, 07. April 2013
  • [RESOLVED] You do not have the permission to send the message on behalf of the specified user

    Mittwoch, 16. November 2016
  • [RESOLVED] Exchange 2013/2016 hub transport Mail.que file large in size

    Donnerstag, 13. Oktober 2016
  • [RESOLVED] The Open Procedure for service XXX in DLL "C:\Windows\System32\XXX.dll" failed. Performance data for this service will not be available. The first four bytes (DWORD) of the Data section contains the error code

    Mittwoch, 08. März 2017
  • [RESOLVED] "The client and server cannot communicate, because they do not possess a common algorithm"

    Mittwoch, 13. Juli 2016
© 2012 - 2021 admin-enclave.com | Disclaimer | Privacy Policy | Imprint | Articles by year