Simple date stamp script

Hello Adobe Community!
I have 100+ photos to which I need to add a date stamp. Is there a simple script to do this? I'd like to make it an action too if possible, and it's worth noting that I have no idea how to script! There were some samples linked here but I can't for the life of me figure out how to edit them to get the desired effect.

You can't use the date from either the profile folder or NTUSER.DAT as a reliable indicator of when a user last logged on, if I understand what you're trying to do.  The profile folder date may not be updated even when the user's profile is active;
my own profile folder on my current system hasn't been updated for fifty days, even though I've logged off and on repeatedly and rebooted the system at least once.
On the other hand, NTUSER.DAT, since it contains the user's registry hive, can be updated
at any time by a malware scanner, malicious website blocker, or registry cleaner, or (I think) by some kinds of software installation or update.
If you want to delete user profiles according to when the user last logged on, you're probably going to have to scan the security log (assuming you have security auditing enabled).  Maybe a tool like
Log Parser from Microsoft is what you need.
If you're running in a domain, you should research ways to get information from Active Directory as well.

Similar Messages

  • Date Stamping Photos

    I am newbie to Lightroom but am quickly loving this program.  One of the issues that led me here is date stamping.  Our dSLR does not allow for date stamping (Nikon D40x).  What it does is retains the "capture date" in the metadata ( i beliee most cameras do).  We take approximately 1,000 photos a month and would love to have them date stamped.
    Our processing is done through Kodak, who will not read the capture data from the metadata and stamp on the photo.
    My next option was thir party software - in comes Lightroom 3.  Well reading through the forums I found this was possible via LR Mogrify 2.  It was installed and it works great.  The amount of time I save vs the Gena Photstamper is incredible.  The problem I am having now is that Kodak auto crops the pictures before developing which crops the date stamp (located on the bottome right hand corner).
    I have selected on the Kodak site "print entire picture" which elliminates the cropping but leaves white bars on the ends of the picture.  The reason for this per the Kodak rep is due to photo size.  My next step was to go back into Lightroom and set the export size to 1200 X 1800.  The result was something close but not exactly that dimension.  Which still leaves me with either vertical or horizontal bars on the picture when processed.
    If anyone has encountered anything similar or if you have any possible solutions can you please help.

    May I suggest that you buy a camera that will imprint the date on your
    photo and be done with it. There are many point and shoots with good quality
    that will do this very thing.
    Keep it simple..........
    Rich

  • How do I add time/date stamp to my screen capture file names?

    I'm on mac osx.
    I'm trying to add time/date stamp to my screen capture file names. (at the moment it's just 'Picture 1' etc..)
    I've tried the following command  in terminal but have not had success. please help!!
    defaults write com.apple.screencapture name "datestamp" at "timestamp"
    killall SystemUIServer

    Surely someone else will provide a better solution. Meanwhile, however, you might want to try the following script. Copy and paste the script into the AppleScript Editor's window and save it as an application. Then drop your screen capture files on the droplet's Finder icon.
    on open theDroppedFiles
        tell application "Finder"
            repeat with thisFile in theDroppedFiles
                set theFileName to name of thisFile
                if (word 1 of theFileName is "Picture") and ¬
                    (word 2 of theFileName = word -2 of theFileName) then
                    set theExtension to name extension of thisFile
                    set P to offset of theExtension in theFileName
                    set theCreationDate to creation date of thisFile
                    set dateStamp to short date string of theCreationDate
                    set timeStamp to time string of theCreationDate
                    set name of thisFile to "Screen Shot " & dateStamp ¬
                        & " at " & timeStamp & "." & theExtension
                end if
            end repeat
        end tell
    end open
    Message was edited by: Pierre L.

  • Certificate of Completion with Date Stamp

    Greetings,
    Is it possible to make a form that will automatcally add a date stamp to it.? Here is the scenario: a user completes a series of questions through an eLearning module. At the end of it, they click on a button/link that takes them to a page that has a PDF in it. The PDF has a fillable form so they enter their name into it and at some point, maybe when they get to the pdp, it is time/date stamped for that user. They print the PDF out and give it to their supervisor.
    Make sense?
    Maybe it's not possible to get the stamp to be added as soon as they get to the PDF, maybe they have to push a button on the PDF to have it added? I don't know what is possible or if it is possible. We would just like to have some way to get a date stamp onto the PDF. The PDF doesn't have to be downloaded, it only needs to be printed as hardcopy, although having an option to have the PDF emailed to the user might be an option as long as it can only be printed.
    Comments, suggestions?

    Yes, it's possible, with a bit of JavaScript. You can have the date field automatically populated when the form is first opened or after they enter their name. For the latter, you could add the following script to the Validate event of the name field:
    // Get a reference to the date field
    var f = getField("date");
    if (event.value) {
        f.value = util.printd("mm/dd/yyyy", new Date());
    } else {
        f.value = "";
    Replace "date" with the actual name of your date field. You can also use a different date format, but this should get you started. If you want it to populate when the document is opened, it's a bit more complicated, but post again if this is what you want.

  • Adding a date stamp using Acrobat XI

    Hi there
    I want to add a date stamp to a voucher PDF, so that when it is downloaded and printed out, it displays today's (system) date.
    I followed the tutorial at: http://tv.adobe.com/watch/acrobat-x-tips-tricks/quick-tip-how-to-add-a-date-stamp-to-a-for m/   ,double checked the javascript, and this seemed to work. But when I checked the following day, the date displayed was still set at yesterday's date. It had not moved forward. I tried saving as Reader Extended/Enable More Tools, but that didn't work either and I think it removed the JavaScript altogether.
    In the original, I went to  Edit All JavaScripts and this is the code that was there:
    //-----------------Do not edit the XML tags--------------------
    //<Document-Actions>
    //<ACRO_source>Document Will Print</ACRO_source>
    //<ACRO_script>
    /*********** belongs to: Document-Actions:Document Will Print ***********/
    var f = this.getField("DatePrinted");
    f.hidden = false;
    f.value = "Printed on: " + util.printd("mmm dd, yyyy", new Date());
    //</ACRO_script>
    //</Document-Actions>
    Can anyone please help?

    Did you print the PDF and observed what happened.
    The video is about putting the date printed in the PDF just before the PDF is sent to the printer.
    I would have coded it as follows:
    var f = this.getField("DatePrinted"); // field object
    f.display = display.noView; // only print the field
    f.value = "Printed on: " + util.printd("mmm dd, yyyy", new Date()); // set the value of the field
    The 'hidden" property of the field is an old method and discouraged along with the 'print' property. Both of these can be manipulated with the "display" property.
    The "Will print" action only occurs when a print action is initiated
    Do you want this to change when the PDF is opened? Then you need to create a page open or document level script.

  • How do I add a time and date stamp onto my pictures?

    Can anyone tell me how to place a time and date stamp on all my pictures?

    DTRAND wrote:
    How do I go about creating a script, how do I run it, and where do I run it
    (ie: exactly the steps)... sorry I am new to this.
    You don't need to learn scripting. Just ask in the scripting forum if they can help you.
    They will point you to an existing one or might even do one for you.
    http://forums.adobe.com/community/photoshop/photoshop_scripting

  • Time & Date Stamp in a presentation / SWF files to add to presentation

    I need to display time & date stamp to a presentation. I were trying to use a SWF object, is there a simpler way?
    Thanks
    Ibook G3 Ibook G4 TiG4 MiniMac   Mac OS X (10.4.4)  

    Welcome to the discussions, msaiz.
    If you have Apple's developer tools installed, you could use Quartz Composer to do the effect and a lot easier than Flash (not saying it's easy, just easier than Flash)

  • Add 90s date stamp from "date created" to photos

    Hi
    I'm about to order a photobook (christmas gift for some relatives). The book have nearly 300 pictures in it,
    The pictures need to have dates. I could add a date manually for each picture but I havent really got time for it.
    All photos have proper exif data, with date created info. Does anyone know how i can just destructivly stamp
    this on to the photo itself? Bit of a odd problem, I don't think bridge/ps can do this with its default
    functionality - but I know I have seen this feature somewhere sometime in some software product!
    And yes I know date stamps look terrible, but most of the family photos arent exactly fine art to begin with :>
    Any tips appreciated, it would be a huge time saver for me!

    It can be done with a Photoshop Script that adda a text layer usinf the date in the EXIF. An example is my stampexif script. It adds a text layer which can be used within an action then the added text layer can be positioned and styled by the action. The script would be easy to change and format the text content to your likeing.
    Link to the script http://www.mouseprints.net/old/dpr/StampExif.jsx

  • Getting rid of the date stamp in "Export Waveform to Spreadsheet.vi"

    Probably a very simple and stupid question, but how do I get rid of the date stamp while keeping the time stamp in the "Export Waveform to Spreadsheet File.vi"? I may have found the place on the block diagram, but I'm not entirely clear how that vi works.
    Thanks,
    Joe

    Never mind, I've figured it out.
    For the curious, it was a matter of altering the "Waveform to Date Time String.vi" in the "Export Waveform to Spreadsheet.vi". All you need to do is stop it from concatenating the time string with the date string in that particular VI. I hope this helps some of my fellow newbies.
    Sorry to waste the rest of your time.
    Thanks,
    Joe

  • Can you change the date stamps on photos on iPad3?

    When I add photos from my digital camera, any photos that have been edited on my camera show on my iPad with the wrong date even though on my camera the date stamp is correct. It's very strange, is there anyway to change the date of photos once on your iPad so that they show in the right album when viewing photos on the events tab. Thanks in advance for any reply x

    I've posted this in another query of mine regarding keeping a separate bootpd log file. Two birds, one stone.
    syslog -u -E safe -k Sender bootpd -k Time ge -24h > DHCPday.log
    cat DHCP.log DHCPday.log> DHCPtemp.log
    cp DHCPtemp.log DHCP.log
    The -u switch on syslog causes it to output the timestamp in UTC, thus it includes the year. By incorporating this script as a cron job, the server is now keeping a growing record of DHCP allocations with a full datetime stamp for later processing.

  • Simple data inventory using flash cs3

    is it possible to create very simple data inventory for
    example for a library using flash cs3?
    This is not for online purpose... the application contain a
    form where users can enter data about the books like date returned
    and so on..

    you're welcome :)
    1) that is correct. unfortunately, we can't 'write' to an xml
    file from Flash, one needs to parse the data sent from Flash using
    a server-side script such as php to perform the actual writing of
    the file and store it to a directory location. so in this sense, it
    may be 'easier' to use a local database and server (running on the
    same machine) and use a intermediary 'helper' interface such as
    amfphp.
    2) Flash does contain several classes to work with xml data
    internally, and is quite powerful in that regard. however, if you
    opt to use a system like a DB and amfphp, it can use 'regular'
    Flash objects to send and receive data and handles the conversion
    automatically, so would ultimately be both simpler to implement and
    very very fast. some basics on amfphp can be found here:
    http://www.gotoandlearn.com/play?id=78
    (don't worry about your English, it's just fine :)

  • How to enter a date stamp using formscentral?

    I've been trying to enter a date stamp using formscentral but have no such luck. Whenever I enter one in using acrobat pro I get the error that I don't have sufficent privleges due to adobe keeping the integrety of the form...Anybody have any ideas?

    See this FAQ which explain how to modify a FormsCentral PDF in Acrobat
    http://forums.adobe.com/docs/DOC-3661
    Gen

  • Add Date Stamp

    Hi,
      In a proxy to file(receiver file adapter) scenario, is there any way to append date in a specific format(ddmmyyyy) at the end of the file name.
    ex: sample23122009
    Add time stamp adds the date in a different format.
    If if is possible thru Receiver file adapter operating system command.
    Please suggest me how to do that.
    thanks.
    sri

    Hello Arunsri,
    Try to use dynamic file name configuration option in receiver file adapter channel. In mapping just concatenate the date stamp as required with your filename.Take this as constant.
    For this you may modify u r target structure. Add one more node as
    FileName -- Node
    -FileName -- Field
    In content conversion use that
    FileName.fieldFixedLengths - 0(Zero)
    FileName.fixedLengthTooShortHandling -- Cut. So that the extra field would not appear in file.
    Hopt it will helps.
    Cheers
    Veera

  • How can i put a time/date stamp in Apple contacts, "Note"

    how can i automatically put a time/date stamp in Apple contacts, "Note"
    ei , when i enter a new note to a contact. I want the time and date to automatically show at each note.

    This is not a feature in Contacts. I suggest you send Apple feedback to let them know you would like to see this option.
    http://www.apple.com/feedback/macosx.html
    You can easily add the date stamp using an app like TextExpander.
    Read this article about using snippet keepers. http://www.macworld.com/article/151286/2010/05/clipboardmanagers word

  • Date Stamp MySql-PHP

    Hi All:
    I have a form that I using to upload my portfolio using the
    php insert record function of Dreamweaver. How can I make it add
    the date stamp using dreamweaver? Is the a piece of code some can
    provide? My thought was add some kinda of hidden field and do
    something with that. Any help would be appreciated.

    .oO(cupaball)
    >Great! Where does that go in all this Dreamweaver code?
    >
    > if ((isset($_POST["MM_insert"])) &&
    ($_POST["MM_insert"] == "portfolio")) {
    > $insertSQL = sprintf("INSERT INTO port_tb (comp_name,
    design_type, URL,
    >short_des, long_des, thumbnail, medium_pic, large_pic,
    long_pic) VALUES (%s,
    >%s, %s, %s, %s, %s, %s, %s, %s)",
    > GetSQLValueString($_POST['comp_name'], "text"),
    > GetSQLValueString($_POST['design_type'], "text"),
    > GetSQLValueString($_POST['URL'], "text"),
    > GetSQLValueString($_POST['short_des'], "text"),
    > GetSQLValueString($_POST['long_des'], "text"),
    > GetSQLValueString($_POST['thumbnail'], "text"),
    > GetSQLValueString($_POST['medium_pic'], "text"),
    > GetSQLValueString($_POST['large_pic'], "text"),
    > GetSQLValueString($_POST['long_pic'], "text"));
    Where do you want the date to go? The date column has to be
    listed
    inside of the parentheses after "INSERT INTO port_tb", the
    NOW() call
    inside the VALUES parentheses at the same position. Here's an
    example
    with the date at the first position (adjust the name as
    necessary):
    $insertSQL = sprintf("INSERT INTO port_tb (dateField,
    comp_name,
    design_type, URL, short_des, long_des, thumbnail,
    medium_pic,
    large_pic, long_pic) VALUES (NOW(), %s, %s, %s, %s, %s, %s,
    %s, %s,
    %s)",
    ... // all the rest
    Micha

Maybe you are looking for

  • Apple apps crashing (driving me mad)

    Hi I've got an iphone 3GS and since Christmas the various inbuilt apple apps (safari, mail) have kept crashing, I did a full restore and now the ipod function crashes too. I've sent it back and have recieved a new one today- the same problem on the n

  • Down Payment Clearing pushbutton in MIRO (SAP ECC6 EP4)

    Dear Experts, As i am trying to do the same process in my organisation to post the DP in PO at header or item level and after that following the ME2DP process for posting DP and then i do MIGO. After GR as i do MIRO process and select the PO there is

  • Items outside of Document Setup size don't appear in PDF

    I have a document which I'm saving as a PDF with Preserve Illustrator Editing Capability selected. When I open this PDF in Acrobat critical elements just outside of the Document Setup size are not showing up. These are critical for the production but

  • Migrating groups and users from QA to Production

    Post Author: KSK CA Forum: Administration Hi, I have to migrate security setup with Groups and users from QA to Production box . setup is in Unix. Note: my production already have some other projects related groups and Unix.. and when I say migrate,

  • Using XSQL programmatically for in-memory docs

    HI! I wonder if there is a way to use XSQLRequest-class without URLs? Is it possible to make XSQLRequest prosess in-memory XSQL-documents(XMLDocument,string or stream)? I want XSQL to parse the XSQL-document I've created programmatically. Now the onl