Category Archives: Datacenters
Managing Windows User Accounts using command line
From: http://windowscommand.uw.hu/wincmd0071.html Managing User Accounts Managing user accounts from the command line is different from managing them in the Active Directory Users And Computers administrative tool, chiefly because you have more options and it is easier to work with … Continue reading
Filed under Datacenters, Windows
Print all mail enabled public folders
$Address = @{Name=”SMTPAddress”;expression={if ($_.MailEnabled -eq $True){Get-MailPublicFolder $_ | Select PrimarySMTPAddress}}} Get-PublicFolder -GetChildren | select Name, Identity, MailEnabled, $Address | ft -Auto ################################### Or export to CSV the complete list of public folders: Get-PublicFolder -Recurse | Export-Csv c:\public_folders.csv -noType
Filed under Datacenters, Windows
Exchange 2007: Database Statistics in Powershell
1. How do we find number of mailboxes in each database? On Screen: Get-MailboxDatabase | Select Server, StorageGroupName, Name, @{Name=”Number Of Mailboxes”;expression={(Get-Mailbox -Database $_.Identity | Measure-Object).Count}} | Format-Table -AutoSize Export to CSV: Get-MailboxDatabase | Select Server, StorageGroupName, Name, @{Name=”Number Of … Continue reading
Filed under Datacenters, Windows
HP SIM not starting…. solution below..
Taken from http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=970515&admit=109447627+1256043921340+28353475 This is a summary of: http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=977955 These steps solved my issue of: Application Event: Date: 2/28/2006 Time: 2:23:22 PM Type: Error User: N/A Computer: [left out] Source: HP Systems Insight Manager Category: None Event ID: 3 Description: … Continue reading
Filed under Datacenters, Windows
I need to set roaming profile quotas but the 30mb limit fixed by Microsoft is a joke. What to do?
Locate your System.adm template , and look for the value “maxprofilesize”. Change the following… MAX 30000 to MAX 150000 can change the default value as well…. Save the ADM and reopen GPMC, and reset the policy. Reason I … Continue reading
Filed under Datacenters, Windows





