Global LUN for all snapshots

Hello

in our environment, we have multiple LUNS to the virtual machines. The problem is that I have to leave space on each LUN for snapshots created by VCB. Is it possible to have a central LUN for all snapshots, it means that the deltas are not stored in the vmx directory but in another for the all machines?

Thank you!

See you soon,.

Malta

Malta.

To have the snapshot created in one location other then the folder where is the vmx is adding "workingDir" parameter in the vmx file.

workingDir = "/ vmfs/volumes /...» »

http://communities.VMware.com/message/904258#904258

Personally, I like to keep all my files together in the same directory. You must also ask yourself what process you run which causes the creation of these great snaps.

Tags: VMware

Similar Questions

  • How to create global CSS for all TextFields

    In most environments that support CSS, there is a way of saying "you know all these things of the type X? Use this stylesheet to this topic. (For example, HTML, FlexSDK).

    In Flash Pro, I'm looking for a way to define a style sheet for all TextFields. I'm sure it's really simple, but all the examples I have found require a direct handle to the TextField object. I thought to use the StyleManager, but he seems to aim only to set styles on Flash components.  I had rather does not show the scene for ADDED_TO_STAGE, since it is relatively expensive to a problem I don't know has a less costly solution. I find it impossible to believe that the Flash team would have taken the trouble to add support of CSS, but then would not have provided a way to apply this CSS without directly reference each text field.

    Can someone point me in the right direction?

    So, what I've found, is that there are a lot of things that you (or someone) can do to a TextField that explode when there is an attached style sheet. Adobe usefully throws errors on these instead of their treatment with elegance. And it would be nice, if I used all my own code, but I'm not, and Adobe is not correctly handle these errors in the code of the component, either.

    So what I decided to do is just "indicate" I want a style attached by the presence of a word in the name of the instance that is almost like the 'id' on a #cssSelector. At present, I am keep simple, goes for 'Link', being the whole point of the overall exercise of style for links. With a little luck, Adobe has not used anywhere in the elements. If it turns out, I'll just change it in the code I do control.

    I decided to go ahead and just listen to ADDED_TO_STAGE, expensive as is. Your idea is good, but I think it would be even more expensive to run periodically, and I probably need to listen ADDED_TO_STAGE anyway to know when to run.

    The method looks like this:

    protected function setCSS(e:Event) {}

    var tf:TextField = e.target as TextField;

    TextField instances that need should be 'Link' as part of the instance name

    If (tf & tf.name.indexOf ('Link') >-1) {}

    tf.styleSheet = stylesheet;

    }

    }

    Perhaps that will help someone else who wants to do the same.

  • How to set global variables for use by all THE #subform [0] items of form1. ?

    Hi all

    I don't know how to code javascript but am new to Adobe LiveCycle.  When I open the script editor, I have the following code (the code is in United Nations in bold):

    -form1. #subform [0]: initialize :-(FormCalc, client).

    //////////////////////////////
    TO START: SET GLOBAL PRICES.
    //////////////////////////////

    var Cityscope_Sydney_CostUser1 = 60,39;
    var Cityscope_Sydney_CostUsers2to5 = 3.02;
    var Cityscope_Sydney_CostUsers6to20 = 1.21;
    var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_Sydney_CostHardCopyWithoutOnline = 54,67;
    var Cityscope_Sydney_CostHardCopyAdditional = 14.59;

    var Cityscope_NorthSydney_CostUser1 = 48,40;
    var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
    var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
    var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43,54;
    var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;


    ////////////////////////////
    END: SET GLOBAL PRICES.
    ////////////////////////////

    -form1. #subform [0]: enter :-(FormCalc, client).

    -form1. #subform [0]: output :-(FormCalc, client).

    -form1. #subform [0]: calculate :-(FormCalc, client).

    -form1. #subform [0]: validate :-(FormCalc, client).

    -form1. #subform [0]: preSave - (FormCalc, client).

    < < = etc etc etc = > >

    -form1. #subform [0]. Item1Cost::initialize :-(JavaScript, client).

    -form1. #subform [0]. Item1Cost::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    Store the values of the form of friendly names.
    var AreaSelected = Item1Area.rawValue;
    var NumberOfUsersSelected = Item1Users.rawValue;

    Declare other variables.
    var Users1Calculation;
    var Users2to5Calculation;
    var Users6to20Calculation;


    Calculate the cost to the "components" user will depend on the number of users selected for the region.
    Switch (true)
    {
    If (NumberOfUsersSelected < 2):
    Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 0.00;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 1 & & NumberOfUsersSelected < 6):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 5):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
    break;
    by default:
    Alert ("BROKEN: calculate the individual components of cost of use will depend on the number of users selected for the region.");

    }

    apply the total cost for this article
    Item1Cost.RawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;

    -form1. #subform [0]. Item1Cost::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::ready:layout - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::initialize :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::calculate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Users::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Users::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::ready:layout - (FormCalc, client)-

    .. and so on and so forth...

    In short, I want the code in:

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    .. .to be able to access the variables I created in:

    -form1. #subform [0]: initialize :-(FormCalc, client).


    (I guess that's where I store global variables)

    At this point, global variables are not accessible with the above configuration.  Was the only one I can get this working is to cut and paste the Globals in each item of form1. #subform [0], which of course defeats the purpose of global variables!  I intend to have a lot more items so wouldn't duplicate global variables for each of them!

    Can someone show me how to do this?

    Any help is very appreciated!

    Thank you

    Stanbridge

    Post edited by: stanbridgej - colors and fonts or not will not save.  Are bolded my question make (non-fat) code easier to read (I hope).

    I haven't used Formccalc, but I thought it would be the same regardless. Insert a script object to the top of the hierarchy and call it, for example "sco." Paste the Globals. Then refer to variables of the extent that sco. Cityscope_Sydney_CostUser1, etc. Make one

    App.Alert (sco. Cityscope_Sydney_CostUser1);

    one of the fields. If the debugger is activated, it will tell you if it cannot resolve the reference as "sco. In this case, you may need to use the som expression to reference the script object, for example

    var scoScript = xfa.resolveNode ("topOfHierarchy.sco");

    scoScript.Cityscope_Sydney_CostUser1

    But if as close as possible to the top of the hierarchy above should work.

  • I'm trying to get the Menu Editor 1.2.7 to work globally for all users. I added the as in the extensions folder, and it is not installed auto-magiquement.

    I would like to have the Menu Editor installed for all users. I tried putting the as file in c:\Program Files (x 86) \Mozilla Firefox\extensions in the expectation that the user would be prompted to install.

    You must rename the XPI file to the ID (GU) of the extension in the install.rdf file or just install the extension in a profile and copy the file or folder of this profile in the extensions folder.

  • e-mail is not downloaded for all account when I click get mail

    When I opened TBird it downloads the e-mail from my old default account only. This problem started when I added a second account and it's my fault. Once that TBird is open if I click on "Get the message" l Thunderbird gets my email to my old defaultaccount only. I have to click on to get the Messages and use the arrow to select each account. For more info, I use a global Inbox and all of my mail goes to 'Local Folders'. If I remember well when I started using TBird somewhere in account settings, there is a checkbox that says download or pick up the mail account when getting mail. (Something to that effect. from TBird v2 or so.) I couldn't find this option when I searched for it in the account settings, I have TBird 37...

    Help to remedy this problem frustrating would be greatly appreciated.

    ~ resetXX

    menu (alt + T) tools > account settings > server settings, and then click the Advanced button.

  • How to make a display virtual for all incoming messages from multiple accounts, just like in Opera Mail?

    I want to have a replica of the Opera e-mail function. This feature allows you to aggregate all shipments of all accounts of e-mail in a single virtual aggregated view.
    That is to say, we have 3 different e-mail accounts. Mozilla Thunderbird on a daily basis, I check if there is something again in the folder entering for the CPA. To do this, I click on the folder for each account. Now, what I want, is to click on a single folder where I would have a virtual aggregate view of the record entering for all these 3 accounts. I guess that, same thing can be done with different types of mail, such as:

    • Unread messages (after watching the mail, it automatically goes straight to aggregation 'Messages sent', below)
    • Read messages
    • Messages sent
    • Spam messages
    • Drafts, etc.

    There is also this interesting feature (virtual thing applies here as well) which allows to have a bird's-eye view of attachments across all accounts classified into different job descriptions, such as:

    • docs (xls, doc, ppt, etc.)
    • images (jpg, png, etc.)
    • Archives (zip, rar, etc.)

    More then that it would be even better to have characteristic labling discovers aggregation through all our. In other words, if we scored several important messages in, say, 2 accounts, those that must be considered in the same virtual aggregate view by name, for example, "important messages". Maybe even with flags, todos, etc..

    POP email accounts can be configured to use a global Inbox. Email IMAP accounts cannot.

    However, there are several 'views' in Thunderbird. I suggest you try "unified." This creates a Visual Inbox containing all messages in the Inbox with subfolders showing the individual mailbox, so you can always see them separately if necessary.

    through the menu bar;
    View > folders > unified

    Via the Menu icon
    Icon of the menu > folders > unified.

    This view would show all emails marked "Important", in order to sort by Tag.

  • AddOns for all users

    I'm trying to deploy Firefox on my personal work machines.

    We use Windows 7 on them and want to be able to have available extensions for all users on this computer.

    However, after much research, it seems that all previous to this problem solutions have been limited or removed.

    There should be an easy way to have addOns installed for all users. It is not feasible to make each single user install each single addOn one by one.

    So while the links were good and everything worked, but I thought that it would take an easy source of step by step to get an addon to work for all users of a "dumbed down" version As a result I got an addOn to work for all users, there may be shortcuts here and there, but it worked for me.

    So here it is:

    1. first you need to download the '. '. XPI file"of the addOn. This is done by downloading using another browser (Internet explorer).

    2. Once downloaded, you must extract the contents of the "." XPI file"in a folder. I used WinZip to do this.

    3. go to the extracted files and you should see a file called 'install.rdf '. Open this file with WordPad.

    4 in this file is a Unique ID, specific to the addOn. It is normally at the top of the file. You can search the

     <Description about="urn:mozilla:install-manifest">
    

    and the next line after that it should be your ID in the form of:

     {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    

    for example.

    5. with the help of this Unique ID, you must create a folder in the install directory of Mozilla Firefox called 'distribution' and a subfolder in that called "extensions" and a subfolder using the name of your Unique code.
    Example:

     C:\Program Files (x86)\Mozilla Firefox\distribution\extensions\{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    

    In this case, you should empty your extracted contents of the "." XPI file.

    6. you must now tell Mozilla to look in these folders. To do this, you need to change the global preferences. This is done by going to:

     C:\Program Files (x86)\Mozilla Firefox\defaults\pref
    

    In this case, you should have 2 files:

     channel-prefs.js
     user.js
    

    If they do not exist, create them if you please.

    Inside of "channel - prefs.js" you need to put the following at the end of the file:

     pref("app.update.channel", "release");
     pref("extensions.enabledScopes", "0");
     user_pref("extensions.autoDisableScopes", 0);
    

    Inside the "user.js" you must put the following at the end of the file:

     user_pref("extensions.shownSelectionUI", true);
     user_pref("extensions.autoDisableScopes", 0);
    

    7, you're done! Your addOn should be activated automatically as soon as the user starts Firefox.

  • change the pop-up list for all cells using this pop-up window

    I have a workbook of numbers more who uses the same large table pop up in almost every row in each sheet...

    How can I maintain the list of items on the global scale (in all occurrences)?

    Creating on the Mac to use it on all my devices.

    Thank you!

    Let's say you already have a selection of cells that are formatted as a menu pop up.  Here is an example.  C2, D2 and E2 are all the pop ups.

    If you want to add a new item to all the pop-ups AND want to keep the current selections, perhaps you want to add 'In PROGRESS' for the existing pop ups, maintain the current selection and convert the cell with the new element to a set menu.

    Simply select the cells with the existing pop-up and the cell with the new item.

    In this case, I selected the cells C2 to E2, then I held the command key and click cell E3

    Now, to make all these popups of cells using cell formatter:

  • Convenient to blackBerry Smartphones, based on recommended experience device (f/w? /) s/w version (s) for all PC activities oriented the TELUS Mobility BB Tour 9630

    Hey all the... I wonder if I can pick the brains of the people and get good advice re: practice based experience recommended device (f/w? /) s/w version (s) for all PC activities oriented the TELUS Mobility BB Tour 9630, including PC-resident s/w (pkgs) & USB / USB Serial drivers (on XP Pro SP3).

    I will probably be wanting to improve various (f/w? /) components s/w after a hiatus of three years on the BB before... However, based on my own experience of technology, newer / more recent (f/w?) / s/w (pkgs) is (are) not always the best for the end user and, same can be limiting in some identifiable ways... I'm speaking in general terms here... so... it might be the last BB s/w is the absolute best way to go for my PC o/s and turn device platform... I'm just out there throwing this idea to make a educated to determine what updates to install and what level of version, in the case where the generalized suspicion that I have described above have no worth.

    I don't have (or want) data enabled on the 9630, then, have screen capture or copied the text that he (like all the information in the Options > topic: "BlackBerry (R) 9630, smartphone (3G, CDMA), v5.0.0.419 (Platform 4.2.0.179)", 3G bands 1... "") ([and, or course, there is much more information on this screen...]) me (any suggestion or help on this front would be greatly appreciated) have so far escaped... perhaps the most relevant appliance version information required by the members of the forum to help me to decide this question also appear in my PC screenshots below.

    Here's what I left over on my PC from my relationships with my BB Storm 9530 3 years ago:

    Thank you, FFF

    Hello! Thanks for the clarification... they help greatly to understand your request. Here is my opinion:

    Frankenstien wrote:

    In simpler terms... should I upgrade my TELUS Tour 9630 software (currently at: v5.0.0.419 [Platform 4.2.0.179] of the most currently available software, regardless of the version # / platform # which may be?)

    Or, is it an advantage in the upgrade only to a certain level of version of BlackBerry OS on this particular device?

    For your 9630, you're already on the last level of operating system that fate/Telus media. I don't know if other carriers have published anything more advanced, but you can read a very good discussion here:

    Of after what I saw, I would assume that there is nothing 'new' than you... at least not officially... but you can dig through the portal to download official to validate the fact that:

    Given that it's carriers who hold responsibility for the release of BB OS packages to their clients, this portal is indeed sorted first by carrier... so you must first dig to find out which carriers support your 9630 and then compare packages of OS coming to present each company support. Unfortunately, it is also the responsibility of carriers to release change log information, but too much of them is rather lax on this point. But this thread I linked to above has I think some very good information that could help you in your quest. You should also look for other threads here (and elsewhere) on similar topics.

    Frankenstien wrote:

    And, I had to upgrade the driver USB BlackBerry / USB Serial Driver / Device Manager / Desktop Manager software on my XP Pro SP 3 PC to newer versions? (1st post screenshots all present the current version # s... this software was installed all around mid-2009)

    Or, is there an advantage in upgrading only at certain levels of version of the BlackBerry software for each of the above elements... in the case of this particular device?

    Desktop software does not care the specific device. On the contrary, it gives some capabilities that you choose. For example, if you need the ability to export your BB to CSV/ASCII, then you need to stay in the range of version 6 because this feature has been removed from version 7. Similarly, if you intend to synchronize your BB with a computer (-) office or PIM, you must make sure that you run a Desktop software version that is compatible with your PIM:

    • KB12268 Support for synchronization for BlackBerry Desktop Software for Windows

    If none of those that are important and/or compatibility is fine with the latest version, it is often wiser to stick to the latest bug fixes, feature enhancements, etc. Is doesn't want to is not to say that people have no problems with the latest version through the Desktop board software on this site is confirm that pretty quickly! But, in general, there should be no harm/no foul to the use of the latest version of the with your BB desktop software.

    In addition, it is always a good idea to also download and install on your PC the BB OS package that is actually running on your BB. This is a little personalized Desktop software so that it can better work with your specific environment of BB. You cannot choose which components within the desktop software you want to update (mentioning "point line" you did)... instead, you install the whole package, and it contains within everything there as 'in progress' based on the global version of the Desktop software package.

    Hope that helps! Good luck!

  • How can I block the SMTP for all users but mail server

    I can't understand (1) how can I refuse port 25 for all users on the network and allow for Exchange server SMTP, also I have MS Exchange, which manages the web and smtp and in my setup below you can see that there static mapping to publick ip with http/smtp only, then (2) how can we separate the traffic entering a publc IP will outside servers inside ex : (MSexchange public ip address is x.x.x.207-> http = 172.16.2.13, 172.16.2.14 = smtp)

    Thank you

    ___________________________________________________

    6.3 (1) version PIX

    interface ethernet0 car

    Auto interface ethernet1

    ethernet0 nameif outside security0

    nameif ethernet1 inside the security100

    names of

    name 172.16.4.10 pdc

    name 172.168.4.11 llc

    name 172.16.4.11 ftp

    object-group service E-mail tcp

    port-object eq www

    EQ smtp port object

    object-group service tcp - udp terminal

    3389 3389 port-object range

    object-group service mw tcp - udp

    Beach of port-object 367 367

    radmin tcp service object-group

    RemoteAdmin description

    4899 4899 object-port Beach

    object-group service mw1 tcp

    Beach of port-object 367 367

    access-list 101 tcp refuse any any eq smtp

    access-list 101 permit tcp any host object-group x.x.x.251 terminal

    access-list 101 permit tcp any host x.x.x.214 object-group radmin

    access-list 101 permit tcp any email host x.x.x.207 object-group

    access-list 101 permit tcp any host x.x.x.212 object-group mw1

    access-list 101 permit tcp any host x.x.x.211 eq ftp

    sheep ip access-list allow any 192.168.101.0 255.255.255.240

    IP address outside x.x.x.194 255.255.255.192

    IP address inside 172.16.2.1 255.255.0.0

    IP verify reverse path to the outside interface

    IP verify reverse path inside interface

    alarm action IP verification of information

    IP audit attack alarm drop action

    IP local pool mypool 192.168.101.1 - 192.168.101.20

    don't allow no history of pdm

    ARP timeout 14400

    Global interface 10 (external)

    NAT (inside) 0 access-list sheep

    NAT (inside) 10 0.0.0.0 0.0.0.0 0 0

    static (inside, outside) x.x.x.212 172.16.4.12 netmask 255.255.255.255 0 0

    static (inside, outside) x.x.x.251 172.16.4.51 netmask 255.255.255.255 0 0

    public static x.x.x.214 (Interior, exterior) pdc netmask 255.255.255.255 0 0

    public static x.x.x.211 (Interior, exterior) ftp netmask 255.255.255.255 0 0

    "REM # 172.16.2.13's Exchange with Outlook Web servers #

    static (inside, outside) x.x.x.207 172.16.2.13 netmask 255.255.255.255 0 0

    Access-group 101 in external interface

    Route outside 0.0.0.0 0.0.0.0 x.x.x.193 1

    enable floodguard

    Sysopt connection permit-pptp

    VPDN PPTP-VPDN-group accept dialin pptp

    VPDN group PPTP-VPDN-GROUP ppp authentication pap

    VPDN group PPTP-VPDN-GROUP ppp authentication chap

    VPDN group PPTP-VPDN-GROUP ppp mschap authentication

    VPDN group PPTP-VPDN-GROUP ppp encryption mppe 40

    VPDN group VPDN GROUP-PPTP client configuration address local mypool

    VPDN group VPDN GROUP-PPTP client configuration dns 172.16.2.6 172.16.4.6

    client PPTP-VPDN-GROUP VPDN group configuration wins nymc_pdc

    VPDN group VPDN GROUP-PPTP pptp echo 60

    VPDN group VPDN GROUP-PPTP client for local authentication

    VPDN username * password *.

    VPDN allow outside

    This is your problem:

    Access-group 101 in external interface

    You link this access list to your external interface. This means that the rules are applied to incoming traffic IN your network. The implicit IP any any rule is because you have not bound to an access list on your inside interface.

    To prevent users from going out, you will need this:

    access list permit tcp host exchange_IP OUTPUT no matter what eq smtp

    access list tcp OUTPUT deny any any eq smtp

    Access-group interface inside OUT

    See how this access list is linked to the inside interface... it will affect traffic leaving your network. Note: Once you apply this inside allow any interface it will remove the implicit.

  • code for all new creative cloud educard Bookstore says invalid

    Hello

    When I visit www.creativecloud.com/educard and follow the direction that the code for all new creative cloud educard Bookstore says invalid, screenshot below, is there a better way than this forum to find someone who can help?  can anyone send me please?  y at - it a live support person, I can call? :

    [personal information deleted... [Mod - https://forums.adobe.com/docs/DOC-3731]

    [This is an open forum, not the Adobe support, please do not post personal information]

    [If you send messages by e-mail, please turn off your "sig file" function for display]

    [NEVER POST A SERIAL NUMBER OR AN OPEN FORUM BUY!]

    [You gave your number to all who read this message before]

    [I removed the number... or those who receive all their messages of forum by e-mail]

    Well, your redemption code is now useless after being posted in an open forum

    This is an open forum, not Adobe support... Click below to contact Adobe staff for help

    While the forums are open 24/7 you can't contact Adobe support at any time

    Chat support: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • Plans of photographer for all switching applications keeps failing.

    Hey guys! I'm changing my plan of photographer to apply a plan all the app, but it won't let me finish the change. Can anyone help?

    Single update for all http://forums.adobe.com/thread/1235382 clouds can help

    or

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • Save all snapshots of history in the form of files

    I admit, I love save snapshots of history! Sometimes, I want to save them in a file later once the image has been closed.

    I wrote an action to save the 10 current snapshots on the files. It works fine with the following limitations:

    (1) she recorded only 10 snapshots (it is easily developed if necessary)

    (2) the snapshots must be named 'Snapshot 1', 'Snapshot 2"etc.

    This action does not work if the snapshot has a different name.

    Does anyone know of a script that is similar?

    Here is a sample of the recorded text action steps:

    Set: Save First 10 History Snapshots to File
      Action: Save First 10 History Snapshots to File
      Select snapshot “Snapshot 1”
      Make document
      Using: Current History State
      Save
      Close
      Select snapshot “Snapshot 2”
      Make document
      Using: Current History State
      Save
      Close
    

    This script will save all snapshots in a folder called instant out of the paths of documents, each file is saved as a jpg with the name of the snapshot file.

    #target photoshop;
    app.bringToFront();
    main();
    function main(){
    if(!documents.length) return;
    try{
        var Path = activeDocument.path;
        }catch(err){
            alert("You save your document before running this script!");
            return;
            }
    var doc = app.activeDocument;
    var now = doc.activeHistoryState;
    var Snaps = snapShotList();
    var outputFolder = Folder(Path + "/snapshots");
    if(!outputFolder.exists) outputFolder.create();
    for (var z in Snaps){
        revertNamedSnapshot(Snaps[z]);
        var saveFile = File(outputFolder + "/" + Snaps[z].toString().replace(/\./g,'_') + ".jpg");
        SaveForWeb(saveFile,80);
        }
    doc.activeHistoryState = now;
    };
    
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);
    };
    function snapShotList(){
    var doc = app.activeDocument;
    var hs = doc.historyStates;
    var now = doc.activeHistoryState;
    var Name = new Array();
    for(var a =0;a 		   
  • How to change the author notices for all documents?

    I just discovered the Note tool in Photoshop, which I think will be very useful to our society we are working a lot on projects.

    In my view, there is a way to add an author to individual notes, but there is nowhere to set the author for all future notes you create. This means that I have to put my name as the author on all notes whenever I'm doing a. It's rather inefficient.

    I searched for a way to set the author on a global scale in Photoshop, but could not find. Most programs programs for editing or commenting interfaces include this setting - Acrobat and Microsoft Office are the first to come to mind. I looked under preferences and found nothing and I have also tried all closing documents and enter my name as author, but Photoshop did not remember it the next time I tried to add a note.

    Does anyone know how to configure this? Or is it just that Adobe omis/forgot to include this feature?

    I also tried all closing documents and enter my name as author, but Photoshop did not remember it the next time I tried to add a note.

    Works for me, would there be a permissions problem?

    Could you post a screenshot with all images, closed and the visible Options bar?

  • The list of all snapshots wth Orchestrator with

    Hello

    I'm doing a script to list all snapshots of a vcenter Orchestrator with javascript. It's easy with powershell, but we changed our vcenter for vcsa 5.5 windows so I can't use it.

    I would like to have the date of creation of snapshots, snapshot size and vm. I would like to have the output to a file to send it, or in html format.

    I have to say that I'm not good with orchestrator, this is a new product for me, and I know not how to send an e-mail and how to make a script of ' hello world! '

    Someone at - it a script like this?

    Thank you to

    Try this workflow attached... Recently, I helped someone with a similar request.

Maybe you are looking for

  • Any ideas, suggestions, comments...

    For several months now I got sometimes pop up notice on my Windows 7 update of Office programs that need and click on the pop-up window to start the update. The title of the window for a while was "software not. Recently, it has changed to 'not updat

  • HP w1907v monitor suddenly becomes yellow

    Hi all! I tried to search if everyone has this problem, but I have not found anything. My monitor HP w1907v since two days changed to white to yellow. O.S.: Windows XP Pro & Ubuntu [in the two system white color turned yellow]. I have checked the cab

  • The volume control works only when configuring integration HotKey is on...

    I'm not VERY good at the computer... But, my volume keys worked very well until I had to reboot my computer. After that, it stopped working. I tried to install integration HotKey. The sound would work when the screen is in place. When you exit the in

  • unknown device on PCI Express Root Complex

    Unknown device on PCI Express Root Complex What drivers are needed for the following error: "unknown device on PCI Express Root Complex . The drivers for this device are not installed. (Code 28) » Device ACPI\HPQ6001\3 & 11583659 & 0 ID of my laptop:

  • Long-range WiFi network

    Hello I would like to know if this is possible with some Linksys router or extender to increase the WiFi coverage by adding an external antenna (parabolic style) and to what extent it would provide coverage if the antenna 24dBi. If you have another r