Just a quick post to outline the required services for the ST Connect Contact Center server and DVS.
The following should install all required services for the DVS and ST CCC.
###############################
###
# Install required "Windows Features"
Install-WindowsFeature web-asp
Install-WindowsFeature Web-Mgmt-Tools -IncludeAllSubFeature
Install-WindowsFeature Web-Ftp-Server -IncludeAllSubFeature
Install-WindowsFeature Web-Asp-Net
Install-WindowsFeature SMTP-Server
Install-windowsFeature qWave
###
# Reboot will be required for the qWAVE service install
Restart-Computer
###
# Set start up to automatic and start qWave service
Set-Service qWave -StartupType Automatic
start-service qWave
#
# Set start up to automatic and start SMTP-Server
Set-Service SMTPSVC -StartupType Automatic
start-service SMTPSVC
###############################
One day I hope to have this scripted nicely rather than just a copy and paste..
Teams Tracing/Logging
This post is to outline the logging/tracing items for a MS Teams environment, most of the tracing will be from the Teams Client/Web App/etc....

-
Set the LineURI for a user using calling plans (Telstra Calling) 1. Need the location ID Get-CsOnlineLisLocation 2. Set-CsOlineVoice...
-
Using the Office 365 IP Address and URL Web service to pull the latest information. The website above has all the listed parameters that...
-
This is a quick post so that I remember, as I'm sure at some point I will need to go looking for the directory structure to figure out w...