Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default windows username

    Hi!

    I'm a real beginner. Sorry if I ask some stuġid questions :-)

    My problem is: I have more users on my computer. The system is windows 2000/
    Xp. They made lot of data files in the same directory for a long time. now
    some of users want separate their files. So I have to collect them by owners.

    I started write a script to list recursively the files, but I can't get the
    username of the owner of the file.

    Maybe somebody can help me!

    Thx!

    Kraszi

    Kraszi Guest

  2. Similar Questions and Discussions

    1. Obtaining Windows Username
      Hey all, Once again, I find myself requiring your expertise, so I'll say Thank in advance. I was going to try using Kerberos (thanks for the inf...
    2. Get Windows username on Intranet
      Hi all, My Intranet currently runs fine (on a Linux-based server, with Apache, MySQL and PHP). The mail-form works splendid, except that I like...
    3. Getting windows username
      I am developing an intranet and was wondering, when a user logs on is there a way to get the username of the windows account in asp.net. I have...
    4. Antwort: windows username
      Hi, try to read what "perldoc -f stat" tells you! As being myself a beginner, I haven't tried it yet, just read about it. HTH! Best regards...
    5. retrieve windows username in php
      Hi, I am new to php. Is it possible to find out the windows user name in php ? Logon in windows domain with 'user1'. I want to get the username...
  3. #2

    Default windows username

    hello all, I was wandering, I work in an intranet enviroment and have several
    forms on our sites that users can submit data. it has been known that people
    have submit rubbish and blank forms, is there a way of tracking who sends them?
    can I pull thier Windows logon username and store it with the entry? many
    thanks in advance

    Simonbullen Guest

  4. #3

    Default windows username

    hello all, I was wandering, I work in an intranet enviroment and have several
    forms on our sites that users can submit data. it has been known that people
    have submit rubbish and blank forms, is there a way of tracking who sends them?
    can I pull thier Windows logon username and store it with the entry? many
    thanks in advance

    Simonbullen Guest

  5. #4

    Default Re: windows username

    I think there must be a way (without getting into IIS Authentication issues)
    but have never seen it published. The only thing I know of to easily work with
    in ColdFusion is the IP in CGI.REMOTE_ADDR. Assuming you don't have
    VPN/Firewall/Proxy Server obfuscation going on, the IP will at least tell you
    what workstation the activity is coming from. If people don't move around to
    much or are on predictable shift, you could figure out who did it. You mention
    Windows Logon so it seems likely you're using IIS. Be aware that IIS logging
    will also record the IP if you want to just look, rather than developing a
    monitoring function of your own. If there is an easy way, I'd love to get my
    hands on it to pre-fill logon pages and or authorize super functions to people
    (me). It would have to be something like using the IP, run a com/exe onject to
    interrogate the device and return the current user.

    JMGibson3 Guest

  6. #5

    Default Re: windows username

    required people to login once; connect to you ldap server to authenticate; then
    save there info as client cookie properly obfuscating secure info. the use the
    cookie to from then on.

    run coldfusion through iis:
    Go to <COLDFUSION_HOME>\bin\connectors and run or click
    Upgrade_all_connectors.bat
    set up a website/virtual directory in iis and use your
    <COLDFUSION_HOME>\wwwroot\<APPLICATION_NAME> directory as the Home Directory in
    IIS. Setup Integrated windows authentication in under Directory Securty in for
    this site/vd. bam, your done. This also assumes you Windows network is setup
    correctly to do this.



    maybenull Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139