Windows server 2003 and Windows XP – How to view shared folders on local computer via command line

Posted by aidas | Posted in Command line, Windows 2003, Windows XP | Posted on 04-05-2009

0

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

Windows server 2003 and Windows XP – How to fix NET Framework 2.x installation via command line

Posted by aidas | Posted in Command line, Windows 2003, Windows XP | Posted on 04-05-2009

0

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

Windows server 2003 and Windows XP – How to change time zone using command line

Posted by Thomas | Posted in Command line, Windows 2003, Windows XP | Posted on 04-05-2009

0

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

Windows server 2003 and Windows XP – How to disable Java update via registry

Posted by aidas | Posted in Registry, Windows 2003, Windows XP | Posted on 04-05-2009

0

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.

Windows server 2003 and Windows XP – How to join computer to domain via command line

Posted by aidas | Posted in Command line, Windows 2003, Windows XP | Posted on 04-05-2009

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

Windows server 2003/2008 and Exchange 2007 – How to delete storage group via powershell

Posted by aidas | Posted in Exchange 2007, Powershell, Windows 2003, Windows 2008 | Posted on 04-05-2009

0

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.

Windows server 2003/2008 and Exchange 2007 – How to create new storage group via powershell

Posted by aidas | Posted in Exchange 2007, Powershell, Windows 2003, Windows 2008 | Posted on 04-05-2009

0

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”

Windows server 2003/2008 – How to set Exchange 2007 mailbox quota via powershell

Posted by aidas | Posted in Exchange 2007, Powershell, Windows 2003, Windows 2008 | Posted on 04-05-2009

0

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

Windows server 2003/2008 and Exchange 2007 – How to move mailbox to another mailbox database

Posted by aidas | Posted in Exchange 2007, Powershell, Windows 2003, Windows 2008 | Posted on 04-05-2009

0

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