Solved, have got the answer in other thread if any1 needs it for reference..
Explanation:
Local WMI worked, but now I'm trying to do it remotely. I've tried disabling both firewalls, checking WMI permissions (Logging in with administrator account) and that should be fine. Yet when trying to connect with IP I keep getting: 0x800706BA error, yet when using the PC-name, no error shows, but WMI isn't showing any result.
Lansweeper succeeded. (http://www.lansweeper.com/kb/3/WMI-Access-is-denied.html)
Connection Error: 0x800706BA at managementScope.Connect()
System.Runtime.InteropServices.COMException (0x800706BA): The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) at System.Management.ThreadDispatch.Start() at System.Management.ManagementScope.Initialize() at System.Management.ManagementScope.Connect() at Admin_Helper.frmRemoteInformation.button1_Click(Object sender, EventArgs e) in c:\Users\Stef\Documents\Visual Studio 2012\Projects\Admin_Helper\Admin_Helper\frmRemoteInformation.cs: line 110 at System.Windows.Forms.Control.OnClick(EventArgs e) at System.Windows.Forms.Button.OnClick(EventArgs e) at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ButtonBase.WndProc(Message& m) at System.Windows.Forms.Button.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 message, IntPtr wparam, IntPtr lparam)
-
Question:
What would be the best way to check if the connection has succeeded/failed or its the wmi and how to fix it.
ManagementScope managementScope;
ObjectQuery query;
private void btnConnect_Click(object sender, EventArgs e)
{
try
{
ConnectionOptions remoteConnectionOptions = new ConnectionOptions();
remoteConnectionOptions.Impersonation = ImpersonationLevel.Impersonate;
remoteConnectionOptions.EnablePrivileges = true;
remoteConnectionOptions.Authentication = AuthenticationLevel.Packet;
remoteConnectionOptions.Username = txtUsername.Text;
remoteConnectionOptions.Password = txtPassword.Text;
managementScope = new ManagementScope(@"\\" + txtServer.Text + @"\root\CIMV2", remoteConnectionOptions);
managementScope.Connect();
MessageBox.Show("Connected");
}
catch (Exception ex) { MessageBox.Show(ex.Message); }
}
private void cmbClassSelection_SelectedIndexChanged(object sender, EventArgs e)
{
var dctPropertyList = new Dictionary<string, string>();
query = new ObjectQuery(cmbClassSelection.SelectedItem.ToString());
new Thread(() => FindWMI(managementScope, query, dctPropertyList, lstProperties)).Start();
}
private void FindWMI(ManagementScope scope, ObjectQuery query, Dictionary<string, string> dct, ListView listView)
{
try
{
List<ListViewItem> itemsList = new List<ListViewItem>();
ManagementObjectSearcher moSearcher = new ManagementObjectSearcher(scope, query);
Invoke(new MethodInvoker(() =>
{
listView.Items.Clear();
}));
foreach (ManagementObject moObject in moSearcher.Get())
{
if (moObject != null)
{
foreach (PropertyData propData in moObject.Properties)
{
if (propData.Value != null && propData.Value.ToString() != "" && propData.Name != null && propData.Name != "")
dct[propData.Name] = propData.Value.ToString();
}
}
}
foreach (KeyValuePair<string, string> listItem in dct)
{
ListViewItem lstItem = new ListViewItem(listItem.Key);
lstItem.SubItems.Add(listItem.Value);
itemsList.Add(lstItem);
}
Invoke(new MethodInvoker(() =>
{
listView.Items.AddRange(itemsList.ToArray());
}));
}
catch (Exception) { }
}
UPDATE:
Problem seems to be something with WMI.
UPDATE2:
. Most stupid mistake ever. Had to change 2 things:
remoteConnectionOptions.Username = txtUsername.Text; ==> remoteConnectionOptions.Username = txtServer.Text + @"\" + txtUsername.Text;Which would give: "Server-Name\Username"Query = new ObjectQuery(cmbClassSelection.SelectedItem.ToString()); ==> objectQuery = new ObjectQuery("select * from " + cmbClassSelection.SelectedItem.ToString());
Forgot the "select * from " since I work with the combobox.
In case anyone is going to need the code, I'll update it after I clean it up a little.