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 Chriss Miller 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: *

  • Users: djhawthorn
  • Content: Threads
  • Order by date
  1. djhawthorn

    Active Directory Trusts & Firewalls - Authentication Flows

    Hello, I have a complex AD environment involving many domains/forests and firewalls everywhere. For sake of this question, lets say I have 20 DC's in one forest and 10 in the other, and have a two-way forest trust between them. All DC's are behind different firewalls so without rules in...
  2. djhawthorn

    Active Directory Trusts & Firewalls - Authentication Flows

    Hello, I have a complex AD environment involving many domains/forests and firewalls everywhere. For sake of this question, lets say I have 20 DC's in one forest and 10 in the other, and have a two-way forest trust between them. All DC's are behind different firewalls so without rules in place...
  3. djhawthorn

    Preauthenticate before using GPMGMT

    Is there a way to preauthenticate to a remote/foreign domain before using a tool such as the GPMC Managament API (GPMGMT) to connect to that remote domain? I get 'Access Denied' when I try to bolt up to the remote DC if I dont have the same username and password in both domains...
  4. djhawthorn

    ADO Permission Failure when querying against remote domain

    Does anyone know how to get serverless binding to work for remote domain authentication/ADO queries? I have tried the example1 per the MS Scripting Guy page, however I always get ‘Provider: Permission denied’ whenever I try and execute the query. I have turned on auditing on the remote DC (in...
  5. djhawthorn

    ADSI / LDAP query OU tree

    I have the following code which enumerates the list of OU's in the domain and outputs the list to a HTA (indented using UL and LI tags): Function DoRecursiveLookup(strObjectDN) Set objConnection = GetObject("LDAP://" & strObjectDN) For each objChild In objConnection If (objChild.Class...
  6. djhawthorn

    ereg Regular Expression problem

    I have the following regular expression return ereg('^[a-zA-Z0-9]*([a-zA-Z]+[0-9]+)|([0-9]+[a-zA-Z]+)[a-zA-Z0-9]*$', $validate); Which work for validating a character string containing only alphanumerics and ensuring the string contains at least 1 alpha and 1 numeric; but I need to ensure it...
  7. djhawthorn

    Join two tables

    I have the following query: SELECT Team1, COUNT(Winner) AS Won FROM Games WHERE Winner = -1 GROUP BY Team1 UNION ALL SELECT Team2, COUNT(Winner) AS Won FROM Games WHERE Winner = -1 GROUP BY Team2; Which returns the following: +-------+-----+ | Team1 | Won | +-------+-----+ | 1 | 1 | |...
  8. djhawthorn

    RunOnceEx runs in the context of administrator or user privilege?

    Quick question: Does RunOnceEx runs in the context of an administrator account or the currently logged on user? I would assume it runs as the logged on user (and thus inherits the access that user has), but I just wanted to confirm as I can't find anything clear on this yet. If this is the...
  9. djhawthorn

    Windows PE and 802.1x

    Does Windows PE support 802.1x authentication? I want to see if I can install Windows XP using WinPE, but it needs 802.1x support (by way of a certificate) to ensure it responds to the switches authentication request, so it installs on the correct network. Thanks [ponder][laughtears] The...
  10. djhawthorn

    Unattended RIS Install with 802.1x support?

    Hello, I want to secure a LAN and all PC's with a 802.1x technology (EAP-TLS). This works fine when the OS is active because the supplicant is managed at the OS level and the supplicant can communicate with the authenticator. However, how would I go about automating the installation of a...
  11. djhawthorn

    VBScript Equivalent to 'net use' command

    Is there a VBScript equivalent to the DOS command net use \\servername\ipc$ /user:domain\username *? I need to create an authentication pipe to a number of remote servers before running some commands against them... would be nice to do this with VBScript. [ponder][laughtears] The dumber they...
  12. djhawthorn

    Issues with Windows Update and WinHTTP

    Does anyone know where I can get a copy of the proxy configuration tool for WinHTTP? The problem I am having is with Windows Update being unable to download updates; it has downloaded 12% of updates and stopped, and now the Windows Update log file is full of errors. I have tried updating off an...
  13. djhawthorn

    Unattended Install - Partitioning and Formatting

    Hello, I am looking at deploying some several hundred Windows 2003 Servers in the near future, which have to be built from scratch on brand new hardware (blank hard drives). Until now I have used Windows 2000 unattended installs, using a DOS (Win98) boot sector which has FDISK and FORMAT...
  14. djhawthorn

    Mapped drive - slow response at first

    Has anyone experienced an issue where you map a network drive, then attempt to access that drive and you get a very slow response at first (takes at least 20 seconds to display any files/folders)? After that initial delay, you have normal response times, so long as you don't leave it idle for...
  15. djhawthorn

    SurfControl Backup Issue

    Is anyone aware of what is required to be backed up for SurfControl to be successfully restored? We are running backups of the entire SurfControl tree (and in truth, the entire server), but the backup is failing due to numerous errors saying "Failed to open file D:\SurfControl...
  16. djhawthorn

    Brightstor Warning - Unable to logon as user

    I keep getting an error message below on all backup jobs running on a particular backup server: This happens at the start of each backup, yet the backup proceeds without problems. I have attempted to resubmit the jobs, and checked the credentials by modifying the job and browsing the remote...
  17. djhawthorn

    Brightstor Enterprise Backup jobs status of "Crashed"

    I'm having problems with Brightstor Enterprise Backup version 10.5 (build 2681) where two jobs keep crashing every night. The first job which backs up the local machine, crashes as soon as it begins. The other job which backs up several other nodes, does so (the backup runs for a while), then...
  18. djhawthorn

    Registry Setting? -- Use Word 2003 as Email editor

    Can someone tell me if the Outlook 2003 setting "Use Microsoft Office Word 2003 to edit e-mail messages" is set in the registry somewhere? Or if there is a way to toggle that switch on a large number of computers? Thanks. [auto] MCSE NT4/W2K
  19. djhawthorn

    Storing indexes

    Is there a way to store SQL database indexes on a dedicated disk? If so, how do you go about doing it? [auto] MCSE NT4/W2K
  20. djhawthorn

    Steps to Cluster a SQL Server 2000 installation

    I've been tasked with clustering 2 SQL Servers (SQL Server 2000) together, running Windows Advanced Server 2003. These are brand new installations of Windows/SQL, on new identicle hardware. There is the potential for this to become a 3-node and then a 4-node cluster in the near future. I also...

Part and Inventory Search

Back
Top