Thursday, May 5, 2011
Symantec Enterprise Vault Compliance Accelerator v9 SP2 has synchronization with AD group broken
Let me note that the bug is VERY critical making the Compliance Accelerator scheduled searches return zero hits, because the target employee group has no employees.
The workaround is to synchronize the EV CA employee group with “Active Directory Container” and not “Windows group or distribution list”
Wednesday, February 23, 2011
Netbackup 7.0.1 and Encryption
Here is the solution:
1. Locate and rename the file keyfile.dat (
2. Run bpkeyutil -client
(Keyfile.dat gets re-created)
Friday, February 4, 2011
Scheduled Task as a Clustered Resource
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SchedulingAgent so that the tasks
folder location is pointed to the tasks subdirectory on the shared disk.
2.- Go into Cluster Administrator to create a new resource in one group and
choose Generic Service
3.- Possible owners and choose Next and for dependencies, add the Disk and
the Network Name
4.- Service Name: “Schedule”, Parameters: “%SystemRoot%\System32\svchost.exe -k netsvcs”; Root Registry Key: Software\Microsoft\SchedulingAgent
Friday, January 14, 2011
Permissions to SQL Database
Monday, October 4, 2010
Restart the domain controller in Directory Services Restore Mode Remotely
http://technet.microsoft.com/en-us/library/cc779687(WS.10).aspx
Assign permissions to the tree of OUs when inheritance turned off (through Powershell)
After I reported that task is done, I heard from the users in that group that they still get ‘Access is denied’ trying to move computer objects. I discovered that in AD permissions inheritance was disabled for most of the sub-OUs. So, there are more than 1,000 OUs to add permissions to.
Following script took care of the task for me:
#Require Quest "Active Roles Management Shell for Active Directory".
#Put following to the text document saved as *.ps1:
add-PSSnapin quest.activeroles.admanagement
$OU = “root OU DN”
get-qadobject -searchRoot $OU -searchScope 'SubTree'-Type organizationalUnit -SizeLimit 0 |
Add-QADPermission -Account “domainname\user group to add permissions” -Rights CreateChild -ApplyTo All -ChildType
Computer
Wednesday, August 11, 2010
Email Router for CRM4 and multi-server environment
We discovered interesting issue with email router when there are few (more than one) CRM4 Servers connected to the same database.
All CRM components in multi-server environment work independently: all requests are being fulfilled by the particular server to which server user connects.
Except e-mails (and mail merge).
Email Router happens to work only on the first CRM server in the environment.
Let me explain a little further:
Let's say you have 3 CRM servers: server1, server2, server3 connecting to the same database. They are combined to the server farm by the load balancer. "Virtual" name of the farm is crm.yourcompany.com. Users access CRM using "virtual" name: http://crm.yourcompany.com.
User requests are answered by one of 3 servers (server1 or server2 or server3) – directed by load balancer.
Let's say, user connects to server3, opens Contact and selects 'Send E-mail'. User fills email fields and click 'Send'. You would expect that email router on server3 processes that email. You would be wrong – email gets processed by email router on server1.
(I wonder what will happen if server1 goes down – would it mean that there will be no email processing by email router? – to me it looks like a single point of failure – hello, Microsoft…)