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 bkrike 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: jonlake
  • Content: Threads
  • Order by date
  1. jonlake

    Net::LDAP How to return DN on a search

    It seems like this should be so obvious that I'm looking right past it. What I'm trying to do is have a user enter their uid and password, and then bind to the directory server as themself. However, if I do a search for that person my $ldap = Net::LDAP->new( '127.0.0.1:4389') or die "$@"; my...
  2. jonlake

    IIS / Integrated Windows Authentication issues between trusted domains

    Here is the situation. We have two domains, DomianA and DomainB. There is a server (IIS 6.0, virtual server, W2003) in DomainA that hosts a website that users of DomainA are able to access with integrated windows authentication. When users in DomainB attempt to access the website, they get...
  3. jonlake

    Is there a faster way to do this?

    my @local_files = glob('c:\\update\\lpt*'); #there could be multiple lpt files, and i need the latest one, signified by a number in the file name so I sort them and get the last one. my @sorted_files = sort { $a<=>$b; } @local_files; my $local_size = $#sorted_files; my $local_latest =...
  4. jonlake

    Trouble with Win32::AD::User module

    I am on Windows XP and running activestate perl. I used ppm to install the Win32::AD::User module. The example code from the cpan website of setting up a connection use Win32::AD::User; $user = AdUser->new( ADS_CONNECT_STRING, USER_REFERENCE_STRING ); acts as if the module isn't installed...
  5. jonlake

    sa Password recovery

    We have a Microsoft Server running Microsoft SQL Server 2000. It is a domain member and I have domain access rights. Anyone that may have known this password has left the company. I would like to know if there is a way to recover the sa password. I have physical access to the box, so that isn't...
  6. jonlake

    Force download in IIS

    When clients go to my ftp site and double click the file (text file) it opens the file in the browser. How can I force them to download the file rather than opening it. Thanks.
  7. jonlake

    Run startup script as local admin

    I have a vbs script that will run when a user logs on. However, a few operations in the script require modifying the registry and installing an upgrade, which require local admin privleges. This script is being deployed as a GPO linked to a users OU.
  8. jonlake

    JSP and LDAP

    Just to let you know, I was first introduced to JSP a few days ago when I was told "There is this tool we use to create ldap accounts that is created in JSP and the person who made it isn't around anymore". It still works for the most part, but we want some added functionality. So, I have been...
  9. jonlake

    Upgrade from Exchange 2000 to 2003

    I am going to be doing an upgrade from Exchange 2000 to 2003. Currently it is on a Windows 2000 server. I have been browsing in the Sybex Mastering Exchange 2003 book. In here, the author talks about upgrading from Exchange 2000 to 2003, and says I have to upgrade the server OS as well. On...
  10. jonlake

    Remote Desktop

    I am looking for a remote desktop application that will do the following: *Allow someone to be at the console of the pc, and allow another to logon with a remote desktop that will not disturb the session that is already established at the console *Restrict which applications that the remote user...
  11. jonlake

    CCNA or ICND exam

    I was looking at cisco's website and found the following about recertifying. CCNA certifications are valid for three years. To recertify, either pass the current CCNA exam, or pass the ICND exam, or pass any 642 professional level or Cisco Qualified Specialist exam (excluding Sales Specialist...
  12. jonlake

    DNS with Fedora Core 2 not working

    I'm running an internal DNS server on my home network. I am using FC2. Here is my zone file: Last login: Sat Oct 23 10:09:35 2004 from 192.168.0.102 [root@server root]# cat /var/named/procns.zone $TTL 86400 @ IN SOA procns.net. jon.procns.net. (...
  13. jonlake

    trouble setting cookie and redirecting

    I wrote a simple script to make sure a user is authorized to access a webpage (roster of area youth soccer leauge) then if they are authorized it will show the roster. Here is my script with some stuff edited out. There is only one username and password that everyone will use. <?php...
  14. jonlake

    Business Deomgraphic Report

    Does anyone know of a publication put out that lists the businesses in an area and their deomgraphics? Like line of business, number of employees, etc?
  15. jonlake

    Send page by email

    Is there a way to use Send page by email File>Send>Page by email using a different email client than Outlook? We use TAO email client and can't figure out how to get this to work. Thanks, Jon
  16. jonlake

    Apache virtual host

    I have two domain websites that I am hosting www.thewoodswork.com and www.procns.net. I setup a virtual host entry to accomplis this. The virtual host was working fine, but out of nowhere it is doing some weird stuff. I have www.procns.net setup as the main/default server in section 2 of...
  17. jonlake

    Starting a consulting business

    I had emailed Glen Johnson with a few questions, and he felt it would benefit everyone if I were to post it here. The following is the email I sent him. He will reply with his answers when he has time. Glen, Allow me to introduce myself. My name is Jon Lake and I have been reading on tek-tips...
  18. jonlake

    Red Hat DNS

    Ok, for the life of me, I can't figure out why my DNS server isn't working. Here is my /etc/named.conf file (I am only worried about the local portion.). // generated by named-bootconf.pl options { directory "/var/named"; /* * If there is a firewall between you and...
  19. jonlake

    Mail Relaying

    Ok, I have just set up my Sendmail server. The only change I have made to it is to allow computers other than 127.0.0.1 to be able to download the email. That part of it is working fine. When I try to send an email, it gives me an error the server would not relay the message. Now, if I edit...
  20. jonlake

    Using a printer in a workgroup when part of a domain

    Ok, here is the situation. We use a domain at work. When the user takes their laptop home, they have to login. When they do so, they still login to the domain, using their cached credentials. When she goes home, she cannot logon to the machine locally (we don't allow that). Obviously we don't...

Part and Inventory Search

Back
Top