Question : Hyper v full Installation remote administration issues

Hi all
I have just install Hyper v 2008 on my server, i have also installed the hyper v manger on my desktop.

1. i can remote desktop to the hyper v server with no issues
2. i cant seem to connect to the server with the hyper v manager
3. i cant seem to ping the server but can remote desktop to it

i have attached by errors that i am getting as images, can you please help me asap

Attachments:
 
error1
error1
 

Answer : Hyper v full Installation remote administration issues

I think that you need something like this.  Remember to set a reference to the Microsoft Active Data Objects library.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
Private Sub UserForm_Initialize()
    Dim cn As New ADODB.Connection
    Dim rs As New ADODB.RecordSet
    Dim strConn As String
    
    strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\My Folder\MyDatabase.mdb;User Id=admin;Password=;"
    cn.Open strConn
        rs.Open "Select * From ClientNames ORDER By Pname", cn, adOpenDynamic, adLockOptimistic, adCmdText
            ListBox1.Clear
            Do Until rs.EOF
                ListBox1.AddItem rs, rs.Fields("PName").Value
                rs.MoveNext
            Loop
        rs.Close
    cn.Close

End Sub
Random Solutions  
 
programming4us programming4us