Remove R12 from windows note  Released!

Hi Guys/Ladies,
FYI Note 567507.1- How to Remove an Oracle E-Business Suite Release 12 Windows Environment has been released. The note can be used to Cleanup a failed R12 Install at windows but can also be used to remove a R12 Environment from a system where more then one environment has been installed without removing the other environment (meaning cleanup the registry and remove the environment from the inventory without deleting it)
Have Fun with it!
Kind Regards,
Ronald Rademaker
Just realized I posted in in the 11i Thread, so also created it in the R12 one.
But I believe the same note could be used for 11i also (will test asap)

Duplicate thread (Please post only once).
Remove R12 from windows note Released!
Re: Remove R12 from windows note Released!
But I believe the same note could be used for 11i also (will test asap) It should be almost the same for 11i. However, there is a separate note for 11i.
Note: 107961.1 - How To Clean Out A Previous Oracle Applications Installation On Windows NT
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=107961.1

Similar Messages

  • Sending an email from Lotus Notes release 5.0.4a

    I need to write java code for sending an email from Lotus Notes release 5.0.4a.
    Initially, I tried using Lotus Domino Toolkit for java, but the current release, "Lotus Domino ToolKit for Java/Corba release 5.0.8" is not compatible with the notes client/server we are using(5.0.4a).
    Now, I am trying to use "Lotus Domino Toolkit 2.1" which supports notes version 5.0.3 and higher, but I couldnot find out how to use it to send email.
    Is there are other way in which we can connect to Lotus Notes for sending email. I cannot use SMTP as the Lotus Notes administrator is afraid of security issues so there is no possibility that I can connect to Domino server using java mail API by enabling SMTP on the Domino server.
    I would be thankful if somebody can help me to do this.

    First off - This is very "off topic"
    The Domino SMTP server is not hard to lock down. Any Notes Admin worth his/her salt should know how to do it. Try to persuade them to run the SMTP stuff using name and password authentication only, or restrict access to an IP address range. This is all easy stuff.
    Otherwise DIIOP/CORBA is one way to go. If your toolkit jar files don't work with the server then try using the ones on the server. Look in %noteshome%\data\domino\java for the ncso.jar file.
    This works for me on an AS/400 java VM to WinNT/Linux Domino servers of various versions.
    How to create an email using this method is again not difficult. All you really need is a blank database template. You have to create a document with certain fields in it (all documented) and then save it. That's all there is to it.
    Word of warning DIIOP is not very rapid and careless coding can create problems. Ensure that once you have finished a session you make sure you close it else you will have continual connection problems.
    Try searching around the domino/notes groups on how to actually do this.
    SH

  • Why MS remove Exchange from Windows 2012 Essentials?

    Why MS remove Exchange from Windows 2012 Essentials and support just with Office 365 and Exchange on-premise?

    I don't think Microsoft has ever said exactly why.  Some possible reasons, pick one (or more).
    1.  Because Exchange has become too resource intensive.
    2.  Because Microsoft wants to drive small business to O365.
    3.  Because Small and Medium business were already flocking to O365 and abandoning on premise Exchange.
    4,  Microsoft built out all those expensive data centers and needed someone to use them for something.
    5.  Hosting Exchange on the DC has always violated best practices, now that there are alternatives no need to continue.
    6.  All of the above.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • I need help removing CS3 from Windows 7 so I can reinstall

    I need help removing CS3 from Windows 7 so I can reinstall

    Before trying to remove try re-installing CS3 right on top of the current install.  Often re-installing Photoshop on top of itself fixes the install.  If it does be sure to apply the cs3 updates.
    Download Adobe CS4 and CS3 Free Trials Here (incl. After Effects) | ProDesignTools
    your product key can be retrieved from here https://www.adobe.com/account/my-products-services.html
    use these links for the updates.
    Adobe - Photoshop : For Macintosh
    Adobe - Photoshop : For Windows

  • Can't delete a file displayed in ListView ("File in use") even after removing it from window.

    I have a ListView displaying a collection of icons. The user can then select different icons (checkboxes) to do things like Copy or Delete.
    Problem is, when I try to delete the actual file from the disk, I get an error telling me the file is "in use" ("vshost.exe", the VS runtime during testing).
    I thought maybe it was because it still appeared in the window and was still in the ImageList, but even after removing it from both locations, I still get the error. My code:
    Dim intCnt As Integer = 0
    Do
    ImageList2.Images.RemoveAt(intIconsChecked(intCnt)) ' Remove from collection.
    lsvCollection.Items.RemoveAt(intIconsChecked(intCnt)) ' Remove from ListView window.
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".rsc") ' "+1" b/c Icons start with "01".
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".png") ' "In use" Error here.
    ".rsc" deletes just fine, so I know I'm deleting the correct file. Why does VS still think the file is still "in use"?
    Thx

    Mugsy,
    Consider this as food for thought, even if you don't use it.
    If you set it up right then you can control how it works. A reference is a reference and any left behind will cause you grief down the road when you try to delete things.
    As an example, a simple class follows. It does *not* implement IDispose, although it does have a private shared Dispose method in it:
    Public Class MyImages
    Private _bmp As Bitmap
    Private _name As String
    Private _sourceFilePath As String
    Private Sub New(ByVal bmp As Bitmap, _
    ByVal name As String, _
    ByVal filePath As String)
    _bmp = bmp
    _sourceFilePath = filePath.Trim
    _name = name.Trim
    End Sub
    Public ReadOnly Property Bmp As Bitmap
    Get
    Return _bmp
    End Get
    End Property
    Public ReadOnly Property Name As String
    Get
    Return _name
    End Get
    End Property
    Public ReadOnly Property SourceFilePath As String
    Get
    Return _sourceFilePath
    End Get
    End Property
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, GetFileNameWithoutExtension(imageFilePath), imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    ByVal imageName As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    ElseIf String.IsNullOrEmpty(imageName) OrElse imageName.Trim = "" Then
    Throw New ArgumentException("The name of this image cannot be null or empty.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, imageName, imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub Remove(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    Optional ByVal removeFilePathAlso As Boolean = False)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    Dim findInstance As System.Collections.Generic.IEnumerable(Of MyImages) = _
    From mi As MyImages In miList _
    Where mi.SourceFilePath = imageFilePath
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("The instance of MyImages specified by the" & vbCrLf & _
    "image file path is not in the collection.")
    Else
    Dispose(findInstance.First)
    If removeFilePathAlso Then
    My.Computer.FileSystem.DeleteFile(findInstance.First.SourceFilePath)
    End If
    miList.Remove(findInstance.First)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Private Shared Sub Dispose(ByVal instance As MyImages)
    If instance IsNot Nothing AndAlso instance._bmp IsNot Nothing Then
    instance._bmp.Dispose()
    instance._bmp = Nothing
    End If
    End Sub
    End Class
    When you look through that, look specifically at the "Remove" method and in particular, look at the order in which things are done. That's the critical part in this.
    I tested it with a simple form:
    Two buttons, a checkbox, and a picturebox. I also copied a small folder full of image files to my desktop since I'll be deleting a file from it. Following is the code for Form1:
    Option Strict On
    Option Explicit On
    Option Infer Off
    Imports System.IO.Path
    Public Class Form1
    Private miList As New List(Of MyImages)
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim desktop As String = _
    My.Computer.FileSystem.SpecialDirectories.Desktop
    Dim imgFolder As String = _
    Combine(desktop, "Images")
    PictureBox1.BorderStyle = BorderStyle.FixedSingle
    For Each imgFilePath As String In My.Computer.FileSystem.GetFiles(imgFolder)
    MyImages.AddNew(miList, imgFilePath)
    Next
    btn_RemoveFirstImage.Enabled = False
    CheckBox_RemoveSourcePath.Enabled = False
    End Sub
    Private Sub btn_ShowFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_ShowFirstImage.Click
    Try
    If miList.Count >= 1 Then
    With PictureBox1
    .SizeMode = PictureBoxSizeMode.Zoom
    .Image = miList(0).Bmp
    End With
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    End If
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    Private Sub btn_RemoveFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_RemoveFirstImage.Click
    Try
    If miList.Count >= 1 Then
    MyImages.Remove(miList, miList(0).SourceFilePath, CheckBox_RemoveSourcePath.Checked)
    End If
    PictureBox1.Image = Nothing
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    End Class
    Running it is straightforward:
    Now when I click to show the first one:
    A different image is shown because that first one no longer exists - either in the collection or in the folder.
    Closing/disposing all references is the key and the order matters.
    Something to consider the next time around. :)
    Still lost in code, just at a little higher level.

  • How to uninstall / remove WebAccess from Windows

    How do you remove GW 8 WebAccess from Windows server 2008.
    The program is not list in Program and Features.

    Steve,
    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://forums.novell.com/

  • HT1923 How do I remove iTunes from Windows 8 computer

    How do I completely remove iTunes from a Windows 8 computer

    Hello mjons79,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes Store: About authorization and deauthorization
    http://support.apple.com/kb/ht1420
    To deauthorize a computer
    Open iTunes.
    From the Store menu, choose Deauthorize This Computer. (In earlier versions of iTunes, access this option from the Advanced menu).
    When prompted, enter your Apple ID and password, then click Deauthorize.
    Remember to deauthorize your computer before you sell it, give it away, or get your computer serviced. Also, make sure you deauthorize your computer before you upgrade your RAM, hard disk or other system components, or reinstall Windows. If you do not deauthorize your computer before you upgrade these components, one computer may use multiple authorizations.
    Best of luck,
    Mario

  • Removing apps from Windows 8

    I am using Power shell to remove the modren apps from all users on Windows 8.  Can I just run the following Get-AppxProvisionedPackage -online | Remove-AppxProvisionedPackage -online or do I need to run Get-AppXPackage -AllUsers before I run the
    other script? Is the text case sensitive?

    Hi,
    Regards this issue,you need to understand these commands.
    The Get-AppxProvisionedPackage cmdlet gets information about app packages (.appx) in an image that are set to install for each new user.
    The Get-AppxPackage cmdlet gets a list of the app packages (.appx) that are installed in a user profile.
    The Remove-AppxProvisionedPackage cmdlet removes app packages (.appx) from a Windows image. App packages will not be installed when new user accounts are created. Packages will not be removed from existing user accounts.
    The Remove-AppxPackage cmdlet removes an app package (.appx) from a user account.
    We need to use Get-AppXPackage -AllUser command to get the package information fist.
    Also,we can use the script as Yannick Plavonil mentioned to remove Built-in Applications from Windows 8.
    http://blogs.technet.com/b/deploymentguys/archive/2013/06/07/update-removing-built-in-applications-from-windows-8.aspx
    Regards,
    Kelvin Xu
    TechNet Community Support

  • Remove oracle from windows 2000

    I have removed all oracle components and oracle SID database as
    well.
    Yet I find there are some services still active.
    I tried to remove key from regedit but it gave me cannot delete
    the key.
    Now, How can I remove
    all the services in order to do reinstallation?
    Is there any utilites provide by oracle to do so?

    There is a utility called "oradim" in windows environment to manage services. Look at the help by typing "oradim/h" in the command prompt and follow the syntax.
    Good Luck

  • Removing Toolbar from Windows taskbar

    Hello,
    I need to deploy a script on almost 150 PCs with Windows 7 64bit. The script will uninstall and remove everything related to Office 2000. The script is ready, it`s working absolutely fine. However when we did install Office 2000 we alos did create a Toolbar
    called "office 2000" and it was attached to Taskbar. Now when I will remove everything from that particular folder the taskbar still sits in there. I tried to find a registry key/value responsible for that Toolbar, but I cant`t anything suitable.
    I`ve made a research in Google, but still nothing special found.
    Does anyone know how to remove it using some commands in CMD/Powershell or by using VBScript?
    Could anyone please advice on that?
    Thank you

    Hi Rubens,
    I found a similar discussion, and this seems has no API to do this, simply because it would get abused, for the
    reasons listed here:
    Why
    is there no programmatic access to the Start menu pin list?
    For more detailed information, please go through this thread:
    Enabling/Showing
    the Links Toolbar on the Windows Taskbar via PowerShell
    If there is anything else regarding this matter, please feel free to post back.
    Best Regards,
    Anna Wang

  • How to properly remove "Network" from Windows Explorer and Save Dialog boxes?

    I've recently rolled out Windows 7 and noticed that in some applications (Office 2003 - yes we are due for an upgrade - happening later this year), when a user clicks the down arrow in a "Save As" dialog box to view the available locations - a
    list of seemingly every computer in the broadcast domain is generated and displayed.  This takes about 30-45 seconds.  I don't want my users to be able to view a list of every computer in their broadcast domain, and I especially don't want them to
    be presented with said list every time they try to save something.  In newer apps, the list is not automatically displayed but is still accessible by clicking the "Network" selection.
    What is the proper way to remove this?
    I've tried the following:
    1) Disabling the NetBios over TCPIP service - works but prevents other things from working properly.
    2) Disabling the Computer Browser service - does not work.
    3) Changing HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder\Attributes from b0040064 to b0940064 as suggested here -http://www.sevenforums.com/tutorials/39699-network-add-remove-navigation-pane.html
    .  This seems to work but I cannot find anything that says this is supported by Microsoft and I am wary of what side effects may occur.
    4) Using a GPO to enable the "No Computers Near Me in Network locations" and "No Entire Network in Network locations." - no change.
    It seems like there should a simple way to do this as I can't be the only admin that doesn't want their users browsing a list of every computer on the network.
    Thanks!

    Hi,
    I will mark my first reply as answer. It could help other communities here who have the same issue.
    Thanks for your understanding.
    Regards,
    Leo   Huang
    TechNet Subscriber Support
    in forum. If you have any feedback on our support, please contact
    [email protected]
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Help Removing Messenger from Windows 7

    How do I remove Windows Live Messenger from my computer?  Every time I log into hotmail it open the messenger and tries to get me to log in.  I don't want to use the messenger.....ever!  Please help!!!!
    Thanks
    Solved!
    Go to Solution.

    If its asking you to pay to get it taken off, then you are infected with spyware, garbageware etc. This might be a job for Geek Squad since I dont want to direct you to remove anything that might further cripple your machine (A program called Hi-Jack this can help with the removal of it, but Im not by any means an expert at reading those logs.
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

  • How to delete/uninstall/remove monitor from Windows PC

    I'd like to uninstall GW Monitor from a Windows 2003 server box but there's no uninstall option in Add/Remove Programs nor an Uninstall option in the Start Menu. How is monitor uninstalled, including Tomcat?
    TIA,
    Steve

    Steve,
    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:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    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/

  • Iphoto remove photos from iphone not working

    For the past couple months iphoto will not delete the photos from my iphone. It successfully imports them, prompts to delete, appears to delete but doesn't actually remove them. They are still on my iphone. iphoto recognizes that they have already been imported and asks to delete them again the next time I plug in my phone, I accept, looks like something is happening but they are still there. I've tried image capture as well and there is no way to delete off the phone in image capture. Help!?

    Can it be, that you have enabled iCloud Photo Library (Beta) on your iPhone with iOS 8.1.3?  Then you can import photos from the phone, but deleting from Image Capture or iPhoto will not work, if the photos are in iCloud Photo Library.
    iCloud Photo Library beta FAQ
    Delete the photos directly on the iPhone or using the icloud webpage -
    Use the "Photos Beta" app on your iCloud page:
    https://www.icloud.com

  • Remove .par from syste not using the portal(it´s down),should do offline

    Hi
    we have a portal that have an iView called in the framework.
    This iView is causing an error, so when accesing the portal we inmediatelly have the issue and we have no access to the web and the content admin.
    This error is caused due to a problem in the last version updated.
    I have 2 options in mind to change this:
    -Upload a new version of the file withot the proble. This could be done with NWDS but it´s not working.
    -Remove the iView with the problem but this should be done offline. And i don´t know how.
    Any idea?
    I´m lost and in a rush.
    Regards
    Fernando

    Hi,
    Offline undeployment:
    Here is the way you can undeploy your par file manually:
    Remove your par.bak files from:
    ..\usr\sap\<SID>\<JC-->\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    and
    ..\usr\sap\<SID>\<JC-->\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\temp
    Mostly the par.bak will be present either in pcd or temp folders but not in both.
    ex: C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    After that restart your J2EE engine and check your par file again.
    To remove the IView you should goto Content Administration and Portal Content and remove the IView from there.
    Greetings,
    Praveen Gudapati
    [Points are welcome for helpful answers]

Maybe you are looking for