Question : Can I expand my C drive in the machine having two partitions?

I need to upgrade my database server from Windows 2000 Server to 2003 Server.  My server has two partition C and D.   This upgrade needs minimum 2BG in the C drive.  My C drive has only 1.04GB  left after I tried to clean up unnecessary file.  My D drive has 22.8 GB left.

Any way to expand the C drive ? Please let me know.

Thanks,

Answer : Can I expand my C drive in the machine having two partitions?

You could do:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
Public Class Form1

    Private WithEvents tmr As New System.Windows.Forms.Timer
    Private Declare Auto Function GetForegroundWindow Lib "user32.dll" () As IntPtr

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        tmr.Interval = TimeSpan.FromMinutes(5).TotalMilliseconds
        tmr.Start()
    End Sub

    Private Sub tmr_Tick_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmr.Tick
        Dim foreWnd As IntPtr = GetForegroundWindow
        For Each P As Process In Process.GetProcesses
            If P.MainWindowHandle.Equals(foreWnd) Then
                Debug.Print("Current Time: " & DateTime.Now)
                Debug.Print("Process Name: " & P.ProcessName)
                Debug.Print("Process Title: " & P.MainWindowTitle)
                Debug.Print("-----------------------------------------------------------")
                Exit For
            End If
        Next
    End Sub

End Class
Random Solutions  
 
programming4us programming4us