GPO Deploy Reader 9.3 and remove earlier version fails

Hi
I am deploying Reader 9.3 with a mst from the Customization Wizard using a GPO. Basically this works perfect with the following exception:
- I can not select to remove older versions in the Customization Wizard, its grayed out
How do I manage to correctly remove the older version?
The 8.x was installed by a GPO as well. Of course I can set to remove the 8.x version and - if possible - on the same boot install the new 9.3 version. Does that work? What's the 'Best practice' to update all clients from 8 to 9?
Thanks
Franz

Hi
I am trying to deploy 9.3 with GPO as well, I also cannot control the checkboxs' to uninstall older versions of acrobat and reader but I have found that it will uninstall the apps without these set.  By default remove older version of acrobat is checked and reader is not, but i have still found it to remove both...

Similar Messages

  • Can I go to an Apple store and have IOS 8 uninstalled and an earlier version installed?  IOS 8 has destroyed the battery life on my 4S

    Can I go to an Apple store and have IOS 8 uninstalled and an earlier version installed?  IOS 8 has destroyed the battery life on my 4S

    No; they will not downgrade that device, and it’s highly unlikely that they have the same iPhone model running an older iOS version.
    (115097)

  • How can I access and download earlier versions of Adobe Reader to put on my older model iPod Touch?

    We have model PC086LL iPod Touched from roughly 2008 for our school that are rarely used anymore because we've updated to iPads.  But, I want to be able to use some of the iPod Touches to store files to access remotely in emergencies.  Unfortunately I cannot access earlier versions of the Adobe Reader app that are compatible with this version iPod.  How do I get access to those earlier versions?

    SGMS Knight,
    Based on the model number that you provided, your device is an iPod Touch 2nd generation.
    According to the following Wikipedia page, the highest supported operating system for the iPod Touch 2nd generation is iOS 4.2.1.
    http://en.wikipedia.org/wiki/List_of_iOS_devices#iPod_Touch
    Adobe Reader for iOS version 11.0.1 is compatible with iOS 5.  However, the App Store does not have the earlier version of Adobe Reader that is compatible with iOS 4.
    As a user, you can download and install Adobe Reader for iOS only from the App Store.
    You may be able to find other free PDF viewers that are compatible with iOS 4 in the App Store.
    Good luck.

  • I have a file that was created in FH 11 and I am using same version.Originator opens file and everything is fine and also earlier version opens it fine.when I open it the links shift 1/8" up and left.Has anybody had this happen to them

    I have a file that was created in FH 11 and I am using same version.Originator opens this file and everything is fine and also an earlier version opens it fine.When I open it it shifts the links 1/8" up and to the left.Has anybody ever had this happen to them?

    What file format(s) are the "links"?
    If raster images, do they contain clipping paths or transparency?
    What is your platform and OS?
    Were the FH documents created on the same platform (Mac or PC) as the one you are currently using?
    Were the linked files created on the same platform (Mac or PC) as the one you are currently using?
    Can you reproduce the problem with a newly created document and the same linked images?
    There was once an issue with transparent 1-bit TIFF images shifting, but I believe that was in a previous version of FH.

  • Set-acl and remove-ntfs both fail from PowerShell yet i can do it from the GUI

    I have put together a script that searches all of our folders then searches the folders for groups that should have access and do not and groups that should not have access and do.
    Finding only the folders that need NTFS permissions changed works great.  Adding the groups that need added works great but removing groups is not working.  Below is a section of my script with the section not working underlined.  You can
    see i have tried 2 approaches.  
    If i use the Remove-NTFSAccess command (which i really prefer) I get no errors and you would think all worked until you check.
    If i use set-acl about half give me a error  "Set-Acl : The process does not possess the 'SeSecurityPrivilege' privilege which is required for this operation" but it does not remove the Domain admins for any of the
    folders including the ones that give no error.
    I have privileges to do it.  I can go to a folder and remove the group from the NTFS permissions in the GUI with no issue. 
    Thanks!
    "Add Nseries Admins"
    $workingdir = (Get-Content "$env:TEMP\Add nseries admins.txt")
    $mynum=[int]$workingdir.Count
    foreach ($path in $workingdir) {
    $mynum
    $mynum = $mynum - 1
    $path
    Add-NTFSAccess -Path "$path" -Account "SCHOOLS\Nseries Admins" -AccessRights FullControl -AccessType Allow -AppliesTo ThisFolderSubfoldersAndFiles
    "Romeve Domain admins"
    $workingdir = (Get-Content "$env:TEMP\Remove domain admins.txt")
    $mynum=[int]$workingdir.Count
    foreach ($path in $workingdir) {
    $mynum
    $mynum = $mynum - 1
    $path
    # Add-NTFSAccess -Path "$path" -Account "SCHOOLS\Nseries Admins" -AccessRights FullControl -AccessType Allow -AppliesTo ThisFolderSubfoldersAndFiles
    # Remove-NTFSAccess -Path "$path" -Account "SCHOOLS\Domain Admins" -AccessRights Read -AccessType Allow -AppliesTo ThisFolderOnly
    $acl=get-acl "$path"
    $accessrule = New-Object system.security.AccessControl.FileSystemAccessRule("SCHOOLS\Domain Admins","Read",,,"Allow")
    $acl.RemoveAccessRuleAll($accessrule)
    Set-Acl -Path "$path" -AclObject $acl

    I just ran that a couple of times.  No errors as long as the subfolders are not protected in a way the blocks the admin.  I will try and find a folder that causes this exact scenario.
    Is it possible that this was fixed in V4?
    ¯\_(ツ)_/¯
    The SACL being overwritten isn't fixed. There's a Connect bug
    here. Set-Acl basically does this before trying to call SetAccessControl():
    $path = "$env:Temp\temp_item_name"
    $acl = Get-Acl $path
    # Get the binary form:
    $binaryForm = $acl.GetSecurityDescriptorBinaryForm()
    # Create a new SD object:
    $newacl = New-Object $acl.GetType()
    # Take the old binary form and use it for the new SD object,
    # but tell it it's for all sections, including the SACL:
    $newacl.SetSecurityDescriptorBinaryForm($binaryForm, "All")
    Next, it tries to call SetAccessControl() inside of a try{} block. If it detects a PrivilegeNotHeld exception, it will try to redo the section above without setting the Owner, Group, and SACL (if certain conditions are met). I can't get the second call to
    error the way Lishron did, but that doesn't mean there's no scenario where that can't happen.
    By the way, here's an example of trying to call SetAccessControl() with the modified SD object from above:
    $FileSystemItem = Get-Item $path
    $FileSystemItem.SetAccessControl($newacl) # <-- Fails if you're not an admin; overwrites SACL if you are
    $FileSystemItem.SetAccessControl($acl) # <-- Succeeds (unless you're trying to change the owner)

  • Reading a string and remove chars

    Hi,
    I am new the java and I am having a problem with converting a string to an int. I have a data comming in to gbyte_in which is "1;1;1". I am then converting it to a string a spliting it up into three vars to hold each value. I am then converting the string to a int so I can use it. The problem comes when I try to convert the last value as I get a
    numberformatexception, I think there must be some chars such as Enter or line feed at the end causing the problem. I have tried using the gstr_string.replace('\n',' ') but still having the problem.
    I have put a basic example of what I am doing below, If someone could help a beginner with understanding what I am doing wrong I would be very greatful
    Thanks
    Joolz
    ** Start code**
    byte[] gbyte_in;
    private void CheckData_In()
    int i;
    /* make STRING of BYTE */
    String lstr_temp = new String(gbyte_in);
    /* take STRING a make an INT*/
    i = Integer.parseInt(lstr_temp);
    ** End code **

    Hi,
    I have,
    this is what comes in 1;2;3
    I can convert 1 and 2 to an int but 3 throws the error, I am just doing a substring looking for the ";". So I think there must be some special chars at the end, but I cannot find a way of removing them before I convert it to an int.
    Thanks
    Joolz

  • Want to download english version and remove dutch version without losing data

    hi, have been instructed to remove the dutch version without removing the personal data, there is however no option for doing that, there is just the uninstall option in windows 7.

    hello geraa48, you can just download and install the english version from https://www.mozilla.org/firefox/all/ & install it on top of your current installation. this will keep all your customizations in your firefox profile...

  • Installing iTunes 10.3 and removing older version of Bonjour error

    I'm trying to install iTunes version 10.3 on my laptop.  During the installation an error message occurs "The older version of Bonjour cannot be removed. Contact your technical support group."  At the end of the installation process another message occurs 'The installer process was interrupted before the requested process for iTunes could be completed.  Your system has not been modified."
    I've tried renaming and deleting the Bonjour files with no success after several weeks of trying to fix..  Finally did a system restore and gave up, but my sister bought a new Shuffle on the weekend but in needs at least  iTunes 10.0.  I have iTunes 8.0.2.20 on my laptop.  Does anyone have any suggestions on what I can do to install the current version of ITunes on my PC or removing Bonjour?

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another install. Does it go through this time?

  • Tried to install maverick killed my hard drive. tried to replace hard drive and reinstall earlier version. but when i reboot the computer i just get a file folder with a question mark.  what can i do to get ky mac up and running?

    not sure of my opions. any ideas

    Restart holding down cmd-opt-r. It will boot to Internet Recovery. From there you can reinstall the original shipping OS or restore from Time Machine.
    http://support.apple.com/kb/ht4718

  • Create and remove on read-only beans

    while playing around with read-only beans i found that calling create()
    ond read-only homes and remove on read only entities does work, which
    was new to me. 'work' just means changing the database ;)
    ist there any danger in using this (maybe just an internal feature which
    does not work in 7.0, ...) ?
    axel.

    You should definitely check out 7.0 and its support for optimistic caching. It
    does what you want.
    -- Rob
    Axel Großmann wrote:
    thanks for the quick response.
    Rob Woollen wrote:
    ist there any danger in using this (maybe just an internal feature which
    does not work in 7.0, ...) ?
    No, it'll work fine. Until 7.0, read-only beans always ran in an
    unspecified transaction. In 7.0, this has been relaxed to allow you to use
    all the tx attributes with read-only beans.sounds great; seems that we should give 7.0 beta a try.
    what comes to my mind is: if read-only beans would also write changes to
    their CMP fields to the database (and send invalidation message) we
    would have some kind of write-through-caching bean, wouldnt we ?
    this is actually what I'm searching for, since we have to port an
    application to weblogic with was designed using one bean per business
    object - mapping this to the two-bean read-mostly pattern without
    changing the present logic seems impossible without many changes and
    loosing the ability to run on other application servers too.
    so why not a 'read-mostly-bean' instead of manually implementing it ?
    axel.--
    AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
    by Michael Girdley, Rob Woollen, and Sandra Emerson
    http://learnWebLogic.com
    [att1.html]

  • Unable to use Adobe Acrobat Reader and/or install version 8.1.2.

    I was unable to use my adobe reader so I tried to download 8.1.2 and during installation I get the 1417 error message saying unable to remove version 8.1.2. Will not let me finish the installation process?

    I have Windows XP Pro Service Pack 2 and IE 7, and I cannot install Adobe Reader 8.1.2. I got all these error messages: Windows Installer, The feature you are trying to use is on a CD-ROM or other removable disk that is not available. Insert the Norton Antivirus 2005 disk and click OK - (Didn't work.) Error 1714 The older version of Adobe Reader 8.1.2 cannot be removed. Contact your technical support group. Adobe Reader 8.1.2 Setup failed.
    When I tried to install msicuu2.exe, Error Message: Windows Script Host Active X component can't create object: 'WScript.Shell' Source Microsoft VB Script Runtime Error.
    I edited the registry and remove all versions of Adobe Reader, shut down all software, and still was unable to load Adobe Reader 8.1.2. I contacted my "technical support group" which is HP in India, and they were worthless on this issue. Any help would sure be appreciated as I cannot open any jpg documents.

  • I need to download 10.7.0 (10.7.2 max), where does Apple keep earlier versions of OS?

    i foolishly updated my MacPro and laptop to 10.7.3, but then discovered that it messed up some of my Pro apps like Nikon Capture NX2, which is only supposed to work on 10.7.2
    i have been trying to find anyway to go back, and was informed that i had to erase and start from the OS that came with my mac
    so i went back to 10.6.4, and have now updated to 10.6.8
    then went to the App Store in order to update to 10.7.0, which i had already bought
    but the App Store only offers me 10.7.3, and no earlier versions!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    where can i get 10.7.0?
    (i have the combo update which is available on the downloads of Apple website, but this is obviously no good without the base 10.7 already installed)
    this appears to be a problem that Apple has created by not selling OS on discs anymore
    HELP!!!!

    aaaashy wrote:
    @shldr2thewheel
    since i am at present on 10.6.8 surely i can update to 10.7.0 and then to 10.7.2?
    i had already worked out that i could not go backwards from 10.7.3 when i went into an Apple store yesterday, so i am trying to go forward, but it seems quite odd that i can not upgrade to 10.7.2 ONLY since some apps do not work with 10.7.3
    and i DID HAVE a backup iof 10.7.2 when i backed up, but once i was on that there did not seem to be a problem, so i updated my backup to 10.7.3 - are you saying that the backup should always be an OS step behind the master? (in which case what about all the new work that one does in between backups, there would be no backups of that at all!)
    I have always made a habit of keeping system updates on external drives, just for my own OCD ways. I downloaded Lion 10.7 and have also kept the updates since. I also have backups of the last few system updates, but do get rid of them after I realise the newer updated backups are all I require.
    So where did I learn about backups and saving updates? By reading Apple Media and coming to the forum here and elsewhere and reading up on it. The serious Computer user should really make a concerted effort to protect their data and system set ups in the most secure way they can. An $80 1TB backup drive can be the difference between smooth transitions and reinstalls and problems as you are experiencing now.
    Just some food for thought for the future. There is more often than not no second chances for system and drive crashes. Protect your data at all costs.
    Good Luck
    Pete

  • My early version of Lightroom does not run in Windows 8. [was:lightroom]

    I have a new laptop which runs windows 8 and my early version of lightroom does n't run

    Hi,
    Thanks for replying and sorry I’m not too much into this.  It doesn’t say which version but I assume its the first as I bought it in 2007 saying its made in Ireland.  Number on the disc is 90062864 1/07.  I hope that might help, if this isn’t Windows 8 compatible can it get an upgrade?
    Regards
    Jim
    Sent from Windows Mail

  • Deploy reader updates and install/uninstall reader via GPO ???

    Hello,
    Got a couple of questions on install/uninstall via GPO and how to deploy reader updates.
    1) How to uninstall older version of readers via GPO?
    2) Is there an ADM file available for installing the latest reader via GPO?
    3) For reader patch updates, can it be deployed via GPO?  If yes, any docs. I can refer to?  If no, what is the minimum priviledge I must grant to domain users to allow them to run the update function w/in the reader (or assign to a specific file path)?
    Thanks in advance!
    Luke

    You may find most of the information you need in http://www.adobe.com/devnet/acrobat/pdfs/deploying_reader9.pdf
    Let us know if anything is missing.

  • Need to Add and Remove Columns of ADF Read Only table from Backing bean

    I have a scenario where I am trying to Populate TransientVO which is shown has a ADF Read Only Table in page.
    I have couple of Check Boxes Based on their selection I am trying to render and hide certain Columns.
    But the Issue which I am facing is only the Column Header seems to change where as the Rows and Values doesnt..
    even If I apply the expression language rendering condition on the outputText inside those columns.. ..
    So I am thinking to add and remove VO Attribute columns to the table from backing bean.
    Need some sample code snippet or a better design to achieve this. Its kind of urgent too...having an aggressive deadline :(
    Please chip in People..
    Thanks in Advance .
    TK

    Table Code..
    <af:table value="#{bindings.InventoryGridTrans.collectionModel}"
                                    var="row"
                                    rows="#{bindings.InventoryGridTrans.rangeSize}"
                                    emptyText="#{bindings.InventoryGridTrans.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.InventoryGridTrans.rangeSize}"
                                    rowBandingInterval="0" id="t4"
                                    partialTriggers="::sbcSales ::sbcUsage ::cb1">
                            <af:column sortProperty="Period" sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Period.label}"
                                       id="c38">
                              <af:outputText value="#{row.Period}" id="ot33"/>
                            </af:column>
                            <af:column sortProperty="Past12SalesCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12SalesCount.label}"
                                       id="c29"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                              <af:outputText value="#{row.Past12SalesCount}"
                                             id="ot40"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12SalesCount.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Past12UsageCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12UsageCount.label}"
                                       id="c40"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                       visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                              <af:outputText value="#{row.Past12UsageCount}"
                                             id="ot47"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12UsageCount.format}"/>
                              </af:outputText>
                            </af:column>
                            </af:column>
                    </af:table>

Maybe you are looking for

  • Will the Stitchway UltraPower 1900 mAh Backup Battery Charger work with the Apple iPhone 4S?

    Will the Stitchway UltraPower 1900 mAh Backup Battery Charger work with the Apple iPhone 4S?

  • Sending IDoc from R/3 to XI -ongoing

    Hi, With reference to my previous errors while sending IDoc to XI from R/3 system. I have resolved errors with help of Seshagiri and Kummari advise and help. But now I am getting new kind of error, while sending IDoc from R/3 its getting passed from

  • Audio on Lion 10.7.1

    hi, i've just upgraded Lion to 10.7.1 on MacBook Pro 2011 and now the tray icon of audio is gray... it doesn't do the feedback ("pop")  and i can't change it! but on itunes i can listem music.... any solution?

  • How can Nokia Require a user to sign to install.

    I want to install Fexplorer (just one example) and damn Nokia/Symbian requires me to sign the installation file in order to install it. The problem is u cannot sign anything anymore because symbiansigned.com doesn't accept new users. Will someone for

  • Query return/wddx with white space

    i have a query return i am looking at which i will send it to another program but for some reason this is coming with some white space. i have following questions. if i make changes on the admin console for white space management do i need to reboot.