Dell keeps an up-to-date linux ISO image that you can boot with CD, USB, or Virtual CD. Just go to-
https://dell.app.box.com/bootabler620
Note- simply replace the "620" with the appropriate model of your server. 620 would be for a PowerEdge R620.
Wednesday, August 24, 2016
Wednesday, April 13, 2016
Exchange 2013 in EMC you get he WinRM client sent a request to the remote WS-Management service and was notified that the request size exceeded the configured MaxEnvelopeSize quota.
I use a powersehell command to give a certain mailbox full control of all mailboxes. In Exchange 2013's EMC, I started getting the following error-
Sending data to a remote command failed with the following error message: The WinRM client sent a request to the remote WS-Management service and was notified that the request size exceeded the configured MaxEnvelopeSize quota.
I found some info on-line related to Exchange 2010, but to resolve this in 2013 with Windows 2012 was slightly different.
In a command line (not powershell)-
winrm get winrm/config
Look for this-
MaxEnvelopeSizekb = 2000
I upped it to 8000- (Note, I had to use quotation marks)
winrm set winrm/config @{MaxEnvelopeSizekb="8000"}
୍
Sending data to a remote command failed with the following error message: The WinRM client sent a request to the remote WS-Management service and was notified that the request size exceeded the configured MaxEnvelopeSize quota.
I found some info on-line related to Exchange 2010, but to resolve this in 2013 with Windows 2012 was slightly different.
In a command line (not powershell)-
winrm get winrm/config
Look for this-
MaxEnvelopeSizekb = 2000
I upped it to 8000- (Note, I had to use quotation marks)
winrm set winrm/config @{MaxEnvelopeSizekb="8000"}
୍
Thursday, March 31, 2016
How to update file attachment size in Exchange 2013
To check-
get-transportconfig | ft maxsendsize, maxreceivesize
get-receiveconnector | ft name, maxmessagesize
get-sendconnector | ft name, maxmessagesize
get-mailbox Administrator |ft Name, Maxsendsize, maxreceivesize
To Fix-
Set-TransportConfig -MaxSendSize 50MB -MaxReceiveSize 50MB
Get-Mailbox | Set-Mailbox -MaxSendSize 50MB -MaxReceiveSize 50MB
get-transportconfig | Set-TransportConfig -maxsendsize 50MB -maxreceivesize 50MB; get-receiveconnector | set-receiveconnector -maxmessagesize 50MB; get-sendconnector | set-sendconnector -maxmessagesize 50MB; get-mailbox | Set-Mailbox -Maxsendsize 50MB -maxreceivesize 50MB
get-transportconfig | ft maxsendsize, maxreceivesize
get-receiveconnector | ft name, maxmessagesize
get-sendconnector | ft name, maxmessagesize
get-mailbox Administrator |ft Name, Maxsendsize, maxreceivesize
To Fix-
Set-TransportConfig -MaxSendSize 50MB -MaxReceiveSize 50MB
Get-Mailbox | Set-Mailbox -MaxSendSize 50MB -MaxReceiveSize 50MB
get-transportconfig | Set-TransportConfig -maxsendsize 50MB -maxreceivesize 50MB; get-receiveconnector | set-receiveconnector -maxmessagesize 50MB; get-sendconnector | set-sendconnector -maxmessagesize 50MB; get-mailbox | Set-Mailbox -Maxsendsize 50MB -maxreceivesize 50MB
Tuesday, March 8, 2016
You can't get your Cisco ASA to work with CenturyLink's GPON DSL product on a cisco ASA 5506
So CenturyLink has a new product called GPON. It is delivered via a DSL modem connected to an Adtran TA324 which is connected via Fiber to their backbone. The service utilized PPPOE however I couldn't make this work to save my life.
Turns out, you have to tage VLAN 201. On an ASA 5506 / 5512 this is how you do it-
interface GigabitEthernet1/2
description Connection to Clink GPON DSL
no nameif
no security-level
no ip address
!
interface GigabitEthernet1/2.201
vlan 201
nameif outside
security-level 0
pppoe client vpdn group Qwest
ip address pppoe setroute
Turns out, you have to tage VLAN 201. On an ASA 5506 / 5512 this is how you do it-
interface GigabitEthernet1/2
description Connection to Clink GPON DSL
no nameif
no security-level
no ip address
!
interface GigabitEthernet1/2.201
vlan 201
nameif outside
security-level 0
pppoe client vpdn group Qwest
ip address pppoe setroute
Thursday, March 3, 2016
You have one user who continuously gets "Outlook cannot log on. Verify you are connected to the network and using the proper server and mailbox name." with Exchange 2013
You have one user who continuously gets "Outlook cannot log on. Verify you are connected to the network and using the proper server and mailbox name." with Exchange 2013. Blowing away their outlook or even machine profile doesn't resolve it.

On the Exchange server, restart the Microsoft Exchange RPC Client Access service.

On the Exchange server, restart the Microsoft Exchange RPC Client Access service.
Friday, January 29, 2016
How to easily find where an AD Object or User is located and what it's Distinguished Name is
I'm often asked how to easily find an AD object or how to find it's ldap distinguished name. It's easy. Just run-
dsquery user –name account_name
Wednesday, December 16, 2015
How to check attachment limits in Exchange
get-transportconfig | ft maxsendsize, maxreceivesize get-receiveconnector | ft name, maxmessagesize get-sendconnector | ft name, maxmessagesize get-mailbox Administrator |ft Name, Maxsendsize, maxreceivesize
Subscribe to:
Posts (Atom)