Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JojoNo1

    Markdmac Longon script question

    I will try it to see if it fits the need. Thanks
  2. JojoNo1

    Markdmac Longon script question

    the reason I needed this approach is that the administrator log on to their machine using a regular NTFS login user id but when they need to go to servers that they are the only one allowed to go to, they have to log on as a secondary ID to these servers, the secondary IDs are used only for this...
  3. JojoNo1

    Maping to a remot drive as different user

    I did WshNetwork.RemoveNetworkDrive("E", True, True) and then I do WshNetwork.MapNetworkDrive "E:", "\\SomeServer\SomeShare", false, txtUsername.Text.ToString, txtPassword.Text.ToString I still get the error "Multiple connections to a server or shared resource by the same user, using more...
  4. JojoNo1

    Markdmac Longon script question

    Mark thanks for the reply, but I tried WshNetwork.MapNetworkDrive("E:", "\\SomeServer\SomeShare", Ttrue, txtUsername.Text.ToString, txtPassword.Text.ToString) as well WshNetwork.MapNetworkDrive("E:", "\\SomeServer\SomeShare", False, txtUsername.Text.ToString, txtPassword.Text.ToString) Same...
  5. JojoNo1

    Maping to a remot drive as different user

    Hi I’m trying to write a small utility that allows people to map to a remote drive without making the connection persistent. So I use the code below in a window form Dim WshNetwork As Object WshNetwork = CreateObject("WScript.Network") WshNetwork.MapNetworkDrive("E:"...
  6. JojoNo1

    Markdmac Longon script question

    Hi I’m trying to write a small utility that allows people to map to a remote drive without making the connection persistent. So I use the code below in a window form Dim WshNetwork As Object WshNetwork = CreateObject("WScript.Network") WshNetwork.MapNetworkDrive("E:"...
  7. JojoNo1

    Querying a large group over 2000 users

    I am trying to write an LDAP query and I like to get all the users belonging to a certain group, my problem is that the group is too big and when it is big the result set comes back with an error. I think the only way around it is to get all the users in this group with last name starting with...

Part and Inventory Search

Back
Top