Posts

Showing posts from 2016

Skype for Business iOS Client sign in issue

I had the problem that users of iOS devices couldn't log in to the Skype for Business Client on their devices. The reason of the problem was very simple. iOS clients doesn't support the basic NTLM authentication method. Resolution Check the web service configuration from the Skype for Business Server with the following steps: Start the Skype for Business Management Shell and view the web service settings with the command " Get-CsWebServiceConfiguation " Change the settings with the command " Set-CsWebServiceConfiguration -UseWindowsAuth Negotiate " (Default setting is NTLM) Check the new configuration with the command from Step 1 Now the iOS users can sign in again to Skype for Business Client. Good luck!

SCCM log location during task sequence

You can find the log of the task sequence on the following locations (is depending of the progress of the the task sequence): Before hard drive is formatted and partitioned X:\Windows\Temp\smstslog\smsts.log After hard drive formatted X:\smstslog\smsts.log and then copied to C:\_SMSTaskSequence\Logs\Smstslog\smsts.log Before SCCM agent installed C:\_SMSTaskSequence\Logs\Smstslog\smsts.log After SCCM agent installed %SystemRoot%\CCM\Logs\Smstslog\smsts.log After the task sequence is complete %SystemRoot%\CCM\Logs\smsts.log Good luck with the task sequence! ;-)