Search results for query: *

  • Users: esnmb
  • Content: Threads
  • Order by date
  1. E

    .Net 2.0 Security Over Network

    I'm sure this has been answered before but I can't find it via this forum nor Google. I'm also not sure if this is the correct forum to post this in. How can I allow .Net 2.0 apps to run from mapped network drives/network shares? I know there is no 2.0 configuration wizard unless you install...
  2. E

    32-bit code on 64-bit server

    I thought 32-bit can run on AMD64 bit CPU's? I am getting this error when running my VB.Net 2003 app: Event Type: Information Event Source: DrWatson Event Category: None Event ID: 4097 Date: 12/6/2006 Time: 3:42:22 PM User: N/A...
  3. E

    Converting LDAP VBscript to VB.Net

    I can't figure this one out. Here is the script: Set objDataList = CreateObject("ADODB.RecordSet") objDataList.Fields.Append "Count", adVarChar, MaxCharacters objDataList.Fields.Append "LDAP", adVarChar, MaxCharacters objDataList.Open objDataList.AddNew objDataList("Count") = COUNT...
  4. E

    Add data to Terminal Services Profile tab for user

    I am able to update/modify this tab via vbscript, but I have this application that does user creation processes via the helpdesk. I cannot find where or how to do this from vb.net. I can create the user, mailbox and add the user to all the groups they need to be in, but I don't know how to...
  5. E

    Possible to add sections to app.config?

    Is it possible to add multiple sections to the app.config file? Like <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="EXCH1" value="Mailbox Store 1" /> <add key="EXCH2" value="Mailbox Store 2" /> </appSettings> <Path> <add...
  6. E

    Setting Asynchronous to True with DirectorySearcher

    Is there any way set this to True with DirectorySearcher?
  7. E

    Retrieve Other User Properties from AD

    I'm creating a form that on start up will retrieve all "Name" properties from AD. I would like to select one of the names from the dropdown and be able to display all of the other attributes related to that one user name. This is what I have so far. Imports System.DirectoryServices Public...
  8. E

    Any idea how to implement this?

    I'm not even sure what this would be called, but is there a way to create this? See attached image.
  9. E

    Why doesn't this Search work?

    The search is working, but I want the app to also tell me that the user account does NOT exist. If the username exists in AD the app tells me, but if I put in Else in there nothing happens when I put in a garbage username. This is what I have so far: Dim entry As New...
  10. E

    How to Enable New AD Account

    I've searched the Net for two days now and can't get any of the solutions to work. This is what I have so far: Const ADS_UF_ACCOUNTDISABLE = &H2 Dim lngFlag As String = lngFlag Xor ADS_UF_ACCOUNTDISABLE usr.Properties("userAccountControl").Value = lngFlag usr.CommitChanges()
Back
Top