This post will show quick way how to see all shares on local computer. For this open command line on your Windows server 2003 or Windows XP and type:
net share
In this post you`ll see how to repair corrupted Net framework 2.x installation. To perform it open command line on your Windows server 2003 and type:
“C:\WINDOWS\microsoft.NET\Framework\v2.0.50727\Microsoft .NET Framework 2.0\install.exe” /qb! /norestart
Today i`ll show you how to change time zone using command line. Lets suppose we want to change it to Hawaii zone. In that case open command line on your Windows server 2003 and type:
RunDLL32.exe shell32.dll,Control_RunDLL timedate.cpl,,/Z (GMT-10:00) Hawaii
How to #CMD by Thomas
If, for some reason, you want to disable automatic java update popup this how to is for you. To do it open registry editor (Start>Run>regedit) on your Windows server 2003 and navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy
Double click on “EnableJavaUpdate” and change value from 1 to 0.
This post will show you how to join computer “TestPC” to domain “testdomain.com” using command line. To do that open command line on Windows server 2003 and type:
netdom /domain:testdomain.com /user:testuser /password:yourpassword member TestPC /add
This post will show you how to delete storage group named “TestStorageGroup” from Exchange 2007 server named “MyExchange” running on Windows server 2003 OS. To perform delete open powershell and type:
Remove-StorageGroup -Identity “MyExchange.mydomain.com\TestStorageGroup”
Note that storage group`s log files are not removed when you perform remove. If you want to remove log files you have to do it manually.
This post will show how to create new storage group named “TestStorageGroup” in Exchange 2007 server “TestServer” running on Windows server 2003 OS. We will set storage group log location to D:\Logs. To create storage group open exchange powershell and type:
New-StorageGroup -Name TestStorageGroup -Server TestServer -LogFolderPath: “D:\Logs”
This post will show how to use get-mailbox and set-mailbox cmdlets to set mailbox quota for all mailboxes in OU “TestUsers” using powershell. We will set warning quota to 200Mb, prohibit send to 400Mb and prohibit send\receive quota to 600Mb. To implement it open powershell on you Windows server 2003 and type:
Get-Mailbox -OrganizationalUnit “TestUsers” | Set-Mailbox -IssueWarningQuota 209715200 -ProhibitSendQuota 419430400 -ProhibitSendReceiveQuota 629145600 -UseDatabaseQuotaDefaults $false
This post will show you how to use Move-Mailbox powershell cmdlet and move testuser@mydomain.com mailbox to another mailbox database in Exchange 2007 server named NewMBX. To do that open powershell for exchange in your Windows server 2003 and type:
Move-Mailbox testuser@mydomain.com -TargetDatabase NewMBX
Type Y to confirm move