sábado, 13 de março de 2010
Life, love and cows
I guess my life is no different than one of those cliches. To be honest, it's quite embarrassing.. a 31 year old falls inlove with a 18 year old, and things go south. I mean, what's there to be surprised about? Even writing about it sounds stupid. Stupid or not, I was and still am inlove. and my biggest wish is to have died in one of our wild trips..
terça-feira, 29 de dezembro de 2009
Monitoring Hyper-V Performance
Overall health:
Hyper-V Virtual Machine Health Summary
Hyper-V Hypervisor
Processor:
Processor
Hyper-V Hypervisor Logical Processor
Hyper-V Hypervisor Root Virtual Processor
Hyper-V Hypervisor Virtual Processor
Memory:
Memory
Hyper-V Hypervisor Partition
Hyper-V Root Partition
Hyper-V VM Vid Partition
Networking:
Network Interface
Hyper-V Virtual Switch
Hyper-V Legacy Network Adapter
Hyper-V Virtual Network Adapter
Storage:
Physical Disk
Hyper-V Virtual Storage Device
Hyper-V Virtual IDE Controller
quarta-feira, 2 de dezembro de 2009
removing stale dhcp servers from AD
CN=NetServices,CN=Services,CN=Configuration,DC=domain,DC=local
Delete the CN=oldserver
segunda-feira, 30 de novembro de 2009
oabgen differential errors while installing exchange 2010/2007 into a 2003 organization
'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeSA\Parameters\OAL post full if diff fails'
DWORD, value 1
and update/rebuild the oab. It should be ok afterwards (verify by setting logging level to medium.
Remember to remove key afterwards.
How to set logging level?
Set-EventLogLevel -identity "MSExchangeSA\OAL Generator" -level medium
Address List and EAP filter upgrades with Exchange Server 2007
Use Get-EmailAddressPolicy Format-List Name,*RecipientFilter*,ExchangeVersion to check.
Use
Get-AddressList Format-List Name,*RecipientFilter*,ExchangeVersion
Get-GlobalAddressList Format-List Name,*RecipientFilter*,ExchangeVersion
To upgrade:
Set-EmailAddressPolicy "Default Policy" -IncludedRecipients AllRecipients
Set-AddressList "All Users" -IncludedRecipients MailboxUsers
Set-AddressList "All Groups" -IncludedRecipients MailGroups
Set-AddressList "All Contacts" -IncludedRecipients MailContacts
Set-AddressList "Public Folders" -RecipientFilter { RecipientType -eq 'PublicFolder' }
Set-GlobalAddressList "Default Global Address List" -RecipientFilter {(Alias -ne $null -and (ObjectClass -eq 'user' -or ObjectClass -eq 'contact' -or ObjectClass -eq 'msExchSystemMailbox' -or ObjectClass -eq 'msExchDynamicDistributionList' -or ObjectClass -eq 'group' -or ObjectClass -eq 'publicFolder'))}
Thanks to http://msexchangeteam.com/archive/2007/01/11/432158.aspx