how to configure EWS on exchange using powershell
- No Comments
- Dec, 06, 2012
- Angelo Schalley
- Exchange, Windows-Microsoft
Check configuration :
Get-WebServicesVirtualDirectory |fl identity,internalurl,externalurl
Set internal EWS configuration
Set-WebServicesVirtualDirectory -Identity “MAIL01\EWS (Default Web Site)” -InternalUrl https://MAIL01.domain.local/EWS/Exchange.asmx -BasicAuthentication:$true
Set external EWS configuration
Set-WebServicesVirtualDirectory -Identity “MAIL01\EWS (Default Web Site)” -ExternalUrl https://something.domain.com/EWS/Exchange.asmx -BasicAuthentication:$true
Read more on how to configure EWS on exchange using powershell…
upgrade windows 2008r2 standard to enterprise to upgrade memory usage
- No Comments
- Nov, 30, 2012
- Angelo Schalley
- Windows-Microsoft
Windows Server 2008 R2 includes a command-line tool called the Deployment Image Servicing and Management tool, or DISM. It’s functionally equivalent to the Windows Anytime Upgrade feature in client versions of Windows. You can run it from an elevated command prompt.
Read more on upgrade windows 2008r2 standard to enterprise to upgrade memory usage…
Cisco ASA DNS doctering rewrite new and old style
- No Comments
- Nov, 29, 2012
- Angelo Schalley
- Cisco, DNS, security
DNS inspection has to be configured
pre 8.3
static (inside,outside) 188.93.56.14 192.168.1.5 netmask 255.255.255.255 dns
8.3 and later
cisco(config)# object network internal-server-dns
cisco(config-network-object)# host 192.168.1.5
cisco(config-network-object)# nat (inside,outside) static 188.93.56.14 dns
Read more on Cisco ASA DNS doctering rewrite new and old style…