Advertisement

06.20.2008 at 02:55PM PDT, ID: 23503742
[x]
Attachment Details

Need a C# Expert to review code: I want to delete a single Wkstn obj from AD.

Asked by wally_davis in Microsoft Visual C#.Net

Tags: C#, IE 7.0

I'm relatively new to C# Programming and I've created a small Windows App to delete single and multiple workstation objects from Active Directory. I want to make sure the program is written correctly before I test. I certainly don't want to delete the wrong objects and get terminate from my Job. I need a C# Expert to evaluate.
With utmost gratitude,
WDStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
if (radioSingleObj.Checked)
            {
                if (textBoxSingle.Text == "")
                {
                    MessageBox.Show("You need to enter a workstation name", "Input Required", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                else
                {
                    string objectName = textBoxSingle.Text;
                    MessageBox.Show(objectName);
 
                    string strPath = "LDAP://OU=Workstations,OU=BAND,DC=Corp,DC=BankofAmerica,DC=Com";
                    DirectoryEntry entry = null;
                    entry = new DirectoryEntry(strPath);
                    DirectorySearcher wkstnSearcher = new DirectorySearcher(entry);
                    wkstnSearcher.Filter = "(&(objectClass=computer)(|(cn=" + objectName + ")))";
                    wkstnSearcher.ClientTimeout.Seconds.Equals(30);
                    SearchResult searchWkstn = wkstnSearcher.FindOne();
                    if (wkstnSearcher.CacheResults)
                    {
                        labelWkstnObjStatus.Text = "Workstation object was located";
                        entry.Properties["cn"].Remove(objectName);
                        entry.CommitChanges();
                        entry.Close();
                    }
                    else
                    {
                        labelWkstnObjStatus.Text = "Unabled to locate Workstation object";
                    }
                }
            }
[+][-]06.21.2008 at 04:46AM PDT, ID: 21837270

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.21.2008 at 08:35PM PDT, ID: 21839585

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.21.2008 at 08:44PM PDT, ID: 21839605

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.21.2008 at 08:51PM PDT, ID: 21839621

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.22.2008 at 05:17AM PDT, ID: 21840461

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.22.2008 at 05:18AM PDT, ID: 21840463

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.23.2008 at 07:17AM PDT, ID: 21846423

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.23.2008 at 07:50AM PDT, ID: 21846792

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.24.2008 at 10:14AM PDT, ID: 21858010

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Microsoft Visual C#.Net
Tags: C#, IE 7.0
Sign Up Now!
Solution Provided By: wally_davis
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628