Uninstall Microsoft Lync By Using Applications in Configuration Manager

Dear,
I wants to remove Microsoft Lync 2010 by using create deployment application in SCCM 2012 and install Microsoft Lync 2013 at the same time, kindly I wants to know shall I create two packages for each one first I have to uninstall Microsoft Lync 2010 by create
new package and create another package for install Lync 2013? Kindly I need steps for doing this job.
Thanks..

You can create customize the Lync2013 Admin file (navigate to your Microsoft Office setup folder, etc //Lync2013/setup.exe /admin) and create an msp file. Create a package and deploy it.
There is a portion in the MSP file where you can set what Office does after installation and before installation. This will uninstall Lync 2010 during the Office 2013 installation
1. Copy the Lync 2010 setup file (LyncSetupVolume.exe) into the same folder as your Lync 2013, create a folder called Lync2010.
2. Run eg: //Lync2013/setup.exe /admin to create a new msp file (you can also use an existing msp file if available)
3. In the MSP file , go to Setup>Add installations and run programs> add a command line (after installation, do not choose before installation) , etc //Lync2013/Lync2010/LyncSetupVolume.exe /silent /uninstall
4. Save the file.
5. Create a package with Lync 2013 //Lync2013/setup.exe /adminfile automated.msp
6. Deploy it.
You can customize the Office2013 Admin file to your liking as well. To test it out, may I suggest to deploy it through SCCM to a test machine as Available first and see if it works before deploying 
Please refer http://social.technet.microsoft.com/Forums/en-US/configmanagerapps/thread/dc8c5dfa-eb1d-4ca6-8713-e37ba4175734
Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer" Regards Edwin Anthony Joseph

Similar Messages

  • Cannot set Start Mode using SQL Server Configuration Manager

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?
    I have seen that on my laptop as well and it was due to display /resolution setting. Please see if that helps you. BTW, as already answered, services.msc is another way of changing it.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Integrating Microsoft Lync with Web Applications

    Hi,
    Can you please tell, is it possible to integrate Microsoft Lync with the  web applications. If so, can you please tell how to proceed with it ?
    Thanks.

    Hi BarryBenson,
    I suggest that you post this on MSDN forum so
    that you can get More relevant information and help with the process. Sorry for any inconvenience this caused. Thanks for your understanding.
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=ucmanagedsdk
    Best regards,
    Eric

  • Deploying Office 365 Pro Plus using System Center Configuration Manager 2012 SP1

    Hello,
    I am trying to deploy Office 365 Pro Plus to my client machines (more than 100) via. System Center Configuration Manager 2012 SP1. It will use one administrator account for installation. But as per the licensing, we can install Office for up to 5 PCs/Macs
    and 5 more Windows tablets/iPads with one Office 365 Pro Plus licenses. If this is the case, then I cannot install Office 365 Pro Plus with one admin account to my 100+ machines, as it will violate the licenses of O365 Pro Plus.   
    So, what is the alternative approach?
    Thanks
    Raj

    If this is the case, then I cannot install Office 365 Pro Plus with one admin account to my 100+ machines, as it will violate the licenses of O365 Pro Plus.
    Hi,
    this is incorrect.
    There is no licensing restriction/control for the *installation* account at all, the licensing is related to who is *using* Office365ProPlus *after* installation is performed. This control, is implemented by the Microsoft Account, or OrgID, used to sign-in/activate
    to Office365 when *using* Office365ProPlus.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Uninstall Microsoft Office 2013 using Invoke-TroubleshootingPack

    Hi,
    I'm deploying an uninstallation package to uninstall Office 2013 using the ingenious Microsoft Fix it (located here: http://support.microsoft.com/kb/2739501/en-us)
    called O15CTRRemove.
    When running it manually, it removes everything that is related to Microsoft Office 2013 and I am able to install a new Office 2013 without any problems (changing from Office 365 to VL).
    The problem is as follows:
    I need to do this silently on a lot of computers using a deployment tool. I figured out how to use powershell and I'm doing it in the following way:
    Import-Module TroubleshootingPack
    $DIAGOFFRemoveOff2013 = Get-TroubleshootingPack -Path "C:\Deployment\Office2013Uninstall\O15CTRRemove"
    Invoke-TroubleshootingPack -Pack $DIAGOFFRemoveOff2013 -AnswerFile "C:\Deployment\Office2013Uninstall\DIAG_Off_RemoveOff2013.xml" -unattended
    I created the Answerfile DIAG_Off_RemoveOff2013.xml in the following way (according tohttp://blogs.technet.com/b/heyscriptingguy/archive/2011/02/09/use-powershell-troubleshooting-packs-to-diagnose-remote-problems.aspx):
    Get-TroubleshootingPack "C:\Deployment\Office2013Uninstall\O15CTRRemove" -answerfile "C:\Deployment\Office2013Uninstall\DIAG_Off_RemoveOff2013.xml"
    It looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Answers Version="1.0" />
    When I run the script it works but for some reason, it doesn't work when I run it as system (my deployment tool runs the script as system, and I've tried it manually like this):
    psexec -i -s cmd
    cmd /C powershell -executionpolicy unrestricted -file "C:\Deployment\Office2013Uninstall\Uninstall_Office2013.ps1"
    It just hangs and I can see in eventviewer that it has run a few troubleshooting packs, that the uninstall of Office is complete but it doesn't continue until I force kill sdiagnhost.exe.
    If I run the script after killing sdiagnhost.exe, it finishes without a problem.
    I have temporarily solved it like this (I run the same job twice, to be sure everything is removed and the second one finishes quickly while the first hangs until the timeout):
    Start-Job -ArgumentList -ScriptBlock {
     $DIR = "C:\Deployment\Office2013Uninstall"
     Import-Module TroubleshootingPack
     $DIAGOFFRemoveOff2013 = Get-TroubleshootingPack -Path "${DIR}\O15CTRRemove"
     Invoke-TroubleshootingPack -Pack $DIAGOFFRemoveOff2013 -AnswerFile "${DIR}\DIAG_Off_RemoveOff2013.xml" -unattended
    Get-Job | Wait-Job -Timeout 1200
    Get-Job | Receive-Job
    Get-Job | Remove-Job -Force
    Start-Job -ArgumentList -ScriptBlock {
     $DIR = "C:\Deployment\Office2013Uninstall"
     Import-Module TroubleshootingPack
     $DIAGOFFRemoveOff2013 = Get-TroubleshootingPack -Path "${DIR}\O15CTRRemove"
     Invoke-TroubleshootingPack -Pack $DIAGOFFRemoveOff2013 -AnswerFile "${DIR}\DIAG_Off_RemoveOff2013.xml" -unattended
    Get-Job | Wait-Job -Timeout 1200
    Get-Job | Receive-Job
    Get-Job | Remove-Job -Force
    I am thinking that there is some kind of dialogue questions that I need to get into the answer file, but I have no idea how to do it.
    Any help is appreciated!
    Best regards,
    Simon

    Credit goes to MS for core script (its to long to post here).
    Credit goes to the guy who wrote the cleaner script.  Whoever packaged it and didn't build in silent switches gets zero points.
    Please note that this will only work for C2R installs of Office 2013.
    This is not true.  There are scrub scripts specific to C2R as well as MSI.
    I extracted the scrub vbs from O15CTRRemove.diagcab
    This is what worked for me.  Use 7-zip to extract the entire package to a directory.  Then run "OffScrub_015msi.vbs all".

  • Uninstall iMovie and Reinstall using Applications disk

    Hi there everybody,
    When I open iMovie, I get a message saying that some of the Quicktime components are missing and reinstall iMovie. This happened after I uninstalled Final Cut Express. Since iMovie is installed, the Applications Disk does not give an option to install iMovie, so I'm guessing that I need to uninstall iMovie and reinstall.
    How do I go about this properly without losing any of my movie data (there isn't that much).
    Thanks in advance.
    One more thing: I'm using Lion and iMovie 11 is my issue.
    Big K

    If you have an iLife disk that you purchased, (you should have iMovie, iPhoto, GarageBand, iWeb, and iDVD)
    This will not affect your iMovie Project, Events, or finished movies.
    Drag the iMovie app from the applications folder to the trash. Then use your disk to reinstall.
    If your iMovie came preinstalled on a new imac and you get your iMovie updates through the App Store...
    In this case, you would have iMovie, GarageBand, and iPhoto, but not iWeb or iDVD.
    This will not affect your iMovie Project, Events, or finished movies.
    You can either drag iMovie to the trash from the Applications folder. OR you can open LaunchPad and drag the icon for iMovie to the trash. Then open App Store and install from there.
    If your iMovie came preinstalled on a new Mac, and you do not get iMovie through the App Store.
    In this case, you should have iMovie, iPhoto, GarageBand, iWeb, and iDVD.
    This will not affect your iMovie Project, Events, or finished movies.
    Go to the Applications Folder and drag the icon for iMovie to the trash. Then reinstall from your OSX System Disk that came with your Mac. Do not reinstall OSX, but look under the Utilities menu for software to install.

  • Uninstall Microsoft Office 2010 using intune

    Has anyone successfully uninstalled Office 2010 using Intune to push the command?
    I just upgraded all users to 2013 but would like to remove the old office.
    Thanks
    Ivan Nix

    I know this is very old but I’m trying to clean up old posts. Did you ever solve this? If so it would be good if you could post the solution to assist others. If not, at this
    stage, as nobody has answered, I would recommend that you call Intune support if the issue still exists.
    You will find your local Intune support number here
    http://technet.microsoft.com/en-US/jj839713.aspx
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Any Limits to using BranchCache with Configuration Manager 2012 SP1 or R2

    Have a client looking to leverage the Branchcache feature in their office locations, over 1000 with numbers ranging from 2 - 40 in size.  There would be 2 - 4 central Primary distribution points servicing these clients in the 1000+ offices.
    Do I need to look at requesting them to make changes to their design to have more distribution points to allow more branchcache clients to connect, are there any limitations?
    I am aware the content is un managed (self managed no control) so the distributions may go over the links more then once.
    Also aware that this would autoset a branchcache on each subnet even though it is a single location, but has multiple subnets.
    Thanks,

    Have a read about our BranchCache addons after reading our FAQ, for others just wanting some info:
    1. Yes the servers needs to have the same key to ensure that hashes are compatible for all servers (i.e. the same)
    2. Reporting will show how efficient it is:
    http://2pintsoftware.com/portfolio-items/branchcache-reporting/?portfolioID=10528
    3. Yes its per Subnet

  • Configuration Manager 2012 Agent Crashing - Faulting Application Name: CcmExec.exe

    We have recently experienced ~1,000 systems that have the SCCM 2012 SP1 client crashing every 5 to 10 minutes. The SCCM 2012 environment is SP1 CU3 and most SCCM clients are running the SP1 version of 5.00.7804.1000.
    The following errors are written in the Application Event Log every time this occurs:
    Log Name:      Application
    Source:        Configuration Manager Agent
    Date:          12/5/2013 8:32:07 AM
    Event ID:      669
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      %ComputerName%
    Description:
    The component raised an exception but failed to handle it and will be stopped immediately.
     Component name: KERNELBASE.dll
     Executable:
     Process ID:
     Thread ID:
     Instruction address: 8791750393037
     Exception code: -286326786
     Client version: 5.00.7804.1000
    Log Name:      Application
    Source:        Application Error
    Date:          12/5/2013 8:32:07 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      %ComputerName%
    Description:
    Faulting application name: CcmExec.exe, version: 5.0.7804.1000, time stamp: 0x50add6eb
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17965, time stamp: 0x506dcae6
    Exception code: 0xeeeefffe
    Fault offset: 0x000000000000bccd
    Faulting process id: 0x1120
    Faulting application start time: 0x01cef1be5aad21ad
    Faulting application path: C:\Windows\CCM\CcmExec.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: a24071a5-5db1-11e3-b5bc-d4bed936cdee
    Log Name:      Application
    Source:        Windows Error Reporting
    Date:          12/5/2013 8:32:07 AM
    Event ID:      1001
    Task Category: None
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      %ComputerName%
    Description:
    Fault bucket , type 0
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: CcmExec.exe
    P2: 5.0.7804.1000
    P3: 50add6eb
    P4: KERNELBASE.dll
    P5: 6.1.7601.17965
    P6: 506dcae6
    P7: eeeefffe
    P8: 000000000000bccd
    P9:
    P10:
    I also saw the post below regarding a similar issue, but nothing has helped resolve the issue as of yet. 
    http://social.technet.microsoft.com/Forums/en-US/5ad3d7d4-2a87-473d-8c9d-41ad100e134a/random-client-failures-ccmexecexe-exception-code-0xeeeefffe?forum=configmanagergeneral#30791e92-6dc3-4466-9e07-bc2552e6aa3b
    Any assistance or guidance is greatly appreciated.  Thanks!

    Yes, I know that this is an old post, I’m just trying to clean them up. Did you find the answer for this?
    By change do you have McAfee and have you told McAfee to exclude ccmexec.exe from AV scanning?
    http://www.enhansoft.com/

  • BUG: Can't create BC4J Application Module Configurations

    Hello,
    I'm using JDev 9.0.3.1 with Win2K and WinXP. There seems to be a bug in the BC4J Application Module Configuration Manager:
    It seems to be impossible to create a new BC4J Application Module Configuration with the Configuration Manager of a BC4J Application Module. I can copy an existing AM configuration, but I can not rename it. Clicking on the OK Button in the Configuration Manager simply does nothing.
    A work around seems to be to open bc4j.xcfg in any text editor, copy an AppModuleConfig element, save xcfg, in JDev remove the project form the workspace, readd it to the workspace (some caching issue of jdev?). Then the new AM config is there and can be modified.
    In JDev 9.0.3 the Config Manager seems to work fine.
    Regards
    Stefan

    The bug is mentioned in metalink bug 2849146.

  • Why when I try to Build === Configuration Manager === Active solution platform === New does not open up a platform configuration window???

    I have read that in order to process my .xlsx file using Microsoft.Jet.OLEDB.4.0 Connection String I need to create a "x86" Active Solution Platform.
    Welllll, when I <Right-Click> on my Solution in Microsoft Visual Studio, and <Click> on
    Configuration Manager and then <Click> the Active solution platform
    and choose <New...> absolutely nothing happens. How can I try and create a new
    Active solution platform if nothing happens and I don't get a dialog box or window?
    Am I doing something wrong here?
    Do I have a Setting that is incorrect?
    Thanks for your review and am hopeful for a reply.
    ITBobbyP85

    Hi ITBobbyP85,
    After testing the issue in my SSIS project, I also couldn’t add a new Active solution platform in the SSIS project.
    As per my understanding, I think the Active solution platform doesn’t supported in Business Intelligence projects (SSAS, SSRS and SSIS). If the project is application project(C#, VB, etc.), by default, the target platform is x86. And we can also configure
    the project to target to a 64-bit platform. For more details about how to configure projects to target platforms, please see:
    http://msdn.microsoft.com/en-IN/library/ms185328.aspx
    The following screenshots are for your references:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSRS 2008 configuration Manager - "Invalid Class"

    Reporting Services Configuration Manager is throwing an error when I try to "Find" the server. The manager starts up and takes me to the "Reporting Services Configuration Connection" window. I click on the "Find" button (leaving the default comptuer name as-is; the local machine)  and get the error message "Invalid Class" with the title "Reporting Services Configuration Manager".
    I've been searching around the interner and only found one forum post with a similar problem to my own. It was on this forum and the advice seemed to be pointing towards a problem with WMI, but it seemed that the user never found a solution. I've downloaded and ran the WMI diagnostics program and the log does contain quite a few warnings, but I don't know how to go about solving most of them. I did run regsvr32 on some dll files though :)
    I won't post any logs yet, as I have no idea where the problem may be based. Please advise and I will post the required information.

    Hi SiM99,
    The issue shoule be caused by the case onpnt mentioned and you are trying to use Reporting Services Configuration Manager 2008 to connect to Reporting Services 2005. From your post, I am sure you never install SQL Server 2005 in the server. But, sometimes, SQL Server Express 2005 may be installed with other program. So, I would suggest you checking if SQL Server Expree 2005 is installed in the server using Services control(by running command services.msc). If SQL Server Express 2005 is installed, please uninstall it.
    The issue should be caused by the uncompleted installation too. There may be a error during the installation.
    Could you please check if there is any error in the installation error message?
    By default, we can get the installation logs from:
    C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Log\Summary.txt
    By the way, could you please follow these steps to check if the Reporting Services WMI provider is installed correctly?
    1. Run command wbemtest
    2. Click "Connect"and connect to “ROOT\Microsoft\SqlServer\ReportServer”(type this path in the Namespace textbox)
    3. After connecting to the name space, click "Query" to query “SELECT * from __namespace”. There would be one data in the record window(while the server only have one RS instance).
    4. Double-click the record, in the new properties windows, get the path value such as “\\<server>\ROOT\Microsoft\SqlServer\ReportServer:__NAMESPACE.Name="RS_MSSQLSERVER" ”
    5. Now, close all sub dialogs, and then re-connect to “ROOT\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER”. "RS_MSSQLSERVER"  is the Namespace.Name in step4
    6. Query “SELECT * from __namespace” again.
    7. Repeat step4,5, we will get the new path “ROOT\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\v10”
    8. Repeat step2 to 7 until there is no record in the Query result dialog. Finally, the path is \\server\ROOT\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\v10\admin
    If we can't get the final path \\server\ROOT\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\v10\admin, it means the Reporting Services WMI provider is not installed correctly.
    Please try using the following method to solve it:
    1.Execute the Command windows.
    2.Go to the folder C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin
    3.Run the command: MOFCOMP reportingservices.mof
    Please feel free to ask, if you have any more questions.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Hierarchical, Parameter-based Configuration Management - is SCCM the answer?

    I'm looking for the opinions of those that have used SCCM 2012 in a production environment.  What do you think the feasibility is of using SCCM 2012 Configuration Manager to manage the configuration of several Web Farms that are divided by primary use
    and development tier?  I.e. a Public Webserver environment that has a DEV / TST / PRD environment, with parameters specific to each, with individual similar web sites on each of those environments.
    I've been looking at DSC recently as it appears to have all of the native tools to allow you to define the kinds of hierarchies that are necessary (and pass parameters to resources defined to a node).  Will SCCM allow me the same kind of environment
    + role based management?

    It all depends upon what exactly you want to configure. ConfigMgr will allow to enforce anything ultimately, but you are most likely writing scripts to get it done as it doesn't natively know how to configure most applications including IIS.
    Without knowing more detail, that's about that can be said though and thus I would say DSC is your best at this point because it was designed for what you are talking about. The only short-coming of DSC is that there is no central management. Thus, you could
    really combine the power of the two tools and have ConfigMgr enforce the DSC policies. That's not a native capability but wouldn't be too difficult to get going.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • SolMan and CMMI Configuration Management

    Hi
    We are looking into implementing CMMI level 3 in our organisation.
    One of the main points is to use SolMan for Configuration Management which seems obvious.
    Does any of you "out there" have any experiences and answers/ideas to the following topics:
    - which CI's have you identified?
    - how are versions of the CI's managed?
    - how are you managing baselines and is there any demand for a baseline "rollback" in CMMI?
    And how are you handling Requirements Management and Requirements Development in SAP Solution Manager? Especially the bidirectional traceability
    Have you found any litterature on the subject?
    Thanks in advance - all help is welcome
    Peter

    I don't have a good answer to your question, but chose to reply because I'm also in search of Architectural and Operational standards and practices for WLS. Everything I see in terms of Oracle and 3rd party documentation, including the product itself, seems geared toward the developers and optimized for for their needs and desires. Precious little advice in terms of best practices for deploying and hosting production services on this platform. I'm just a lowly SA and need things explained like I'm retarded.
    Obviously common sense will have to end up addressing most of this, but why must we re-invent the wheel?
    FWIW in regards to your question, we don't rebuild our environments from scratch at every deployment. We don't even delete configurations and components at deployment. (Although I've heard that's a recommended practice, I never get a straight answer for "why?" From this I'm left to conclude that; what, WLS is unreliable, unstable? Until I hear a good reason why I should be deleting everything all the time I'll stick with my instincts.) As for configuration management, we're stuck in the stone age I'm afraid; although high on my list is to start reverse-engineering our prod config into scripted form so we can do just what you're explaining.
    At deployment, for every object we check for it, add it if it's missing, and re-set the configs. For all application deployments we undeploy/redeploy. All in WLST scripts that live in our version repo, natch. We could be doing it totally wrong, but it works so there's little impetus to change it. We're also handling an OSB deployment in a similar fashion, but that's done with a heavily modified-for-portability import.py script w/ ant.

  • Adobe Configuration manager is not able to configure Oracle Database

    Hi,
    I am trying to configure and test data base connection using adobe livecycle configuration manager.
    I am sure that my all oracle database credials (db type,db name, host name, port number , db userid and password) are correct.
    but not sure about JDBC driver in application server lib and local JDBC driver path.
    When i click on Test Database Connection it gives me error message "database setting failed validations".
    Please help me knowing the issue. Why i am not able to connect to Oracle data base.
    I have three servers
    1. Adobe LC server ( First I installed Weblogic and then adobe lc)
    2. weblogic server (only weblogic is installed, created database and gave privilages as per clustering_weblogic.pdf document)
    3. Oracle Database (only oracle is installed, using Net manager , entering userid and password connection is successfull)
    Please let me know issue.
    Regards
    Sunil Gupta

    Hina,
    ok, before i further move. I just want to confirm data base if evething is all right...
    I created on database using configuration assistant tool in oracle.
    DataBase Name : adobe_lc
    SID: adobelc
    port :default is 1521
    userid :system
    password:xxxxx
    hostname: ip address or maachine name with domain.
    then i assigned following privilages to user account system
    ● 
    CREATE SEQUENCE
    ● 
    CREATE VIEW
    ● 
    UNLIMITED TABLESPACE
    ● 
    CREATE TABLE
    ● 
    CREATE CLUSTER
    ● 
    CREATE SESSION
    i assigned privilages by login into https://hostname.domain:5500/em.
    Question:
    Above url i got when i open database from start->oracle home->created db.
    should this 5500 and port number same???
    When i test it using "Net Manager" in oracle database, using userid and password it is tested successfully.
    so i think there is no issue with the database. I mean to say, then there is no issue at oracle database side correct?
    please let me know if anything else need to be tested on database. because before i proceed further i want to confirm that my database is correct in all aspect and ready to be configured with weblogic.
    Regards
    sunil gupta

Maybe you are looking for