Automate the FM2015 publish via CLI call

Is it possible to automate Framemaker 2015 file > publish, that is to say to call this function from the command line?

Typical use might be to automate the construction of output html/pdf/etc since a buildbot Jenkins.

A bit with the question: why isn't pdf option in the file > publish dialog box? Have the output from the menu pdf

under file > save as PDF and the rest under file > publish might have been good enough in 2015 but seriously:

This after all is 2016.

BR Bjørn Asle

See this message:

Re: How to access the Publisher module

Tags: Adobe FrameMaker

Similar Questions

  • check the last site via ajax call vrsion

    Hello. I want to check what the latest stable version of Firefox available for download, how do I do?

    Hi, maybe you can ask https://product-details.mozilla.org/1.0/firefox_versions.json to that effect.

  • Fully automate the addition of a datasoter via PowerCLI

    I have a need to be able to completely automate the addition of a new data store to a new installation of ESXi via powerCLI.  My problem is I want to have this fully automated and be able to enforce it against any box without user intervention, which means that I need a way to return the CNAME of the ScsiLun in new-store data command.

    I am currently using the command to run my action you want below, but for some reason, it does not.

    $con = get-ScsiLun | Select-object CanonicalName

    New data store - VMHost 192.168.1.1 - name newDS-path $con - Vmfs - BlockSizeMB 1

    The above returns the above error

    New-store data: 2010-07-19 10:55:32 news-Datastore 52e3288c-ef02-d45e-ea

    77 - 96cd39fe5cd6 could not find the specified disc or the disc is already in

    "use: ' @{CanonicalName = naa.600508b10010395659503152424f0100}"

    C:\Program Files\VMware\Infrastructure\vSphere PowerCLI\test.ps1:9 tank: 14

    + New-store data < < < < - VMHost 192.168.1.1 - name newDS-path $con - Vmfs Blo.

    ckSizeMB 1

    + CategoryInfo: ObjectNotFound: (@{CanonicalName...) 503152424f010

    (0}: string) , VimException

    + FullyQualifiedErrorId: Core_StorageServiceImpl_GetHostScsiDiskByCanonic

    alName_DiskNotFound, VMware.VimAutomation.VimAutomation.Commands.Host.NewDa

    tastore

    Although below works very well.

    new data store - VMHost 192.168.1.1 - name dvms-path naa.600508b10010395659503152424f0100 - Vmfs - BlockSizeMB 1

    I also tired the Deputy bud did not work

    $test = get-datastore. Select-Object - 1 first

    new data store - VMHost 192.168.1.1 - name dvms-path $test - Vmfs - BlockSizeMB 1

    Help or direction would be greatly appreciated.

    Thank you

    The Select-Object cmdlet does not return the name of the LUN as a string, but as a ScsiLunImpl object.

    The New-Datatsore cmdlet requires a string for the - Path parameter.

    You can do

    $con = (Get-ScsiLun).CanonicalName
    New-Datastore -VMHost 192.168.1.1 -Name newDS -Path $con -Vmfs -BlockSizeMB 1
    

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Automate the backup of Config

    I'm looking to install a way to backup the configuration of my C370.  Currently, I know how to do it manually via the GUI.  Is it possible to automate this process and it backs up through the CLI?  I was searching through the CLI yesterday, but I couldn't find what would save the config on the command.  I guess if I could find the command that I could set up a job through our Kiwi CatTools to do.  I would like to know if anyone knows how to do this, or if you have found another way to do this effectively.

    Thank you

    Mike

    Hi Mike,.

    There are actually two ways to do this.

    You can save the configuration of the CLI by using the saveconfig command. You can load a configuration file using the loadconfig command. I would like to run these commands first, just so that you can see the process. Basically, you can script something around these commands that could do the job.

    We also have a section of Nice knowledge base that covers this topic as well. The approach is a little differnet but the results are the same.

    How can I schedule or automate the backup of the file of configuration XML from my device?  Where he lives?  How to do a scheduled backup of the configuration of a Windows system file?

    Environment:

    -ESA with AsyncOS 6.x or later.
    -A designated host for the introduction and the storage of backups.

    NOTES:

    Familiarity with the BONES of script and forecasts of the tasks is necessary to understand and implement these tasks safely.  Please understand that many of these concepts are beyond the scope of the IronPort customer support and these sample scripts are certainly not taken in charge.  Although these steps have been successfully tested, this article is mainly for purposes of demonstration and illustration.

    The configuration file dynamically generated during the use of the recording or email of the CLI or GUI configuration tools.  To have an effective backup, it is best to "unmask" passwords, which allows you to place a ground form of passwords for local administrative accounts in the device configuration file.  For this reason, we can not simply copy a flat file "running Setup" of the device.  This method allows us to access the device first, issue a command to dynamically build the current configuration, and either save or mail a copy of this file somewhere remotely, without any intervention from the user.  Once this is done, we can then repeat or schedule this task to occur on a regular basis.

    Quickly and automatically save the configuration with the passwords exposed files:

    (1) generate a SSH key pair to use.  Verify that you can access your device via SSH without having to enter a password.  Details on this operation is provided in article #283.

    (2) create script to connect to the device, save the config and copy (or by mail).  Two simple examples written in BASH:

    Example #1: Saving the configuration to a specific host
    #! / bin/bash
    # This saves the config and then he copies locally via SCP in a directory called backup/config-ironport
    HOSTNAME = test.com
    USER name = admin
    FILENAME = "ssh $USERNAME@$HOSTNAME "saveconfig Yes"|" grep xml | cut f 3 - d "" ' "
    SCP $USERNAME@$HOSTNAME:./configuration/$FILENAME./ironport/config-backups /.

    Example #2: Emailing an email address configuration
    #! / bin/bash
    # This sends the config to MAILDEST
    HOSTNAME = MX.test.com
    USER name = admin
    [email protected] / * /.
    SSH $USERNAME@$HOSTNAME 'mailconfig $MAILDEST Yes.

    NOTE: this similar logic can be applied in any scripting language OS such as VB scripts or batch for Windows.  These scripts are intended as examples only rudimentary.

    (3) use cron or or scheduling tool to start work on a regular basis.  Services like cron or Task Scheduler in Windows are easy tools that can be used to automate simple jobs like that.  For example, the * NIX CRON configuration file follows this format:

    minute (0-59), hour (0-23, 0 = midnight), day (1-31), month (1-12), day of the week (0-6, 0 = Sunday), command

    So a good example to run this script every day at 02:00 would look like:
    00 02 * /location/your_script.sh

    Otherwise, here is another method to automate a backup of the configuration.

    How to do a scheduled backup of the configuration of a Windows system file?

    With the following procedure, you can save the configuration on a regular basis of a Windows system file.

    1 install the emulator of terminal 'PuTTY' under C:\

    2. create a text file with the following line and name it "send_config.txt" and place it under C:\ (Change of [email protected] / * / to the email address you want the configuration file must be sent to)

    mailconfig [email protected] / * /.
    3. create a text file with the following lines and name it "send_config_batch.bat" and place it under C:\
    (Change the "hostname" for the host name can be resolved or IP address of your device and the "password" to your real password for the admin account).

    C:\putty.exe-SSH hostname-l - pw admin and password C:\send_config.txt m
    output

    4. Add "send_config_batch.bat" to the scheduled task window.

    The Configuration file will be sent to the address specified in the "send_config.txt".

    I hope this helps!

    Christopher C Smith

    CSE
    Cisco IronPort customer

  • Make a call from Outlook via Smart call connector toolbar

    Hello

    I want to make a call from my Outlook contacts via the toolbar of the SCC. Or when I click directly on the number and I called, the call doesn't come out because it lacks the prefix of output. So I wanted to know if there was an option in the CSC pay "zapper" prefix, or if there was a way to remove the prefix via the CCA or en CLI.

    Thanks in advance

    Thomas

    Hi Thomas

    Trying to set out in 0: Control Panel > phone and modem to your computer.

    The EU I don't have time to test but I did a quick tour on the international community, and someone seems to have solved the problem like this.

    As soon as I get 5 minutes, I'll made my CPU and I'll do some tests drive the solution me also interested.

    @++

  • Automate the removal of content

    Hi guys,.

    Is it possible to automate the deletion of content for a given author? Currently we do this by manually running the archiver applet export items of content according to a criterion of-author and by checking the option "delete after export. We would like to include this in a suite of automated tests.

    Thank you.

    You can also call the archiver via CRMI to work work in a java-based test suite.

    -ryan

  • Automate the plugin revision number.

    Hi all

    I have a simple request. All I want to do is automate the revision number of the .aip generated.

    For all samples, published in the SDK, it is defined in the sdkdef.h. But it is static!

    Revision of foreach, this number must be changed manually.

    My wish is that this number will be incremented automatically with each compilation.

    Anyone know how to do?

    Best regards

    Thomas

    OK, how I realized that is a little awkward but it sort of market.  It is also specific XCode, so I assume you are using a Mac.

    In fact, I created my own project template for XCode plugin Illustrator for this which includes my own version of SDKDef.h with a slightly different name.  The advantage of this is that you can change your revision number without affecting the other plug-ins based on the SDK.  Creating project templates is fairly powerful and easy process in XCode, there are some links below on how to do.

    Bottom line is, you need to modify the SDKDef.h file or create your own and point your project.  If it's just an a stop then you can ignore the project template stuff.

    Lets assume, you have created your own SDKDef.h file, called MYSDKDef.h and place it in the folder ./source/ of the project folder of your plugin.

    In XCode, change the configuration of your project settings and change the prefix the preprocessor Info.plist file to point to your new file: ./Source/MYSDKDef.h (it has initially been something like common/includes/SDKDef.h)

    You will also need to add a new Phase of construction to your target, then right-click on your target and choose Add--> new Phase Build-> new step run Script Build. You'll want to add your new construction phase after phase of copying headers and front Sources to compile phase.

    Now, I created a perl script to actually change the revision number in the file, but you might as well use a script bash or some other scripting language. The main thing to do is to change the kSDKDefAIBuildNumber, the kSDKDefAIMinorVersionNum, the kSDKDefAIMajorVersionNum or the kSDKDefAIRevisionVersionNum, but you already know this.

    So you can either paste your script into the box in the new window run Script Build Phase of information or you can save your script to a file and run it from there, I chose the latter for my phase of compilation looks like this:

    Perl ' $PROJECT_DIR/UpdateVersion.pl ""$PROJECT_DIR/Source/MYSDKDef.h"$AI_CONFIGURATION $PROJECTNAME

    As you can see, I am passing the parameters in my script.

    $AI_CONFIGURATION = debug/Release

    $PROJECT_DIR =

    $PROJECTNAME = the name of your project

    My perl script does nothing if $AI_CONFIGURATION is "Debug".

    I'm sure there are better ways to do it, but it works for me.

    Create XCode project templates:

    http://BRIKSOFTWARE.com/blog/?p=28

  • How to automate the SSH connection/commands on a series of switches PowerConnect 3400 3500 and 6200 series.

    I'm trying to find a way to automate the commands to send a series of switches (about 20) showing some configs and save the output to a file. The way I was trying to do was using plink and creation of a batch of files for her.

    Essentially, it would be something similar to the following.

    ECHO

    for /f % in (devices.txt) plink % l word of PAST of USERNAME-pw-v - m C:\Batch\commands.txt > output.txt

    To split the above command, looking for my ips in the devices.txt and made a "plink pw - username PASSWORD - v IP-l m - COMMANDS > OUTPUT" for each. The problem, I'm running is that the switches do not accept logins, they constantly ask for the user and the password again. Even when you try to put them in the commands.txt he will not accept the entry. I googled using plink with dell switches but there is nothing to talk about this problem.

    So my question is, is it possible to automate this sort of thing in a batch file? Or some way to automate a series of commands to a switch via SSH? I'm just not wan't do manually connect to each of them, carry out my orders, out, reconnect and repeat. I did it on cisco switches so I thought the process would be similar but I don't understand what obstacle I'm running in here. Ideally, I'd like to see how to do this via SSH but at this point, I am ready to accept almost any alternative (secure) to automate the sending of orders for my switches.

    I hope that all makes sense.

    Sorry, I haven't used before plink, so I'm not sure what to change to get this to work. In the past, there was another Member of the community who has been able to use expect to establish connections to switches and save configs.

    Linux.Die.net/.../expect

    It may be somewhat more than installation, but you can be able to make it work for your needs.

    http://Dell.to/1RONL3D

    Let us know

  • ACS 5.6: Problem with deleting a file via cli

    Hello world

    I am trying to automate the removal of 5.6 ACS network devices.

    I have delete.csv file with the list of devices I want to delete:

    name:String(64):RequiredTest0Test1
    When I connect to ACS CLI and run the command to remove the import file I get this result:
    .../acsadmin(config-acs)# import-data add device tftp delete.csv delete_res.txt abort-on-error noneCannot start import.Header is incorrect. Download Import Template for required header record.
    But when I run the web management import file, everything goes well:
    -------- Summary --------Total Number of Records Processed 2Number of Records Failed 0Number of Records processed successfully 2
    So please, this is where someone who knows what I did wrong? Thank you

    To remove devices, try the following command:

    import data delete device tftp delete.csv delete - res .txt abort error no

    In addition, make sure that the file is plain text only. If you're still having problems, check the following debugging:

    mgmt-log debug level debugging

    Then repeat the process, download a support package and to look at the logs for clues.

  • Enter the data shared via BBM inside an application

    Hello

    I need to capture data shared via BBM inside my app BB10. I need to recover the data shared via BBM and then integrate it into my application.

    Is this possible. There is an onShareContent in the BBM-BB7.  We have this method in BB10 on the receiver side.

    This will then run on the receiver side. This must be set before the call to register()
    BlackBerry.BBM.Platform.Users.onsharecontent = function (sender As Object, content, description, timestamp) {}
    try {}

    } catch (e) {}
    TODO: handle exception
    Alert ("sharecontent.init Exception" + e);
    }
    }

    Kind regards

    Annuk

    BlackBerry 10 it is not possible to intercept data shared to BlackBerry Messenger.  But, your application can be a target from any application that supports sharing.  See the link below for more information.

    Receive call

  • You can automate the initial jabber login process?

    I was wondering if it is possible to automate the login process initial jabber. Which means, can a connection to the windows user and have it jabber in connect automatically without them ever having to enter their credentials for this first connection?

    Thank you

    The answer for now is not; However, Jabber will add SSO via SAML in the future that allows you to do most of this. They would need to enter their e-mail address on the first launch of the service discovery occur; However, if the SAML IDP has reviewed their session already be active due to a connection to the field - it's up to the IDP to decide - then authentication would happen automatically. I am not sure that Cisco has committed publicly to what version of Jabber for Windows gets SAML SSO, so I'm not going to refrain to give additional details.

    For now, you should start learning about SAML and CUCM in 10.x, as would be the starting point.

  • Do not lock - automate the deletion of backups RMAN old day after a success

    Hi all

    Admin: Do not lock this thread. I moved here the database instance based on the suggestion of another Member, and the question to this forum. If you want to lock a thread, lock one in the forum of the database, not this one.

    I am looking for a way to automate the deletion of backups RMAN old days only after the occurrence of a success. At the present time, I have daily backups of L0 via crontab, and I need to create a script that can tell if a successful backup is done, then delete the old L0 if it has. Any suggestions on how to start? I'm stuck in code to see if a successful backup has been performed.

    Oracle 11.2.0.3

    Exadata (4 nodes)

    Linux 5.10

    * a from database forum

    A backup is completed when the backup command is complete.

    You have two 'blocks execution' in your rman script.

    Put the DELETE OBSOLETE between the end of the last execution block and EXIT:

    OUTPUT CHANNEL fs1b;
    OUTPUT CHANNEL fs2b;
    OUTPUT CHANNEL fs3b;
    CHANNEL fs4b;
    CHANNEL fs5b;
    CHANNEL fs6b;
    CHANNEL fs7b;
    CHANNEL fs8b;

    }

    remove the backup noprompt obsolete;
    "exit";

    You also want to do some other household:

    cross-checking of backup;

    delete expired backup noprompt.

    overlap archivelog all;

    delete noprompt expired archivelog all;

  • Do I have to have a creative cloud related to the Digital Publishing Suite account account? And what can I combine?

    Hello

    On the one hand, ILO has 2 question here.

    The organization I work for has 2 different Adobe accounts with different products attached to them - 1 account has full creative cloud (who is due at the end of this month the automatic renewal) and a professional edition of the Digital Publishing Suite. 2 account is an account of volume license and has about 5 CC licenses in use in it.

    Ideally, we want a single account to take care of all these. So my questions are:

    1. Is it possible to merge both of these accounts, even if they have different products on them?
    2. Do I have to have an active account of creative cloud to have the Digital Publishing Suite license? (If it is not possible to merge, I cancel the creative cloud on account 1 account and add a new account 2 manually, but I'm not sure if the account DPS need CC).

    Hope someone is able to help me. Thanks in advance for your time.

    Please contact support for assistance with this:

    FAQ: How to contact Adobe for support?

  • Flash Player stops, loading the content after 2nd LoadMovieNum called?

    I'm having a problem to test a swf file in Chrome and Mozilla. I'm using Flash Player 18.0.0.29.

    What is supposed to happen is: page loads Web-> Swf poster-> click on a button that loads a new swf via LoadMovieNum-> click another button to load the next swf via loadMovieNum. At this stage does not load the last swf.

    Details:

    The SWF seems to load in its HTML on a server and it keeps loading SWF as they are called, all simply not locally.

    I have a few hundred of them on the remote server, they seem to agree, but fail if I controlled the local copies.

    Unfortunately, there is a controller to access the server and I can not test the new work there. Haven't really needed during the last 5 years.

    VSP has also fails if I drop the local copies on a local browser, so it doesn't seem to be a problem with the html container.

    Could this be a bug or security with the new player restrictions?

    This seems to be fixed in the next update of flash player which is currently still in beta.

  • Automate the tasks of Mirage

    Hi guys,.

    you know a way to automate the tasks of Mirage, in particular:

    -Deploy applications in cardiovascular disease appear in the specific dynamic Collection

    -Trigger the script leaving smart join/Collection

    -Automate the centralization of endpoint, Reboot, suspend, etc..

    Also I'm looking to solve the following tasks:

    -Uninstalling the Mirage, ideally automated applications again

    -Added a smart Collection where the end point is not member of a domain.

    Any help is appreciated.

    Thanks in advance.

    Kind regards

    Velislav

    This is whats currently available:

    How to: automate the tasks of the Horizon Mirage via API and PowerShell & #187; myvirtualcloud.NET

Maybe you are looking for

  • NetWare unistalling / client server.

    try to add the user account, but it says that I have to close the client user. I see but how close it

  • wireless printer stopped working

    I have a Canon MP170 MG5300 printer works perfectly via wireless until I got updates on my computer on Saturday night, now it does not work.  I've looked everywhere to find out how to reset it to a BT Hub all advice welcome

  • How to use 2 AAA server to different connection end

    Hello, could you help me? It is a part of my setup; I would add another RADIUS server, witch should take care of the telnet at vty 0 4. 10,20,30,40 RADIUS server supports virtual access, and I have another RADIUS server which takes care of to connect

  • Aironet 1142 in Configuration of the House

    One of our customers had problems connecting to their server environment terminal server home wireless. I narrowed down it to their network with wireless at home. An Aironet 1142 was purchased to be placed on their home network to ensure that wireles

  • Media Player does not work

    My windows media player does not open. Ive tried to uninstall, but there is nothing there and when I try to download it, it says I already have the latest version. Not enough to make :( Someone at - it's not what should I do?