Net extreme II deployment
Broadcom Net Extreme II Driver deployment in MDT 2010 - Venkat's Blog - Site Home - TechNet Blogs
Tips, tricks, and scripts for Admins on the run. Also this serves a a brainless repository for me when I know I'll need it later.
Friday, November 26, 2010
Monday, November 22, 2010
Slow rdp logons to terminal servers
Disable RSoP logging
the source of the logon delays was the large size of the WMI repository located on the servers at c:\windows\system32\wbem\repository\objects.DATA. When policies are applied by the user during logon, the system must read and write to the repository. When it is very large (we observed some servers with an objects.DATA file at 1.6GB in size), the Windows Management Instrumentation (WMI) service may block transactions for a period of time. By disabling the dependency on the Group Policy engine on this repository, the users no longer experienced delays during user log on.
http://support.microsoft.com/kb/2020286
the source of the logon delays was the large size of the WMI repository located on the servers at c:\windows\system32\wbem\repository\objects.DATA. When policies are applied by the user during logon, the system must read and write to the repository. When it is very large (we observed some servers with an objects.DATA file at 1.6GB in size), the Windows Management Instrumentation (WMI) service may block transactions for a period of time. By disabling the dependency on the Group Policy engine on this repository, the users no longer experienced delays during user log on.
http://support.microsoft.com/kb/2020286
Labels:
delays,
RDP,
remote desktop,
slow logon,
terminal server,
wbem,
wmi
Sharepoint 2010 update tracing service in Health Analyser
Make sure you have registered the account with Sharepoint first then run this powershell script.
$farm = Get-SPFarm
$tracingService = $farm.Services | where {$_.Name -eq "SPTraceV4"}
$managedAccount = Get-SPManagedAccount "\SPtrace"
$tracingService.ProcessIdentity.CurrentIdentityType = "SpecificUser"
$tracingService.ProcessIdentity.ManagedAccount = $managedAccount
$tracingService.ProcessIdentity.Update()
$tracingService.ProcessIdentity.Deploy()
$farm = Get-SPFarm
$tracingService = $farm.Services | where {$_.Name -eq "SPTraceV4"}
$managedAccount = Get-SPManagedAccount "
$tracingService.ProcessIdentity.CurrentIdentityType = "SpecificUser"
$tracingService.ProcessIdentity.ManagedAccount = $managedAccount
$tracingService.ProcessIdentity.Update()
$tracingService.ProcessIdentity.Deploy()
Friday, November 12, 2010
MSExchangeIS 9519 0x972: Public Folders Container Deleted, or Missing Required Attributes
So I migrated exchange 2003 to exchange 2010 and the public folder hierarchy got borked. The Microsoft engineer gave this article to me to help get it rebuilt. It shows up when you have a public folder issue and the hierarchy doesn't move correctly.
MSExchangeIS 9519 0x972: Public Folders Container Deleted, or Missing Required Attributes
MSExchangeIS 9519 0x972: Public Folders Container Deleted, or Missing Required Attributes
Subscribe to:
Posts (Atom)