Rename files for contactsheet

I'd like to make a contactsheet.
To do so, I first have to rename my files from numbers to letters, because otherwise the photo's are at a wrong place in my contactsheet.
I make numbers like: 01, 02 ,03 etc.
When I want to batch the files to rename them with letters, in bridge or with an action in photoshop, then all the files are at another order.
Does anybody knows, what I have to do so that I can rename it easily and that the programme does what I want?
I hope someone has the answer.
Thank you for helping me out.

How are you making the contact sheet?  If with the old Photoshop script, then it's several years since I last used it, but IIRC you just need the files to be in the right order, and tell it how many rows and images per row.  I don't remember anything about the file names needing to start with a letter.
So what version of Photoshop?  What are you using to create the contact sheet?  How many images, and how do you want to format them?
Goodness.  I just checked and it was more than six years ago.  This was done by choosing not to flatern the Contact sheet so I could use Free Transform and layer masks to overlap the images.  It took me ages!

Similar Messages

  • Sharepoint 2013 ItemAdded event receiver for renaming files is not working

    In SP 2013 I coded an event receiver that intercepts the ItemAdded event and it just renames the file.
    It is a synchronous event (I added <Synchronization>Synchronous</Synchronization> in the Elements.xml).
    This is the code:
            public override void ItemAdded(SPItemEventProperties properties)
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        OutputDebugStringA("Inside ItemAdded");
                        string szHttpUrl = properties.WebUrl + "/" + properties.AfterUrl;
                        SPWeb openedWeb = properties.Web.Site.OpenWeb(properties.Web.ID);
                        SPFile spf = openedWeb.GetFile(szHttpUrl);
                        EventFiringEnabled = false;
                        string szUrl = properties.AfterUrl;
                        szUrl = szUrl + ".renamed";
                        string szNewFileName;
                        if (szUrl.LastIndexOf('\\') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('\\') + 1);
                        else if (szUrl.LastIndexOf('/') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('/') + 1);
                        else szNewFileName = szUrl;
                        if (properties.ListItem != null)
                            properties.ListItem["Title"] = szNewFileName;
                            properties.ListItem.Update();
                        spf.MoveTo(szUrl);
                        EventFiringEnabled = true;
                        base.ItemAdded(properties);
                        OutputDebugStringA("Renaming to " + szUrl);
                    catch (System.Exception exception)
                        OutputDebugStringA("ItemAdded ERROR: " + exception.ToString());
    The problem is that when I upload a .txt file using Internet Explorer, just after the renaming is done, IE says that something went wrong and when I inspect the log files I see:
    SPRequest.GetFileAndFolderProperties: UserPrincipalName=i:0).w|s-1-5-21-4050800873-4278272723-3073177257-500, AppPrincipalName= ,bstrUrl=http://sp2013/sites/demo/subsite1 ,bstrStartUrl=Shared Documents/test2.txt ,ListDocsFlags=16400 ,bThrowException=True 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    01/09/2014 15:29:26.75  w3wp.exe (0x1544)                        0x16F4 SharePoint Foundation        
     General                        ai1wu Medium   System.IO.FileNotFoundException: <nativehr>0x80070002</nativehr><nativestack></nativestack>,
    StackTrace:    at Microsoft.SharePoint.SPWeb.GetFileOrFolderProperties(String strUrl, ListDocsFlags listDocsFlags, Boolean throwException, SPBasePermissions& permMask)     at Microsoft.SharePoint.SPFile.PropertiesCore(Boolean
    throwException)     at Microsoft.SharePoint.SPFile.get_Length()     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadPage.OnSubmit(Object o, EventArgs e)     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadExPage.OnSubmit(Object
    o, EventArgs e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean includeSta... 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    ...gesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContex... 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    ...t, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr
    pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 
     0fa7689c-674b-5045-c3a2-b214a5d4cbed
    So it is clear that the fact that I renamed the file is causing an issue in the SharePoint upload logic.
    As a solution what I did was to not declare it as Synchronous, but if I do it then there is another error when Sharepoint shows the Edit Properties dialog... in this case the upload is OK but when it is time to show that Edit Property dialog IE fails and
    says that the file has been already modified, or that "something went wrong".
    If I use a synchronous event I get one problem. If I use the asynchronous event I get another problem... It's very frustating and I am pretty sure that a so important API like Event Receivers should have support renaming files so I hope someone can tell
    me what I am doing wrong.
    Thanks in advance

    May be you want to consider using the following code and see if it works for you.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/40c78e03-2dca-4083-89d2-a7430099da68/how-do-i-change-the-name-property-of-a-file-in-a-document-library?forum=sharepointdevelopment
    Amit

  • Using Windows 8 64 bit Premiere Elements 12 , motion tracker gives me the folloing error; The media file seems to have an invalid entry in the catalog, please rename it for use.

    I'm trying to put a graphic over an object, but I keep getting this error message; The media file seems to have an invalid entry in the catalog, please rename it for use.

    Lonesomeless
    Thanks for the reply.
    I checked the link that I posted back in post 3 of your thread. It is working with at least Firefox and Chrome.
    ATR Premiere Elements Troubleshooting: PE12: Motion Tracking/What To Use To Track Object?
    What browser are you using?
    The blog post contains significant information related to Premiere Elements 12 Motion Tracking. But, if you cannot access it for some reason, then we will need to troubleshoot via communications in the thread.
    SG has asked if you are able to create Motion Tracking effect using one of the graphics included with the program. We will watch for your response to him on that question. Please include in your message to him whether you can obtain your file to track the object using Organizer Tab or Project Assets routes as well as Graphics Tab.
    The following is an excerpt from the blog post referenced....
    SOLUTION
    Various tutorials and online comments have pointed to places other than Graphics Tab where objects can be selected and used to track the moving object in the video when the Motion Tracking workspace is opened in the Expert or Quick workspace.
    Organizer Tab, Expert or Quick workspace to access Elements Organizer 12. Cascade Windows and drag a video or photo from Elements Organizer into the yellow track box of Motion Tracking workspace.
    Project Assets, Expert workspace. Drag text, video, or photos from opened Project Assets into the yellow track box of Motion Tracking workspace.
    Graphics Tab, Expert or Quick workspace. Create a png file (graphic) or prtl file (text) and place it in Clip Arts in the Program Files of the program to have a permanent resource. Then from Graphics Tab, drag the newly created graphic or text object into yellow track box of Motion Tracking workspace.
    Thanks.
    ATR

  • Automator script search document for file name, and rename file to date

    Hi all,
    I'm having a hard time with Automator... and I can't figure out how it's done!
    Searched the web for it a couple of times, spend hours with Automator already, but I guess my need is random!
    The thing is:
    I got a folder with 1066 files, all the files has random names.....
    I got a document (now it's html, but can convert it to PDF or txt or so ever....) with the coressponding random file names in the html.... some words before that there is the date the photo was taken in this format: 08/25/11
    Now I want somehow make automator search that folder each filename... match it in the document with the filename, and rename the files in the folder to the date the photo's were taken.... and that for all 1066 files.....
    anybody a great idea? Some help? I'm a real newby at Automator scrips!
    thanks

    Have you considered A Better Finder Rename 9?
    A Better Finder Rename 9: The Batch File Renamer for Mac OS X
    Otherwise, what you propose seems to be rather like carving the Pieta using a plastic butter knife. But, if you want, here's one example of a rough algorithm to start ...
    * translate the HTML to ASCII text in this format:  filename (date)
    * read one line at a time from the ASCII file
    * for each line, search the folder for the file
    * rename the file according to the (date)
    BTW, you might avoid a strict renaming according to just the date.
    Best luck with this project.
    JJW

  • Why can't I delete or rename files in Word for Mac and other Office programs?

    When I try to delete or rename an Office for Mac file, I can't.  How do I delete/rename Word for Mac and other Office for Mac files?

    Had this problem for quite a while but found a work-a-round. I click anywhere in the text I want to delete and insert any character. I am then able to block and delete any text I want to. It's been working great.

  • Please syntax for me :)  Re: Rename files with a given string

    From the post http://forum.java.sun.com/thread.jspa?forumID=54&threadID=5118509
    Was wondering if someone could explain how the red characters work and what it does. Thanks!
            String newFileName = destFiles.getName().replaceFirst("[^.]*", rename);
            File newFile = new File(destFiles, newFileName);
            destFiles.renameTo(newFile);

    It would serve you better to look at the API documentation.
    getName() returns a String, right? So it is invoking String.replaceFirst with those arguments. Do you know where the API documentation is?
    http://java.sun.com/j2se/1.5.0/docs/api/index.html
    (That's for version 1.5 - you can find other docs for other versions).

  • File-renaming functionality for book does not work as expected

    Adobe Framemaker 8.0
    I am on Windows XP. Dell computer. Xerox printer.
    I follow the basic instructions for renaming a file in a FM book (To change the name of a document in a book:
    1. In the book window, select the file you want to rename, and then choose Edit > Rename File.
    2. Type the new name of the file and press Return or Enter. When the alert message appears, click OK to update other files in the book.) but I do not get past step 1. Instead an error message comes up that says "The text cannot be changed. To change the name of this file, please display filenames."
    What is meant here by "filenames" and how/where would one display such?

    Thank you indeed! I was with your help able to rename the file. However, the Book Error Log barked at me that it couldn't open BadFileName (a reference not to the file I renamed but another file which I not so elegantly dubbed "Conten ts" (with an unintended space between "n" and "t"--maybe this spacing is the reason behind its being dubbed bad?) since it could not be found. Should I disregard the error message or play along and rename "Conten ts" to "Contents". If that's all I need to do to get rid of the error message then of course, I'll do it. Thank you for answering my last question--whether or not you answer this one. Cheers, Siobhan

  • Shortcut for renaming files?

    Hey all,
    I wasn't sure where to post this but since I am a newbie ....
    I made the move about a year ago to Linux with Ubuntu and then about 2 months ago to Arch Linux. The only one thing that I miss about Windows is the ability to rename files by simply highlighting them and clicking on them once more (as opposed to right clicking on the file and going through the menu to find the rename command). Is there a way to modify Gnome to be able to do this?
    Thanks!
    Last edited by GTengineer (2008-07-08 22:13:46)

    sand_man wrote:I think he wants another option to rename other than the right click, like windows.
    Aah !! My bad !
    should have read it more carefully. Yup, in that case, F2 is the way to go.
    Last edited by Inxsible (2008-07-08 23:32:23)

  • Rename files or folders in Windows 8 not working

    Rename a file or folder on a Windows CE device is not working from Windows 8 when connected through Windows Mobile Device Center.
    From Windows 7 it worked just fine!
    This has been a problem for a very long time now, and im not alone according to all forums.
    But no fix as far as i can find!
    Is there anyone that have found a fix on this?

    http://answers.microsoft.com/en-us/windows/forum/windows8_1-files/windows-8-unable-to-rename-files-on-pocket-pc/abae21b7-7ee1-41c7-853e-1ac7ea5b0413
    It seems a issue in window 8.x system. Maybe you can ask for a MS support ticket. 

  • What is the difference between: "Place..." or "Add files for Upload..."?

    Where can I get information about the detailed differences between the commands "Place..." and "Add Files for Upload..." of the Files menu?
    Understand that in both cases the files are linked and not embedded. But what further differences are there?
    I came across this issue because widget 039 (Animated Image Rollovers) from MuseThemes works only if you use the "Add Files for Upload..." option.
    Thanks,
    Daniel

    Hi Daniel,
    There are a few differences in both the options-
    Place is used to add content to page (rendered) while Add Files for Upload... is used to upload files to your site but not on page (not rendered).
    Placed images are published to /images folder on the server while images added using Add Files for Upload... option are published to the /assets folder on the server.
    Placed images have a chance of getting renamed (if resized/interpolated in Muse) upon publish while images added using Add Files for Upload... retain their names.
    Place can be used to add limited file formats like jpg/png/psd/swf/oam etc while you can upload almost any type of file using Add Files for Upload...
    You don't see Placed content in the Hyperlinks dropdown for linking while files added using Add Files for Upload... show up in the Hyperlinks dropdown so that you may link to them and allow download.
    Both serve different purposes and Add Files for Upload... is preferred by Widget Developers because it gives more control over uploaded content and assurance that file location and name will be as expected.
    Hope the above give you clarity on the basic difference.
    Cheers,
    Vikas

  • How to specify a different config file for a weblogic 6.1 server

    Hi,
    I have 2 weblogic startup scripts (startWebLogic.sh and
    startWebLogic_recovery.sh) for the same domain.
    startWebLogic.sh uses config.xml file.
    I would like to use config_recovery.xml as the configuration file for startWebLogic_recovery.sh
    How would I do this ?
    I am using WebLogic Server 6.1 on SunOS 5.8 / HP-UX 11.0.
    Appreciate any help.
    Regards
    Gunaseelan Venkateswaran

    Hello Gunaseelan,
    This is not possible because WLS 6.1 needs a config.xml file, exactly this
    name, to start.
    What you can do is to define a recovery domain, called myrecovery_domain for
    instance, and put the config_recovery.xml, renamed "config.xml".
    Hope this helps,
    Ludovic.
    Developer Relations Engineer
    BEA Support.
    "Gunaseelan Venkateswaran" <[email protected]> a écrit dans le message
    news: 3cd6a324$[email protected]..
    >
    Hi,
    I have 2 weblogic startup scripts (startWebLogic.sh and
    startWebLogic_recovery.sh) for the same domain.
    startWebLogic.sh uses config.xml file.
    I would like to use config_recovery.xml as the configuration file forstartWebLogic_recovery.sh
    >
    >
    How would I do this ?
    I am using WebLogic Server 6.1 on SunOS 5.8 / HP-UX 11.0.
    Appreciate any help.
    Regards
    Gunaseelan Venkateswaran

  • *UPDATED 7/15/04* Complete guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum

    Complete newbie's guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum:
    Last Updated: Thursday July 15th, 2004
    Bioses:
    (In order of date released.)
    1.1b3 - (Download)
    - Pre-1.1, given to reviewers to use in their reviews and benchmarks.
    - Less stable, but supposedly you get slightly better overclocks.
    1.1 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - Memory always run DDR 200 when install single side DDR on DIMM2 & DIMM3.
    - Windows 2000 can't format the RAID IDE HDD when plug in Promise 378 controller.
    1.2b5 - (Download)
    1.2b7 - (No Download Yet)
    1.2b10 - (Download)
    - First attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and doesn't fix it for anybody with Clawhammer cores.
    1.2b12 - (Download)
    - Second attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and some people with Clawhammer cores.
    1.3b1 - (Download)
    - Another attempt to fix temperature problems?
    - Possibly fixes cold boot/power light issues?
    1.2 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - System can't resume from S3 sometimes when install USB device.
    - Support K8 Sempron CPU.
    - Turn off keyboard LED in S3.
    --Quick Guide for flashing BIOS, provided by MSI--
    1. Create a MS-DOS boot diskette, then copy the the .exe and the bios file to the floppy disk. Both of these files can be found in the package you downloaded.
    2. Press "Delete" and go to BIOS setup while computer bootup.
    Check BIOS advanced features and see if BIOS flash write control is enabled
    (This option must be enabled. If you can not find this setting, it means the BIOS can be
    flashed.)
    3. Boot from MS-DOS boot diskette and get a:\> prompt.
    4. Type "", then press ENTER
    5. The flash program will then ask "Do you want to save BIOS?", please press "N" for no. The when you see Press 'Y' to program or 'N' to Exit, please press "Y" to continue.
    6. After flashing complete, remove floppy and reset the system .
    7. Press DELETE or F1 when prompted at first reboot after flashing.
    8. Load BIOS optimized defaults, then save settings and exits.
    Drivers & Needed Files:
    (Note: All these drivers are for Windows XP.)
    Leaked Nvidia nForce3 Chipset Drivers Version 4.40
    (Please use at your own risk, these are LEAKED drivers. Password for the .zip file is "ocworkbench rules". Also, you will need to rename the WinXP_2K folder in IDE to either WinXP or Win2K else the installer doesn't pick it up.) Thanks for the link Wonkanoby!
    *NEW* Leaked Nvidia nForce3 Chipset Drivers Version 5.03
    More leaked drivers? Seems some parts of the drivers are older and some are newer.
    1. Windows XP Service Pack 1A (Web Install) -or- Windows XP Service Pack 1A (Full Install)
    2. Microsoft DirectX 9.0b (Web Install) -or- Microsoft DirectX 9.0b (Full Install)
    3. Nvidia nForce3 Chipset Drivers Version 4.24
    4. AMD Athlon 64 Processor Driver Version 1.1.0.14
    5. Nvidia Video Card Driver Version 56.72 -or- Omega Nvidia Video Card Driver Version v1.5303
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard Nvidia drivers.)
    5. ATI Video Card Driver Version 4.7 -or- Omega ATI Video Card Driver Version 2.5.51
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard ATI drivers.)
    6. Onboard Sound Driver (Realtek AC'97 Audio Codec) Version A3.61
    It is HIGHLY reccomended that you install the drivers/needed files in the order listed above. Please note that there are two #5's because you either install one or the other depending on your video card, do not install both of them.
    You will come across a problem here though. You can't install the chipset drivers without installing the Windows service pack and DirectX first, but the Windows service pack and DirectX installs need the internet to download files and you won't have working internet until you install the chipset drivers. Here's what I did to get around this. Instead of downloading the web install versions of Windows service pack and DirectX, download the full version and and put them along with all the other drivers on a backup hard drive or burn them to a CD, this way you will have all the drivers you need when it's time to install them and none of them will require the internet to download files.
    Another note when installing drivers. Apparently the Nvidia chipset drivers also come with drivers for the onboard sound, but people seem to agree that the Realtek onboard sound drivers are better. When you are installing the Nvidia chipset drivers, just be sure to uncheck the box for sound drivers when it asks you which drivers you would like to install. Now you can safely install the Realtek drivers without any chance of conflicting sound drivers. Thanks for the tip Wonkanoby!

    Quote
    Originally posted by RLiu818
    Quote
    Originally posted by Deviation56
    Quote
    Originally posted by RLiu818
    You CAN install the nforce drivers BEFORE installing SP1.  The only requirement to install the nforce drivers is DX9.
    So is SP1 still recommended to install before the nforce drivers?
    The installer still reccomends to install it beforehand for full USB 2.0 functionality... I would have put what you said in there but I wanted to keep it as simple as possible.  
    oh.  IIRC the installer just says USB 2.0 will be fully functional after SP1 is installed.  So after you install SP1 you go into device manager and u click update driver and it will auto search and update the driver.
    Simplicity-wise, i guess its pretty much equal.  It might take less preparation to just copy DX9 full onto a CD and install that first, then nforce driver, then right away you have yoru internet connection.
    but i dunno.. i guess i will try it your way this time when my RMA"d board comes.
    i will be fomratting and doing a fresh install later on today and will let you know if i come across any problems

  • Error in Loading Meta Data File for Service 'CL_ACCOUNTING_DOCUMENT_DP'

    Hi Guys,
    Need to your assistance in solving the below Error.
    1. Error while loading metadata file for various service which required Connectors to be created .
    Example  : CL_ACCOUNTING_DOCUMENT_DP',
    BEP
    ZCB_COST_CENTER_SRV
    1
    Cost Center Service
    CB_COST_CENTER_SRV
    1
    BEP
    ZCB_GOODS_RECEIPT_SRV
    1
    Goods Receipt Service
    CB_GOODS_RECEIPT_SRV
    1
    2. While Expanding the node for connectors in ESH_COCKPIT for SAPAPPLH  . Below Error occurs
    Could not rename Data Type "SIG_IL_USA_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "SIG_IL_SDR_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "SIG_IL_RES_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "SIGN_TYPE_UD_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "SIGN_TYPE_SM_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "SIGN_TYPE_RR_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "RMXTE_TRIALID_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QZUSMKZHL_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QWERKVORG_1" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QVNAME_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QVMENGE_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QVINSMK_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QVGRUPPE_2" in SWC EAAPPLH - errors occurred during renaming
    Could not rename Data Type "QVEZAEHLER_2" in SWC EAAPPLH - errors occurred during renaming

    Hi,
    do you have solved this issue? We have the same problem with ESH_COCKPIT and SAPAPPLH component.
    Regards,
    Martin Sindlar

  • LOG FILE for batch scripting in MAXL

    Hello,
    I just wanted to know how to create a LOG FILE for batch scripting.
    essmsh E:\Batch\Apps\TOG_DET\Scripts\unload_App.msh
    copy e:\batch\apps\tog_det\loadfile\gldetail.otl e:\hyperion\analyticservices\app\tog_det\gldetail /Y
    essmsh E:\Batch\Apps\TOG_DET\Scripts\Build_Hier_Data.msh
    REM
    ECHO OFF
    ECHO Loading GL actuals into WFS \ Combined......
    E:\HYPERION\common\Perl\5.8.3\bin\MSWin32-x86-multi-thread\PERL.EXE E:\Batch\Apps\WFS.COMBINED\AMLOAD\WFSUATAMLOAD.PLX
    E:\HYPERION\common\Perl\5.8.3\bin\MSWin32-x86-multi-thread\PERL.EXE E:\Batch\Apps\WFS.COMBINED\AMLOAD\WFSUATAMLOAD.PLX
    Drop object d:\NDM\Data\StampFiles\STAMPLOADBKUP.csv of type outline force;
    Alter object d:\NDM\Data\StampFiles\STAMPLOAD_cwoo.csv of type outline rename to d:\NDM\Data\StampFiles\STAMPLOADBKUP.CSV;
    SET LogFile=E:\Batch\Apps\TOG_DET\Logs.log
    This file does not generate log file can any help me what might be the problem? Even though some of the steps above are not correct it should generate me log file atleast. I need syntax or whatever it is to generate Log file.
    Regards
    Soma

    I wanted to have a logfile of the following batch script regardless of whether the script is running or not.
    essmsh E:\Batch\Apps\TOG_DET\Scripts\unload_App.msh
    copy e:\batch\apps\tog_det\loadfile\gldetail.otl e:\hyperion\analyticservices\app\tog_det\gldetail /Y
    essmsh E:\Batch\Apps\TOG_DET\Scripts\Build_Hier_Data.msh
    REM
    ECHO OFF
    ECHO Loading GL actuals into WFS \ Combined......
    E:\HYPERION\common\Perl\5.8.3\bin\MSWin32-x86-multi-thread\PERL.EXE E:\Batch\Apps\WFS.COMBINED\AMLOAD\WFSUATAMLOAD.PLX
    Drop object d:\NDM\Data\StampFiles\STAMPLOADBKUP.csv of type outline force;
    Alter object d:\NDM\Data\StampFiles\STAMPLOAD_cwoo.csv of type outline rename to d:\NDM\Data\StampFiles\STAMPLOADBKUP.CSV;
    What I really want is I need a log file of the above batch script, how the above scripts are running. I do not care whether they are giving me positive results but I need to know what is happening in logfile. HOw will the log file be generated.
    Regards
    SOma

  • Get renamed file new name

    Hello all. What I'm wanting to do is rename a file and then do some things with the new file name.
    1. I want to view the new file name with the full path
    2. I want to output the new file name with the full path to a text file or csv file
    Here is what I have for outputting the renamed file into a text file, but it isn't working:
    cls
    $resultsfile = "C:\results3.txt"
    clear-content $resultsfile
    foreach($item in gc C:\RENAME.txt){
    Rename-Item $item "1.txt" | out-file $resultsfile -append
    notepad $resultsfile
    Any thoughts on how to work with the newly renamed file name?

    Yes, sorry I forgot to mention that I'm trying to delete a bunch of files whose names are too long. So what I 'm trying to do is to rename the files first with "1.txt" and then I'm going to delete them. I just had a "forehead-slap" moment where I realized
    I could just pipe the "rename-item" into "remove-item" and that should accomplish my goals.
    But, as for my original question, if I rename a file, how can i view/use the renamed file name? Like if I renamed a file, how could I output the newly renamed file name to a text file? I tried this in my original code above, but it didn't work. Let's just
    assume that I have a single file that I want to rename to "1.txt"

Maybe you are looking for

  • How to Optimize 3D from Mac to 3D HDTV with Apple TV

    I have been trying to stream a 3D movie from my Macbook Pro to my 42" LG 3D 1080 HDTV via Apple TV, and it works, but not perfectly. The details: I have an MP4 formatted 3D movie, which plays with horizontal side-by-side frames. Running the movie in

  • How do i remove my wife's iphone contacts from my iphone?

    As a family we have three iphones and two ipads. So I recently bought an imac to make things easier instead of our old pc. but in the process of setting it up, i imported all my contacts from my iphone and ipad onto the icloud and as a result, they a

  • Copying iTunes to MacBook Pro

    Guys I'm looking to buy the MacBook Pro but I am a bit worried that the external hard drive I have the music on won't be recognised by the Mac I have a Sony Vaio but someone told us that because I have the music copied with this machine that the Mac

  • How do I import subtitles to the menu?

    I have made a menu, it works very good, I think. But when I want to "import subtitles" then all options is blank. I can do this far: Time line>Import subtitles Not more, they options after "import subtitles" is blank. How can I import subtitles? Than

  • Error message: pluin container for Firefox has stopped working

    I got this message while downloading photo to an e-mail I was sending.