How to disable windows dialogue when executing a script

Hi there.
I'm trying to automate a task that needs a PSD file to update a layer text.
For this task my script reads an externar data from www.mydomain.es/resource.cfg.
Everything has to be done automatically and the script will be programmed to run to a certain hour in my XP machine.
Data is retrieved, but when  .jsx file tries to run a warning dialog displays in Windows. Something like:
"Security alert: you are about to execute a script in Photoshop CS4. Do yo want to Continue(button) or Cancel(button).
This prompt will ruin my script as i need to do everything automatically.
Does anybody knows how to configure windows, the script or whatever so that the script just executes without asking?
Thanks so much ofr your help.

Found the solution:
I have to place the script in the folder PS CS4 creates for scripts in XP located in documents and settings\user\My Documents\Adobe scripts
There seems to be a trusted folder and won't display any warning
•••(spanish lang. translation)
Encontré la solución:
Hay que copiar el script en la carpeta que se crea automáticamente al instalar PS CS4 y que se encuentra en documents and settings\usuario\Mis Documentos\Adobe Scripts
Esa parece ser una zona de seguridad autorizada y no mostrará ninguna advertencia si se ejecuta desde allí

Similar Messages

  • How to disable Windows 7 warning on Super-charger.exe?

    Hi,
    I buy a computer from ZT systems. The CPU is: AMD Quad-Core A8-3850 Accelerated Processor, Video graphics is:Radeon™ HD 6550D processor-integrated graphics (Dual monitor capable). From the CD-rom I know the motherboard is from MSI. I reinstall Windows 7 in order to have dual boot capability. I find that every time the computer boots, it asks whether run Super-charger.exe for security. I have check it is safe from "Program Files(x86)\MSI\Super-Charger.exe security property dialogue box (SYSTEM: Full control, Modify, Read & Execute, Read, Write). It still asks every time it boots.
    Could you tell me how to disable Windows 7 asks about Super-Charger security?
    Thanks

    Quote from: Panther57 on 19-April-12, 10:29:56
    In Bios possibly check your boot order? 1st, 2nd, 3rd etc.
    I don't see any help from boot order.
    BTW, How can I know the motherboard model? I bought this computer from Costco. The information I have is: ZT Affinity 7150Ma Desktop PC. I do not find further info from ZT Systems Inc. website.
    Thanks.

  • How to avoid the dialogue when converting from context menu

    This is a follow-up to http://forums.adobe.com/message/2016146#443364 which was locked due to a bug.
    i would like to know how i can avoid the 'save as' dialogue when using the context menu to convert a word file to pdf using windows XP/acrobat 8/word 2007.
    so far, it always prompts me for the filename, which is annoying as it does not allow me to batch-convert several files and let the thing run its course.
    the solution provided by Steve in the other thread does not work - even if the plugin from word does not propt for a filename, it still does when triggered from explorer/context menu.
    so back to square one: how to avoid that dialogue when not opening word at all?
    cheers, thanks for any help. michael

    For a permanent change, START>PRINTERS>right click on Adobe PDF printer and select properties>General>Printing Preferences>Adobe PDF Settings. Under the settings tab, uncheck the box related to asking for a name. Pretty sure that is the location, but it may vary with version.

  • How to disabled mutli desktop when I using Full Screen?

    How to disabled mutli desktop when I using Full Screen?
    Some app have a preferences option to do this which like iTerm2
    In Lion-Style FullScreen windows, I can't use command + tab to  quickly switch between in the apps, I must switch to the  app own desktop which is using fullscreen, It's so trouble. I even think this is a flaw in Apple's design.
    So, How can I have use this  feature in others apps such as Google Chrome, Mail, Safari and so on.
    Please Help me!  Thanks! Thanks! Thanks!

    nobody can help me ?

  • How to disable autostart (application) when managed server restart ?

    Hi Ppl,
    How to disable autostart (application) when managed server restart ?
    I want some of the applications to remain not started. In WebSPhere, we have an option disable auto start for applications.
    I don't find in weblogic.
    Thanks

    Hi,
    I agree with Faisal. When you shutdown your WL server while the application is running, the thing is when you start your server again, it would automatically start the application with it. Now if the application was down when you shutdown the server, it _the application_ won't start with the server.
    So it depends on the application last state, when you start your server.
    Regards,
    Mohab

  • Some tags are not showing in SQL when executing the script as per Date

    A) When i am executing below script
    Select ToP 10000 [T_idx],[T_Tag], [T_date], [T_counter] from dbo.[total] ORDER BY T_DATE desc
    i am able to see all tags with respect to date except some tags prefix with ----PO, this 'PO' tags also present in the same table, with same time and date like other tags
    B) When executing below script
    Select top 10000 * FROM dbo.[total] where T_Tag like '%PO%' ORDER BY T_DATE DESC
    i am able to see all tags related to  PO
    How i can all tags including 'PO' with one script. can any one help me ??
    acmi

    Venkat,
    Select ToP 10000 [T_idx],[T_Tag], [T_date], [T_counter] from dbo.[total] ORDER BY T_DATE desc
    The above query MAY or MAY NOT give the records with taag ---PO as they might belong to a later data which might not fit into the top 10,000 dates of the table. This shud be the problem.
    If you want to see all the data irrespective of the number of rows, then below shud help:
    Select
    [T_idx],[T_Tag], [T_date], [T_counter]
    from dbo.[total]
    ORDER BY T_DATE desc
    If you need the rows that CONTAIN --PO then folowing shud do it:
    SELECT
    [T_idx],[T_Tag], [T_date], [T_counter]
    FROM dbo.[total]
    WHERE T_Tag like '%PO%'
    ORDER BY T_DATE desc
    If you need just the top 10,000 rows of the above result, then just add a TOP clause as below:
    SELECT
    TOP 10000
    [T_idx],[T_Tag], [T_date], [T_counter]
    FROM dbo.[total]
    WHERE T_Tag like '%PO%'
    ORDER BY T_DATE desc
    Thanks,
    Jay
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to disable field validation when block is in query mode ?

    Hi,
    we use Jdev 11g TP3 and implemented a button to set a block of input fields in query mode.
    Some of this fields are mandatory.
    When performing an execute operation this mandatory fields are validated and the JS error message pops up.
    In query mode this fields must not be mandatory !
    How to disable the validation of those mandatory fields when the block are in query mode?
    BR
    Peter

    Hello Peter,
    A little correction to Chris' suggestion, it should be:
    <af:inputText value="#{bindings.<your field name>.inputValue}"
                        label="#{bindings.<your field name>.hints.label}"
                        required="#{!bindings.<your iterator name>Iterator.findMode && bindings.<your field name>.hints.mandatory}">
    ...etc...The only difference is the removal of the ? : operator since it isn't required and represents both an additional parsing and processing effort. Go micro-optimization!
    ~ Simon

  • How to disable windows protection on multipoint server?

    Hi!
    I'm trying to install some software on windows multipoint server 2011 (single workstation with six stations). The application woudn't start at all. The system gives a standard windows mesage error with two optinos: stop app or try to find a solution online.
    On windows 7 with antivirus software, when trying to copy files from DVD to hard drive, file like install.exe is been deleted with mesage that it is "susspicious". But when I disable it, software is instaled perfectly.
    So, I'm not sure if the software has some certificate problem...or whatever.. It is not a virus.
    I just want to install it.
    How I'm going to disable windows server protection? Or, what should I do?

    There should be link with Install anyway option located in right bottom corner. Can you post a screenshot? Did you try to install it with admin privilages?

  • How to disable some color when printing separations in Ai CS6-CC (JS)

    Hello Everyone!
    Configuration: Win 7 Pro x64, Illustrator CS6x64-CCx64, default printer PDF.
    When printing separations from Illustrator CS4 following script prints all colors except Cyan (as was intended).
    But when printing from CS6-SS disable the color is not possible - all colors are printed without exception.
    var adoc = activeDocument;
    var o = new PrintOptions();
    o.colorSeparationOptions = new PrintColorSeparationOptions();
    o.colorSeparationOptions.colorSeparationMode = PrintColorSeparationMode.HOSTBASEDSEPARATION;
    o.colorSeparationOptions.inkList = adoc.inkList;
    for (var i = 0; i < o.colorSeparationOptions.inkList.length; i++) {
    if (o.colorSeparationOptions.inkList[i].name == 'Process Cyan') {
      o.colorSeparationOptions.inkList[i].inkInfo.printingStatus = InkPrintStatus.DISABLEINK;
    adoc.print(o);
    If you check, you have inkInfo.printingStatus Cyan changed to "InkPrintStatus.DISABLEINK".
    Why it is printed and how to disable?
    Thanks!

    Hi saaiful,
    Thank you for posting your question. window. will print header and footer.
    Here are some solutions I found after researching your issue:
    *[http://forums.mozillazine.org/viewtopic.php?f=12&t=216810]
    *[http://stackoverflow.com/questions/8228088/remove-header-and-footer-from-window-print]
    *[http://www.dreamincode.net/forums/topic/22598-using-windowprint-without-printing-header-and-footer/]
    *take a screenshot and create a page that is printable [http://www.webdeveloper.com/forum/showthread.php?210947-Using-window-print-without-printing-header-and-footer]
    *Target to another window then print: [http://www.liferay.com/community/forums/-/message_boards/view_message/3401817]
    Hope this helps.

  • How to disable Windows from prompting to enable Network Discovery

    After deploying a new Windows 2012R2 VM, running sysprep,  we then run powershell script to automatically configure a server how we want it.
    One of these steps is to disable the Windows firewall in all profiles with this powershell line:
    Set-NetFirewallProfile -name * -Enabled "false"
    However, when I first login to the server, it prompt me to turn on/off network discovery:
    "Do you want to find PCs, devices, and content on this network, and automatically connect to devices like printers and TVs?"
    If I select "No", it enables the Windows Firewall on the public profile.
    How do I prevent the server from prompting for this information?
    I was thinking off disabling Network Discovery in the powershell script to turn it 'off' but not sure how to do this.
    Thanks

    Hi,
    Did you try the command:
    Disable-NetFirewallRule –DisplayName "Network Discovery"
    https://technet.microsoft.com/en-us/library/jj554843.aspx
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • To disable the calendar when executing query

    when executing the form the calendar is automatically displaying how to disable the calendar at querying the records
    thanks
    prasad

    Sorry but I could not understand clearly your question

  • How to save html response when execute a siebel load test.

    First at all excusme for my english.
    I need help to manage html response. I use OpenScript Version: 9.3.1.0 Production.
    When i execute a siebel load test, some of the VU returns the error "12152 the server response could not be parsed". Mi boss asked me an image or html response to analize the error. But i dont now how to get it.
    I search in all logs but i didn´t find nothing usefull.
    Anyone know how to save the html response when execute a load test?
    Thanks.
    Gabriel.

    "First at all excusme for my english."
    => are you french? I am! So no problem of course ;-)
    Which ATS version do you use? Because starting with 12.1, you have a better VU Logging capabilities.
    From the OLT user guide:
    The virtual user logs window has the following toolbar options:
    Open - Opens an existing virtual user log.
    Save as CSV - Exports the current VU log to a comma-separated value file.
    Clear - Clears the virtual user logs.
    View Text - Displays the source HTML for pages accessed by the virtual user.
    Render HTML - Displays actual pages as accessed by the virtual user.
    Auto Display - Displays pages as they are received by the viewer.
    See if it can help.
    If not, maybe you could implement some logics in OpenScript, but i wouldn' advice that.
    JB

  • HOW TO DISABLE CPU behavior when no battery inside macbookpro ?

    I realized, when i do not have the abttery inside the macbook, what i do not fotne, to save chargecycles, that my cpu wil not go above 1ghz. i observed this with the use of the coreduotemp application, wich can be free downloaded and monitors temperature and cpu speed of your macbook. i wrote to the developper, and he confirms that observation, so it is not an software bug.
    First, i invite you to test this on your macs and report, and secound i would like to have a solution, i bought this mac for power, not for slow power.
    maybe someone knows how to disable this behavior, thx

    If your MBP is consistently running at 80°C or higher, there is probably a problem with it... My machine idles around 54°C (when connected to an external monitor -- less without) and maxes around 75°C when the processor and GPU are being pushed (i.e. video intense gaming).
    Additionally, the MBP's battery is not Lithium Ion -- it is Lithium Polymer -- and is designed to be used IN the laptop. You are worrying about nothing (or next to nothing); even if your theory is correct, you are perhaps talking about a 5% decrease in the overall lifespan of the battery...if you think that is worth the possibility of data loss, then I guess running without the battery is for you...
    However, you will not be able to disable the down-throttle of the CPU speed.

  • How to disable power off when the phone is locked with pass code.

    Can anyone teach me how to disable power off function when the phone is locked?  With this , user is able To trace the iPhone when it goes missing. Besides, users will have enough time to remote wiped.

    i also had my phone stolen ... the first thing they did was turn off the phone so i couldnt track them.. you should need to enter your passcode in order to turn off the phone. i dont care if you cant do a hard reset.. i would rather loose the ability to do a hard reset for the added security .. besides without hard reset if it jammed badly i would just wait ontill the battery died.

  • How to disable auto notification when Leads assigned

    Hi,
    Does anyone know how to disable or modify the automatic notification that gets sent to owner of Leads when rules assign Leads?
    I've found where to change the "from" email address but want to change/stop these altogether
    Thanks
    Example below:
    -----Original Message-----
    From: XXXXX
    Sent: Monday, November 17, 2008 10:09 PM
    To: XXXXX
    Subject: Lead(s) have been assigned to you in Oracle Siebel CRM On Demand
    192 Lead(s) have been assigned to you in Oracle Siebel CRM On Demand.
    Click the following URL to review your new Leads:
    https://secure-XXXXX.crmondemand.com/OnDemand/user/LeadsHomepage

    At this time there is no way to disable this email notification to the owner of the lead as a result of going thru the lead assignment rules.

Maybe you are looking for