How can I tell that an individual product is installed rather than being a part of Creative Suite?

Dear All,
Sorry if this question is not appropriate for this forum, but I could not find a better one.
When I inventory a computer's registry, how can I know that the individual product (such as PhotoShop CS5) is installed, rather than installed as part of the product suite, such as Creative Suite CS6?
Kindest regards,
QuietLeni

Mylenium,
Is this true for ALL versions of the Adobe Suites or just the latest ones?
I seem to have a computer which is showing up in the list of machines with CS5 installed and in the list of machines with PhotoShop CS5 installed.
Kindest regards,
QuietLeni

Similar Messages

  • How can Apple tell that the liquid damage in my mac air was made by me?

    Apple said my five months Mac Air has liquid damage inside and I need to pay more than $400.
    I totally cannot accept it.
    Please have a look below two pictures from Apple.
    I can see corrosion, but how can Apple tell this damage was made by me?
    Actually I can easily approve this was definitely not made by me because of this part's location.
    Please have a look below picture. I circle it by black on the left above corner.
    This Part is facing to the ground and is covered by the case like below picture.
    All of above picture can easily approve I cannot put water inside to damage this part without damaging other parts.
    1. if water from keyboard, water will definitely pass by other places and damage other parts.
    2. if water from buttom, there is protected by the case. How can I put water inside?
    I believe that my case was just Hastily delt by one junior staff and later the manager just tried to cover his staff's mistake.
    I know the apple's product is very good. But if apple treats customer like me, I believe sooner or later Steve Jobs would cry in heaven.
    One of my friend told me normally there are several paper inside laptop and they will change the color if touching  the water.
    So people can tell the laptop was poured in water if several paper change the color togother.
    I think this way is fair enough. But in Apple store when I asked the manager whether Mac Air has this kind of paper inside.
    His answer is "not sure". I really do not know How can this man be manager!!
    can somebody tell me whether mac air have this kind of paper inside the body?
    Thanks,

    this:
    Did not exist at the point of delivery to the consumer.
    Nor did the white corrosive agent present exist at the point of sale.
    " exposure   of copper   alloys   to   moisture   or   salt   spray   will   cause   the formation  of  blue  or  green  salts  called  verdigris.  The presence   of   verdigris   indicates   active   corrosion."
    I see also 2 contact points with DEEP corrosion pitting not indicative of any defect from the factory.

  • HT3529 how can you tell that someone read your text message?

    How can I tell if someone has read my text message?

    Text messages, i.e. SMS or MMS, do not have a "return receipt" feature. iMessages, however, do. If you're sending via the Messages app, your friends need to turn on the "Send Read Receipts" option in the Messages settings on their iOS devices.
    Regards.

  • How can I tell all PCs has the DAU installed?

    I am running ZCM 10.3 on SLES 10. I have enabled patch management and I saw the DAU has version 38. How can I tell version 38 is the latest DAU for ZCM 10.3.
    Also, how can I tell all devices have the latest DAU installed? I came across a few devices have problem with ZCM agent and after I fixed the issue, I saw it started to install the DAU. However, if I have not touched that managed devices, I would not know there is a problem. Can I check all devices status with DAU on ZCC?
    Regards
    Andy

    andyj2009,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • How can I tell if J2SEv1.4.2 sdk installed?

    I have just downloaded and installed J2SEv1.4.2 sdk, without netbeans, as this install was hanging at 8%.
    At the end of the SDK only install it said it was unable to locate down[1].htm, it was looking fro it in my temporary internet files. There was no such file on my PC so i hit cancel. It said it was rolling back, but then said it was complete.
    How can I tell if it installed sucessfully? I have a C:\j2sdk1.4.2_02 folder with some files in it.
    Any help much appreciated

    After setting your PATH to include the bin directory under the SDK installation directory, can you compile java source files from the command line?

  • How can I tell that a default numeric format has been applied to a numeric limit step?

    I am working on generating custom HTML code for our test systems in order to reduce the 'footprint' of the standard HTML entries for numeric limits, multiple-numeric limit steps etc....
    For a Numeric Limit step, I can set the Numeric Format via the 'Limits' tab and select the pulldown arrow to select any format.  Does TestStand actually save this information with the step so I could possibly use this later?   I ask this because my modifications are within the 'ModifyReportEntry' Callback.   When I am modifying the code to generate new HTML within this callback, I have no idea if the developer has selected a Numeric Format for a given step OR simply left it as DEFAULT.
    To make matters more confusing, here is some more information....
    When I pause the execution in the callback I notice the following:
    Case 1:  User has selected a Numeric Format ( this example I will say 3 digits of precision ) %.3f. for a numeric limit step.
    Parameters.Result.Limits.Low = 10.000
    Parameters.Result.Limits.High = 20.000
    Parameters.Result.Numeric = 15.657
    Notice the numeric data is ALREADY formatted! Great, I can simply use this to generate my custom HTML table for the numeric limit step.
    Case 2 : User has left the numeric format to <Default> for the step.
    Parameters.Result.Limits.Low = 10
    Paramters.Result.Limits.High = 20
    Parameters.Result.Numeric = 15.65713515155
    Numeric data is NOT formatted.  I know that TestStand will apply the Default Numeric Format that is configured in the report options when it writes the report but since I am doing a custom report I am stuck.
    My question is how can I possibly tell that the data has already been formatted by TestStand in the ModifyReportEntry callback?  Is there some flag that I could check or anything?
    I do notice that the Parameters.ReportEntry string contains TestStand's default HTML code for the step and this is already properly formatted.. so as a possible workaround I could 'pick out' the data from this string but this is slow and time consuming.
    Thanks
    PH

    PH,
    You can find out if the numeric format has changed using the TestStand API. I use the following statement in my step's post-expression to find out the numeric format that TestStand uses for the step.
    Step.Limits.Low.NumericFormat
    If the string returned is an empty string, then it is the default format, otherwise, it's the one specified in the string.
    Hope this helps.
    Raj
    National Instruments
    Applications Engineer

  • How can I tell that these "OEM" back covers on eBay are true Apple genuine parts?

    My camera lens is scuffed and instead of replacing that part, I'd like to replace the entire back cover.  I see a lot of these on eBay listed as OEM, but how do I know it's an Apple genuine product?  Where do they get these parts anyway?  Also, I'm reading that Apple will replace it for 29.99 USD, but then also reading that they don't do repairs?

    Needler56 wrote:
    My camera lens is scuffed and instead of replacing that part, I'd like to replace the entire back cover.  I see a lot of these on eBay listed as OEM, but how do I know it's an Apple genuine product? 
    You don't know.  Apple does NOT sell parts, so chances are they're not real.
    Needler56 wrote:
    Also, I'm reading that Apple will replace it for 29.99 USD, but then also reading that they don't do repairs?
    Apple will replace the back cover for $29.  Make an appointment with the Genius Bar and bring it in.

  • Help! How can I tell which Airport Card I have installed in my Mac Pro?

    I bought a mac pro from comp usa in December, without the airport extreme option. I later got an airport card from apple on-line and took it to my Apple store to have it installed. I just don't know if it's the newer 802.11n card or an old 802.11g?
    Any way to tell this in system profiler it just says:
    Wireless Card Type: AirPort Extreme (0x14E4, 0x87)
    Wireless Card Locale: USA
    Wireless Card Firmware Version: Broadcom BCM43xx 1.0 (4.80.79.1)
    Thanks a lot!

    There is only one model of AirPort card for the Mac pro ( it is draft 802.11n compatible ). Some other intel Mac's may or may not have had the 802.11n enabler update applied. The enabler is/was a $1.99 download from Apple, so priced as the FTC deemed that it "added" features rather than revised existing firmware.
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?nplm=D4 141ZM/A

  • How can I make ringtones show in my Tones tab rather than the Music tab?

    I just bought my first iPhone 4 and uploaded a bunch of music ringtone files to iTunes and changed the default preference to display the Tones tab. However, the ringtones all got added to the Music tab rather than the Tones tab. I have a number of questions:
    I'm used to other phones where any music file can be set as a ringtone for a particular contact. Is this the case for iPhones too?
    If so, how can I set a ringtone for a contact from these music files?
    If not, how can I get the ringtones to appear in the Tones tab? I assume that I would have to do that to sync ringtones to my iPhone ringtone "folder".
    Is there another alternative? I read on the forum something about dragging ringtone files to the iPhone. Not sure I understood that! Does this mean I can drag a music file from the Music tab to the iPhone icon and have that file end up in the iPhone ringtone "folder"? If it ends up in the Music "folder", how do I access it to set it as a contact ringtone?
    Thank you for any light you can shed on this.

    It would be good if this was made a user-defined Option (Tools -> Options -> Tabs) in the next update of Firefox rather than having to install an add-on. I currently keep Firefox open to view my Accuweather.com add-on running or because I know that I will be returning to Firefox in short order. (I do close Firefox if I have visited a sensitive or secure site to ensure better security.) Every time I want to go to a bookmark, I must open a new "(Untitled)" tab before selecting my bookmark using the keyboard (I'm a dedicated keystroker; it's much faster for me). This way, when I close the website, I have an "(Untitled)" tab displaying so that Firefox doesn't close. Why can't I set an Option parameter that will result in me not having to go through this? Alternatively, allow users to set an option to keep Firefox loaded and open in the event only one tab is open and maybe if only one Firefox application window is running (I avoid having more than one Firefox window open as much as possible). I've addressed this last issue in the past but have seen no change when one closes the last tab in a Firefox window. As general practice, I would think that Firefox would run better if options, like I have described above, were part of the Firefox application code and not given to needing an add-on which may cause instability in Firefox as they have in the past, even with author verification and certification.

  • How can i have bookmarks automatically in a new tab rather than the tab i am in when i select a bookmark?

    How can I get book marks to automatically open in a new tab rather than the tab I am in when I select the bookmark?

    It would be good if this was made a user-defined Option (Tools -> Options -> Tabs) in the next update of Firefox rather than having to install an add-on. I currently keep Firefox open to view my Accuweather.com add-on running or because I know that I will be returning to Firefox in short order. (I do close Firefox if I have visited a sensitive or secure site to ensure better security.) Every time I want to go to a bookmark, I must open a new "(Untitled)" tab before selecting my bookmark using the keyboard (I'm a dedicated keystroker; it's much faster for me). This way, when I close the website, I have an "(Untitled)" tab displaying so that Firefox doesn't close. Why can't I set an Option parameter that will result in me not having to go through this? Alternatively, allow users to set an option to keep Firefox loaded and open in the event only one tab is open and maybe if only one Firefox application window is running (I avoid having more than one Firefox window open as much as possible). I've addressed this last issue in the past but have seen no change when one closes the last tab in a Firefox window. As general practice, I would think that Firefox would run better if options, like I have described above, were part of the Firefox application code and not given to needing an add-on which may cause instability in Firefox as they have in the past, even with author verification and certification.

  • How can I save an email as a download file rather than a file in my email

    I wish to save entire emails in a windows folder rather than in an email folder. I have tried hitting "save as" but although I get a message telling me the download is complete I cannot open the documents. Also, I am getting weird icons after I try to download thses emails on my desktop. I am not that familiar with Mozilla but was running IE for the longest time. Any help would be appreciated.
    == This happened ==
    Every time Firefox opened

    '''File|Save As''' gives you several options. By default it will save as a .eml file, which will need an email client to view. You can usually save by drag-and-drop, but that creates an .eml file too.
    You can save as HTML by putting in an html file extension when doing File|Save As.
    This add-on:
    https://nic-nac-project.org/~kaosmos/mboximport-en.html
    gives you multiple options for saving one or more messages in various formats.

  • How can I tell that it is a hardware issue or ios bug issue with Iphone 4S Battery life & flapping 3G?

    Hi There,
    My Battery dies real quick on 4S compared to 4 eventhough my wireless is off, location services are off, the only thing on is the cellular data. I even adjusted the brightness to 60%.
    Another issue is that My 3G connection keeps flapping, goes & comes in a wierd way where it falls back to Edge.
    Am I to consider this part of the issues i can see so many people facing & therefore consider as ios bug & wait for the update or should I take it over to a service center to check the phone for me which means waste of time to get it done.
    Kindly advise from your experience

    It's almost always a software issue. Actual hardware problems are rare but can get very serious, if you recall the antenna issue last year.
    Reception problems just depend on how strong the signals are at your location. But if you're dropping to Edge even in strong areas, it wouldn't hurt to have an apple store look at it.

  • How can you tell if an unopened product is engraved?

    I got an Ipod Touch for Christmas and was wondering if there is a way to tell if it is engraved without opening it. I googled it and couldn't really find a conclusive answer. I am interested in upgrading from an 8gb to a 32gb and read that apple does not accept exchanges of products that are engraved. Any help would be great. Thanks!

    Buy the device only from an authorized dealer.

  • What generation is my ipod? how can you tell that?

    I am not sure which generation is my ipod, it says version 4.1.2 and there is no upgrade available. Does it mean that this is a second generation ipod and not the third? I would love to upgrade it to download games for my daughter but it is not possible with the current versionb 4.2.1.

    Yes, that probably means that you have a 2nd gen iPod Touch since iOS 4.2.1 is the highest level a 2nd gen can run.. The iPod Touch 3rd gen can go to iOS 5.1.1.

  • How can I tell that AutoQOS config is adequate on a video conference switch

    I have a Tandberg video conference bridge and gateway connected to a 3750 switch. The audio is marked EF and the video CS3. I configured AutoQos on the switch and trust DSCP on the ports. When we reach a large video conference of 25 or more attendies, we begin to have problems. The Tandberg starts to ratchet some of the video streams down, some to below 180kps, and the conference quality begins to suffer.
    The only change to the default AutoQOS config I've made is changing the "mls qos trust dscp" on the uplinks, adding a QOS policy on the Tandberg ports to mark the video with CS3 and trust the audio DSCP (Tandberg had a bug that didn't mark the video packets) and adding
    queue-set 2
    priority-queue out
    to the uplinks.
    Will the default AutoQOS queue/buffer/SRR share and shape commands be adequate for 25 to 30 simultaneous video streams? We allow about 500k per stream.
    I read through the 3750 QOS guide, but am a bit confused with the explanations of the queuing and SRR workings. I know that CS3 is mapped to COS-3, but don't know which queue it goes in and whether or not it gets shaped/disgarded when too much video is present.
    Once I am sure that the 3750 QOS is working OK, and not causing problems with our large conference calls, then I'll expand my troubleshooting to the rest of the network.
    I've attached a text file with the 3750 config, and 'show mls qos int statistics' that show the packets are being marked.

    I mistyped in my first post. I do indeed mark the video as AF41 (Cos4). It is the call control that I mark CS3 with the policy map to get around the old Tandberg bug that doesn't mark the call control.
    So do you think the queue 3, where Cos4 goes to, is big enough to handle 30 video streams of 480k? If my calculation is correct that would be 14.4mbps of video on a 100mbps port.
    With this config.....
    srr-queue bandwidth share 10 10 60 20
    srr-queue bandwidth shape 10 0 0 0
    ...is it telling me that queues 1 & 2 get 10% bw, queue 3 gets 60% and queue 4 gets 20% bw and is shared? If that is correct than 60% is more than enough for 14.4mbps of video.
    What happens if too much video overruns the queue?

Maybe you are looking for