Wlst / wls 8.1 sp5  /  add-remove defaultAuditor

I was wondering if there is some example code for removing an auditor?
I've seen an exmaple of adding one, but wasn't sure if there was anything special to remove one.
Thanks.

Did you try the delete command? Use it exactly as create, that should work.
HTH,
-satya
BEA Blog:
http://dev2dev.bea.com/blog/sghattu/
Get Involved in CodeShare:
https://wls-console-extensions.projects.dev2dev.bea.com/
https://wlnav.projects.dev2dev.bea.com/
https://eclipse-wlst.projects.dev2dev.bea.com/
https://wlst.projects.dev2dev.bea.com/

Similar Messages

  • Using native IIS 6.0 Gzip Compression in front of WLS 8.1 SP5

    (IIS 6.0 => ISAPI proxy(/*) => WLS 8.1 SP5 )
    Instead of usign a servlet filter and Gzip compression inside the, I would like to test the IIS 6.0 Gzip compression. I want to do this because the IIS server farm is severley underutilized in CPU and seems like the best use of that resource.
    It is easy to config this in IIS 6.0. However, I can get IIS served static pages back compressed, but requests proxied to WLS return uncompressed, even though I have configured DLL calls to be zipped inide IIS.
    The question is: has anyone done this and if so, what is the config.

    I am trying to solve the same issue. This is what I've discovered so far. I have been able to get page compression to work with IIS 4.0 and 5.0 using the iisproxy plugin. The trick was to add both "jsp" and "wlforward" extensions to the script file list to compress dynamic files.
    IIS 6.0 changed the compression module from an ISAPI plugin to internal code. The configurations look the same, but I am not able to get JSPs to be compressed. I can compress static files, I can compress ASP files so I know I have compression working and I know that I have dynamic file compression working.
    This is a great article on configuring compression in IIS, it should get you started in the right direction. I know it's from a .Net site, but the fundamentals are the same and it's very well written.
    http://dotnetjunkies.com/Article/16267D49-4C6E-4063-AB12-853761D31E66.dcik
    I am now trying to figure out how to get IIS 6.0 dynamic page compression to work with the iisproxy plugin. Any ideas?

  • Tried to install newest itunes, crashed during install, and now crashes my computer every time i try to uninstall.  Itunes doesn't show up in the Add/remove prog list at all.  tried to roll back over a month, still crashing.

    So I tried to update to the newest Itunes.  It locked up my computer part way thru the install.  Black screen, computer turned itself off.  Now anytime i try to do anything with Itunes it shuts my computer down.  I can start up fine in safe mode but when i try to uninstall from there, Itunes doesn't exist.  the other apple programs do, but no itunes.  when i try to uninstall the other programs in safe mode it tells me it can't because the windows installer isn't loaded.  I have system restored to over a month ago and itunes still doesn't show up in add/remove programs.  however, i can open itunes.  it just tells me a file didn't get installed and to uninstall and reinstall.  So, how do i remove a progam that doesn't think it exists and crashes my computer when i try to do anything related to it???  I'm out of ideas.  running windows vista.

    I think my problem is fixed now.
    For the fun of it, I reinstalled iTunes 9.2.1 today (using the exact same installer as I did yesterday), but this time I didn't uninstall iTunes first. As expected, iTunes recognized my iPhone (as I expected it to, until my next reboot).
    A few minutes later, Software Update showed up and among the updates is "iPhone SDK Compatibility Update". The description indicates that installing this should fix an issue where iPhones and iPod touches aren't recognized by iTunes. Isn't that interesting?
    I installed that update and most of the others waiting for me (including Java, Safari 5.0.1, and a few others - not 10.6.4 though, due to the issues with nVidia graphics cards). After the reboot, I started iTunes, and it saw my iPhone!
    So, if you're having this same problem, I'd recommend tracking down this update and see if that does the trick for you. Hopefully it will.

  • I have installed Adobe Premiere Pro cc on my laptop, but I cant find a way to start the program. No Icon, and it is not showing up in the start meny. It is showing up in add/remove programs, but nt anywhere else.

    I have installed Adobe Premiere Pro cc on my laptop, but I cant find a way to start the program. No Icon, and it is not showing up in the start meny. It is showing up in add/remove programs, but nt anywhere else.

    If you are using a Mac, simply hit Command-Spacebar to bring up Spotlight Search.  Begin typing the name of the application and when you see what you are looking for, press enter.  You should get a hit by the second or third letter you type.  Great way to launch apps on computers that you are not familiar with.
    Windows 7 and 8 should have something similar.  I think you simply press the Windows key and begin typing.  Press enter when you see a match.
    Both Mac and Windows search tools can be customized to search for applications, files, emails and so forth.  For Windows, look for Taskbar and Start Menu Properties.  For Mac, go to Preferences Spotlight.  Turn off items you know you won't need to speed up searches.
    Make Windows 7 Start Menu Search Find Your Applications Faster

  • Add/Remove Programs - export to text file?

    Hello,
    I am wondering if it is possible to export a list of everything in add/remove programs to a text file for inventory purposes.
    I have not found any easy method to do this short of copying reg files or installer 3rd party software.  Since the idea is to save time neither of those are viable solutions.
    Does anyone have any ideas?
    -Justin

    You could try this vbs script that lists installed programs and add info to a text file.
    Michael Petersen
    Option Explicit  
    Dim sTitle  
    sTitle = "InstalledPrograms.vbs by Bill James" 
    Dim StrComputer  
    strComputer = InputBox("Enter I.P. or name of computer to check for " & _  
                           "installed software (leave blank to check " & _  
                           "local system)." & vbcrlf & vbcrlf & "Remote " & _  
                           "checking only from NT type OS to NT type OS " & _  
                           "with same Admin level UID & PW", sTitle)  
    If IsEmpty(strComputer) Then WScript.Quit  
    strComputer = Trim(strComputer)  
    If strComputer = "" Then strComputer = "." 
    'Wscript.Echo GetAddRemove(strComputer)  
    Dim sCompName : sCompName = GetProbedID(StrComputer)  
    Dim sFileName  
    sFileName = sCompName & "_" & GetDTFileName() & "_Software.txt" 
    Dim s : s = GetAddRemove(strComputer)  
    If WriteFile(s, sFileName) Then 
      'optional prompt for display  
      If MsgBox("Finished processing.  Results saved to " & sFileName & _  
                vbcrlf & vbcrlf & "Do you want to view the results now?", _  
                4 + 32, sTitle) = 6 Then 
        WScript.CreateObject("WScript.Shell").Run sFileName, 9  
      End If 
    End If 
    Function GetAddRemove(sComp)  
      'Function credit to Torgeir Bakken  
      Dim cnt, oReg, sBaseKey, iRC, aSubKeys  
      Const HKLM = &H80000002 'HKEY_LOCAL_MACHINE  
      Set oReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _  
                  sComp & "/root/default:StdRegProv")  
      sBaseKey = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" 
      iRC = oReg.EnumKey(HKLM, sBaseKey, aSubKeys)  
      Dim sKey, sValue, sTmp, sVersion, sDateValue, sYr, sMth, sDay  
      For Each sKey In aSubKeys  
        iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, "DisplayName", sValue)  
        If iRC <> 0 Then 
          oReg.GetStringValue HKLM, sBaseKey & sKey, "QuietDisplayName", sValue  
        End If 
        If sValue <> "" Then 
          iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, _  
                                    "DisplayVersion", sVersion)  
          If sVersion <> "" Then 
            sValue = sValue & vbTab & "Ver: " & sVersion  
          Else 
            sValue = sValue & vbTab   
          End If 
          iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, _  
                                    "InstallDate", sDateValue)  
          If sDateValue <> "" Then 
            sYr =  Left(sDateValue, 4)  
            sMth = Mid(sDateValue, 5, 2)  
            sDay = Right(sDateValue, 2)  
            'some Registry entries have improper date format  
            On Error Resume Next   
            sDateValue = DateSerial(sYr, sMth, sDay)  
            On Error GoTo 0  
            If sdateValue <> "" Then 
              sValue = sValue & vbTab & "Installed: " & sDateValue  
            End If 
          End If 
          sTmp = sTmp & sValue & vbcrlf  
        cnt = cnt + 1  
        End If 
      Next 
      sTmp = BubbleSort(sTmp)  
      GetAddRemove = "INSTALLED SOFTWARE (" & cnt & ") - " & sCompName & _  
                     " - " & Now() & vbcrlf & vbcrlf & sTmp   
    End Function 
    Function BubbleSort(sTmp)  
      'cheapo bubble sort  
      Dim aTmp, i, j, temp  
      aTmp = Split(sTmp, vbcrlf)    
      For i = UBound(aTmp) - 1 To 0 Step -1  
        For j = 0 to i - 1  
          If LCase(aTmp(j)) > LCase(aTmp(j+1)) Then 
            temp = aTmp(j + 1)  
            aTmp(j + 1) = aTmp(j)  
            aTmp(j) = temp  
          End if  
        Next 
      Next 
      BubbleSort = Join(aTmp, vbcrlf)  
    End Function 
    Function GetProbedID(sComp)  
      Dim objWMIService, colItems, objItem  
      Set objWMIService = GetObject("winmgmts:\\" & sComp & "\root\cimv2")  
      Set colItems = objWMIService.ExecQuery("Select SystemName from " & _  
                                             "Win32_NetworkAdapter",,48)  
      For Each objItem in colItems  
        GetProbedID = objItem.SystemName  
      Next 
    End Function 
    Function GetDTFileName()  
      dim sNow, sMth, sDay, sYr, sHr, sMin, sSec  
      sNow = Now  
      sMth = Right("0" & Month(sNow), 2)  
      sDay = Right("0" & Day(sNow), 2)  
      sYr = Right("00" & Year(sNow), 4)  
      sHr = Right("0" & Hour(sNow), 2)  
      sMin = Right("0" & Minute(sNow), 2)  
      sSec = Right("0" & Second(sNow), 2)  
      GetDTFileName = sMth & sDay & sYr & "_" & sHr & sMin & sSec  
    End Function 
    Function WriteFile(sData, sFileName)  
      Dim fso, OutFile, bWrite  
      bWrite = True 
      Set fso = CreateObject("Scripting.FileSystemObject")  
      On Error Resume Next 
      Set OutFile = fso.OpenTextFile(sFileName, 2, True)  
      'Possibly need a prompt to close the file and one recursion attempt.  
      If Err = 70 Then 
        Wscript.Echo "Could not write to file " & sFileName & ", results " & _  
                     "not saved." & vbcrlf & vbcrlf & "This is probably " & _  
                     "because the file is already open." 
        bWrite = False 
      ElseIf Err Then 
        WScript.Echo err & vbcrlf & err.description  
        bWrite = False 
      End If 
      On Error GoTo 0  
      If bWrite Then 
        OutFile.WriteLine(sData)  
        OutFile.Close  
      End If 
      Set fso = Nothing 
      Set OutFile = Nothing 
      WriteFile = bWrite  
    End Function 
    Deploy deploy deploy

  • Unable to add/remove users in Mountain Lion Server (Options are greyed out)

    For some reason, im unable to add/remove users in Mountain Lion server. The + and - are greyed out. It seems like something is wrong with the permissons because it looks like it cant write the the Ldav3 file (although that may be speculation). Does anyone have any advice for me? I URGENTLY need to add users.
    Maybe theres a way to restore default permssions for the boot drive (if that in fact is the issue). Hopefully there is a way that I can fix this while leaving all users, groups, their permissions and shares intact.

    Anything interesting and relevent in the server logs?
    Anything interesting in the server alerts?
    Since it's far and away the most common cause of problems with OS X Server and with distributed authentication (Open Directory is entirely based on network encryption and digital certificates and on responses from your local DNS server(s)), verify your local DNS configuration is working and requires no changes with the following Terminal.app (Applications > Utilities) harmless, diagnostic command:
    sudo changeip -checkhostname
    sudo requires an administrative password.  You might get a one-time warning about the sudo, and that can safely be ignored.  The command will display some details, and indicate whether the local configuration appears valid and no changes are required, or further diagnostics for (most) common errors that can arise.

  • Which adobe to use, I was told to down load the newer version and the add/remove folder says I have 10.1.82.76, is tehis the one I need?

    The latest update from Firefox said I HAD to update Adobe or there would be a security problem. I replied to the answer about the edit bar, but have not received a reply:
    This is what I wrote:
    Thank you for helping me. I had no idea how to do that. Now if you can tell me about the adobe issue I would so appreciate it. I do use Firefox and I went to add/remove to see which version and could not find the Adobe 10.1.82.76 it said I had??? Then I just went back and it is there. I was told I HAD to update the Adobe because of a security issue, but when I went to add it, it said warning the program I was about to add might be dangerous????? So I have it on the down load thing, I have not told it to run, but it shows up in my add/remove folder and I am SO confused??? Do I need to run it? I went to the adobe site and found it when I could not find the "edit" button. I am not sure if I have the right version. It said certain versions would not run with Firefox and I do not want to mess up my computer.
    Please advise
    Sheila

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r32
    # Java Plug-in 1.6.0_07 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • I updated Firefox and now it will not open at all. The hourglass shows that it's working but then nothing. I went to add/remove and removed mozilla and reinstalled it and still the same thing. It worked fine before I updated.

    I updated Firefox and now it will not open at all. The hourglass shows that it's working but then nothing. I went to add/remove and removed mozilla and reinstalled it and still the same thing. It worked fine before I updated. Now I can't even remove the program at all. Why is this happening?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • How do I remove an advertising program by the name of SmartSuggestor? I cant find it in the ad ons and I cant find it in my add remove programs on my pc.

    I keep getting these stupid ads that are apparently from smartsuggestor but I cant find the program anywhere on my pc then I contacted the company and they tell me that it is a firefox issue yet i cant find it in the firefox settings either. I went into the Smart Suggestor site and the name of the extension/program came up as "No extension Found". I cant find anything that even resembles anything to do with the program at all not in the add remove program through control panel or through the extension plug ins area in firefox and was wondering if anyone else has had the same problem.
    I did not download this crap then all of a sudden I am plagued with pop up adds and other sorts of advertising all stemming from this bloody Smart Suggestor. I have got myself a good pc cleaner along with a few Malware removers and also upgraded my security programming but nothing will either find nor rid my pc of this problem. I have downloaded and reinstalled a fresh copy of Firefox and I am still having the same issue, has anyone else gone through this and how can I get rid of this problem?

    Do a malware check with several malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Add/remove view links at runtime !?

    Hi,
    how can i add/remove a view link to an already published RowSet and make the RowSet adapt to the new condition ??? (without loosing it's own linked Details)
    The scenario: I have lot's of details which are linked to the same master. I remove the details from the session (sessionInfo.removeRowSet) when I don't need them to keep the active number of views in the session as small as possible ! When removing the Details from the Session I also have to remove their links to the master (to avoid exceptions). Further I want to establish the links again when the detail is added to the session again !?
    I add links before publishing:
    ViewLinkInfo view_12aLink = new ViewLinkInfo(master, "package1.LinkDef");
    view_12a.addMasterLink(view_12aLink);
    I can remove links after publishing with:
    view_12aLink.removeViewLink(sessionInfo1.getApplicationModule());
    but how to establish the link again ?:
    ApplicationModule appMod = ....;
    ViewObject vo = appMod.findViewObject(view_12a.getQueryInfo().getName());
    view_12aLink.createViewLink(appMod,vo);
    doesn't work !
    if (view_12a.isOpen())
    view_12a.close();
    view_12a.addMasterLink(view_12aLink);
    works !, but all the links where view_12a is master are broken !!!!
    So what to Do ????
    Thanks for every answer !
    null

    Your results are as expected per the imlementation. Basically you've established (two) ViewLinks between two sets of two instances of VOs.
    Now you try and get an accessor to return a set of details. You need to establish a link between that detail set and it's details to use the accessor on the second detail to get the desired results. Basically you've to establish the chaining between appropriate instances of VOs and not just the outer VOs or VO members of your AM.

  • Windows App Certification Kit - Test Fails for Validate Desktop App at "Write appropriate Add/Remove Program values"

    Hi,
    I am trying to validate a .Net Framework 4 WinForms application for use in the Microsoft Partner Network portal.
    I am using Windows App Certification Kit 3.4 for Windows 8.1 , and the Validate Desktop App option.
    To build the package I am using InstallShield 2012 SPR Limited Edition (for Visual Studio), and the validation fails
    only with the following error (please also see the attached image):
    Clean reversible install test: Failed to Write appropriate Add/Remove Program values
    Error Found: The registry population test detected the following error: app didn't create the required registry entries.
    A non-optional value 'DisplayName' is missing or invalid (same for 'Publisher', 'ProductVersion')
    Please note that I have filled in all the publisher/product details in the InstallShield project, on the General Information page.
    Also I have tried to use the Microsoft Visual Studio Installer Project for VS2013, and the validation failed with the exact same error.
    (https://visualstudiogallery.msdn.microsoft.com/9abe329c-9bba-44a1-be59-0fbf6151054d)
    Any help would be very appreciated.
    Thank you.

    You may need to add the necessary info to the app’s Windows Installer package so it can configure Add/Remove Programs in Control Panel correctly. Setting these properties automatically writes the corresponding values into the registry. From the picture,
    you are missing some necessary information about your desktop app.
    Also You need the correct admin permissions to write to the registry.
    Please refer to this thread:
    http://stackoverflow.com/questions/21182856/windows-app-certification-kit-test-result-app-didnt-create-the-require-regist
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Windows XP, removed bonjour in add/remove program. Now have an error message - APAgent.exe - Unable to Locate Component

    Windows XP:  removed bonjour by accident in the add/remove program.  Now, everytime i log on, i get an error message that reads.
    APAgent.exe - Unable To Locate Component
      This application has failed to start because dnssd.dll was not found.  Re-installing the application may fix this problem.
    Tried reloading my Airport Extreme CD, but no luck.
    Googled this error & got nowhere.  How can i get fix this annoying error message?

    Which Bonjour were you using, daniel? The Bonjour Print Services type, or the one that comes bundled with iTunes?

  • Can no longer add / remove to bookmarks / reading list since ios 6 upgrade

    Hi all,
    I upgraded my ipod touch to ios 6 last night, and since the upgrade I can no longer add / remove bookmarks or add / remove items to the reading list in safari.
    Whenever I try I get the 'Bookmarks are being synced. Please edit the bookmarks once syncing has completed.' message.
    So far I've tried;
    A hard reset
    Turning off Safari in the icloud settings
    I still can't do anything with the bookmarks / reading list, I just don't get the 'Bookmarks are being synced' message
    Ensuring that push notifications are enabled for icloud
    I'm not sure what to try next.....
    When I disable Safari in the icloud settings, it asks me if I want to keep a copy of previously synched bookmarks on my ipod - So far I have as I don't want to lose them.
    I'm guessing the next step is to not keep a copy and hope ios wipes them - If I do this will the bookmarks still be available in icloud when I turn safari data back on?
    Cheers
    Macca

    I actually managed to fix it! But unfortunately I don't know what I was that I did that helped.
    Anyways, this is kind of what I did.
    1. I tried to reset form bakup via iTunes, no change.
    2. I tried to reset as a new iPhone, problem still there and reading list also as bookmarks!? (several hundred)
    3. Noticed that I could delete a bookmark, once in a while, the other times I got the 'Bookmarks are being synced. Please edit the bookmarks once syncing has completed.' message.
    4. Because I figured that it was a memory problem, I thought it made sense to delete as many as possible, witch I did.
    5. Noticed that it was more likely that I coould delete a bookmark if I restarted Safari.
    6. Notice that it was even more likely that I could delete a bookmark if I turned the Safari sync with iCould off (with option detete information on iPhone) and then back on again.
    7. When I was about half way through deleting the bookmark list I suddenly discovered that all but one of the items in my reading list was 'waiting' and one was downloading. I kind of was 'unstuck' now.
    8. I started to delete items in my reading list, but every other time I got the 'Bookmarks are being synced. Please edit the bookmarks once syncing has completed.' message.
    9. It took a while to delete all bookmarks and items in the reading list.
    Hope you guys could use the info here to fix your problems too!

  • Silent install of 10.1.0 (MUI) Reader and patches leaves teh previous Version in Add remove prog

    Hello,
    having major issues with a silent install to 3300 users.
    I Have a vb script that runs in SCCM to install reader 10.1.0 (MUI) and the increnetal patches for 10.1.1 and 10.1.2 both MUI.  I have created a transform to not use a desktop icon, turn on protect mode and supress the eula.  3 problems.
    1.  The script searches for old versions and completly install the mui version over all with the following command line:
    "AcroRead.msi TRANSFORMS=AcroRead.mst PATCH="AdbeRdrUpd1011_MUI.msp; AdbeRdrUpd1012_MUI.msp" ALLUSERS=1 LANG_ID=1033 PRODUCTLANGUAGE=1033 LEAVE_PDFOWNERSHIP=YES REMOVE_PREVIOUS=YES EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES /qn /norestart /LOG c:\progra~1\Adobe\AdobeReader10.1.2.log"
    Setup.ini file reads:
    [Startup]
    RequireOS=Windows 2000
    RequireMSI=3.0
    RequireIE=6.0.2600.0
    CmdLine=/sl"1033" /rs /sPB
    [Product]
    msi=AcroRead.msi
    CmdLine=TRANSFORMS="AcroRead.mst"
    Languages=1033
    1033=English (United States)
    [Windows 2000]
    PlatformID=2
    MajorVersion=5
    ServicePackMajor=4
    [MSI Updater]
    Path=http://ardownload.adobe.com/pub/adobe/reader/win/8.x/8.0/misc/WindowsInstaller-KB893803-v2 -x86.exe
    Problems on about 100 computers so far:
    1.  If the system had 10.1.1  and not the 10.1.1 MUI and 10.1.2 MUI stay in Add Remove Programs
    2. Systems that get the full uninstall and reinstall  even if adobe is closed and browser is closed and user can not read files from the web or email after the complete install to 10.1.2 mui.  Adobe works locally.
    3.  Some systems appear to upgrade fine. 
    HELP PLEASE!!!!

    With Administrative Installation Points I've always found it best to remove the old version first with a script using [msiexec.exe /x {APPLICATION_GUID} ] before installing the new AIP.  You should read the documentation about 10.x AIP though.
    http://helpx.adobe.com/acrobat/kb/update-patch-acrobat-reader-10.html

  • Error when opening the Add-Remove Descriptors dialog

    I've got the error message below when I am trying to open the Add-Remove Descriptors dialog. The problem appears suddenly from one day to another and I don't find the reason. It works in new projects, but does not work on my main project. Where should I find the reason?
    java.lang.NullPointerException
         at oracle.jdeveloper.java.provider.BaseFileProvider.getSourceClass(BaseFileProvider.java:966)
         at oracle.jdeveloper.java.JavaManager.getSourceClass(JavaManager.java:705)
         at oracle.toplink.addin.utils.MWJDevUtils.isOnProjectSourcePath(MWJDevUtils.java:341)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.buildListOfJavaClassNamesInJProject(MWDescriptorChooserMetaClassRepository.java:83)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.refreshOn(MWDescriptorChooserMetaClassRepository.java:63)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.<init>(MWDescriptorChooserMetaClassRepository.java:47)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction$1.<init>(AddRemoveTypeAction.java)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction.buildAvailableTypes(AddRemoveTypeAction.java:70)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction.execute(AddRemoveTypeAction.java:230)
         at oracle.toplink.tsceditor.ui.action.AbstractAction.executeImp(AbstractAction.java:129)
         at oracle.toplink.tsceditor.ui.action.AbstractAction.mav$executeImp(AbstractAction.java)
         at oracle.toplink.tsceditor.ui.action.AbstractAction$1.run(AbstractAction.java:112)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    I get the same error also, even when I create a new project. I found I can edit the files manually and use that as a work around, but it is incredible time consuming.

Maybe you are looking for

  • Editing expressions in non-development systems.

    Our first use of BRF+ met a large success among our business key users and  they are requesting now the maintenance of some decision tables. We therefore followed the guidelines of document "editing BRF+ component in non-development systems" and impl

  • Trans DP91 - where is it pulling the information from...tables etc.

    Hi guys, I need to find out where the information from transaction DP91 is coming from. What I am looking for is Unbilled Costs and Revenues figures before they become a sales Order in this transaction but I cannot find the tables that will give me t

  • Skip to a point in progressive download mp3 before downloaded

    Is it possible these days to skip to a point within a progressive download mp3, before this point has preloaded, similar to what i'm seeing with video players such as youtube? in the past, i've used FMS to achieve this, was wondering how people achie

  • How to use Operating System Commands while using define in sqlplus

    How to use Operating System Commands while using define in sqlplus . The Host OS is Linux define report_name=PROD_${host date "+%b"}.html The above is not working. The output should be  define report_name=PROD_JAN.html Regards, DB

  • Tree Population in COLLAPSED mode

    Hi All, I have a "hirarchical tree" based on a group ...i am populating the tree using POPULATE TREE procedure but whenever it populates it populates in expanded mode which gives a odd look while populating...so can I populate the tree in COLLAPSED m