Category: Direct Access
If You have to get something out to a csv-file from Direct Access Reporting. You have to use powershell. For the last 30 days use below script.
1 2 3 4 5 |
$startdate = (Get-Date).AddDays(-30) $enddate = Get-Date Get-RemoteAccessConnectionStatistics –StartDateTime $startdate –EndDateTime $enddate | Export-Csv -nti -enc utf8 –Path c:\dir\da.csv |
Yesterday customer had a problem with Direct Access and Citrix. The situation was … Direct Access worked just fine, but applications published thru XenApp didn’t open. The problem was that Citrix XenApp didn’t send Fully Qualified Domain Name (FQDN) response…
This was tricky. I had implemented several Direct Access configurations, but none of them went crazy like the newest one. Network Location Awereness (NLA) kept changing the localtion of DMZ network adapter to Domain Profile. That is not good for…
Yesterday I got a request to seek and change two DTE ip-addresses. Only problem was that these ip’s were generated by Direct Access setup wizard. So they appeared as Extra Registry Settings: No worries. These are written to registry.pol:…
And hi again. Today a customer had problems with Forefront AUG Direct Access. Recently they had renewed CA-Root -certificate and then crl and delta crl -lists got renewed also with name ca-root(1).crl and ca-root(1)+.crl They are using a internal CA-Root…
Direct Access is an excellent vpn-solution from Microsoft. With Server 2012 R2 it got even better. There is alot of pages telling how to install it right, but in real life you have to combine some of them. So here…