Various problems installing 10g Release 1 (10.1.0.2.0) for Windows

I have been trying in vain for quite a while now to install the above mentioned release. I opted to copy all the required installation files from the CD to a location on my HDD. My issues are as follows:
According to the documentation I started the 'Autorun' but did not get the option 'Install/Deinstall Products.' I had just one option which was to simply 'Start the Installation' which I selected. Following this, nothing happened. There was absolutely no activity thereafter.
Next I launched 'setup.exe' from the 'Install' directory which seemed to start things off. After selecting options like installation location and type of installation I get an error message to say that 'Exception generated when IP address of host cannot be determined.' I have no choice but to Ignore and continue since 'Retrying' doesn't solve the issue and annulling the operation stops the installation completely as it should.
This message appears again after selecting the kind of database I choose to install in the next step and again just before the actual installation begins, after all the options are selected.
The next error message I get is 'Error when starting service OracleCSService.' Again I have no choice but to Ignore and continue.
Finally at the end of this exercise I cannot use this installation. My final target is to use the default database created through Informatica, an ETL which never can manage to log into this database.
Are the error messages cited above common? What can be the possible solutions?
Regards

The 'autorun' not starting the setup.exe is a pretty well known problem. Your workaround to using the install\setup.exe is correct.
The "Exception generated when IP address of host cannot be determined" comes from not having a properly configured network subsystem. Perhaps you are using DHCP to get the IP address. However, Oracle is desiged to work in a server environment and the key difference between a server and a workstation/desktop/laptop/client is that a server has a well known static location (hostname and IP address) where all the clients can find it.
To get around this second problem may be as simple as setting up the Microsoft Loopback adapter. You should find more than a few references to that using a forum (or Google) search.
Your troubleshooting approach of 'ignore until everything fails' is perhaps not the ideal approach in Oracle. It takes a lot longer, but I'd recommend you stop to investigate each of the problems. Many are resolved through the documentation, however many are also well documented in these forums and on various web sites. Google is indeed your friend.

Similar Messages

  • Oracle Database 10g Release 2 (10.2.0.1.0) for Windows

    Does this version require additional patches for stability?
    Is it suitable for Win64 systems or must I install Oracle for Win64 ?

    10gR2 32bit runs on 64bit platform. 'Require' may be too hard, but at least major patchsets should be applied, the latest is 10.2.0.3 .
    Werner

  • Oracle Database 10g Release 2 (10.2.0.1.0)  on window vista

    Hi All,
    Pls help me to find out can we run oracle Database 10g Release 2 (10.2.0.1.0) on window vista ,any compatibility issues ?
    If yes....Pls show me the way.
    Thanks,

    Hi,
    Oracle Database is supported on Windows Vista with the 10.2.0.3 release. Use the Oracle Database 10g Release 2 (10.2.0.3) for Microsoft Windows Vista media available in the 10.2.0.3 media pack and the Oracle Technology Network site. Do not install Oracle Database on Windows Vista using the media for Oracle Database 10g Release 2 (10.2) for Microsoft Windows.
    For details chk this:
    http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/whatsnew.htm#BGGBDGHE

  • 10g Release 2 (10.1.2.0.0) for Solaris PDF's not found 404

    All the PDF links on otn for 10g Release 2 (10.1.2.0.0) for Solaris Operating System (SPARC) are dead http 404.

    Issue resolved; thanks.
    Cheers, OTN

  • Installing  64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64

    Dear all;
    I just downloaded 64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64 on my local pc...I am trying to run the install.bat after unzipping the file however, the black pop-up window comes up and disappears almost immediately. Does anyone know what is causing this. Also all help is appreciated with the installation. Kindly note, I have read the installation manual and it is not really helpful.

    this is the content of it
    @echo off
    REM ====================================
    REM ODAC 11.2.0.2.1 XCOPY INSTALL SCRIPT
    REM ====================================
    REM
    REM  This batch file installs components in an Oracle Instant Client Home
    REM
    REM  ====================
    REM  MODIFICATION HISTORY
    REM  ====================
    REM 
    REM  11/15/10 - change version number to 11.2.0.2.1
    REM  06/30/10 - change version number to 11.2.0.1.2
    REM             Add ODP.NET 4 and ASP.NET 4 components
    REM  08/21/09 - change version number to 11.1.0.7.20
    REM  08/21/09 - remove component odp.net 1.x
    REM  01/22/08 - Handle directory names with spaces
    REM  01/22/08 - Fixed oracle.key file generation so that products that rely on
    REM             it can reference the appropriate registry location
    REM  01/22/08 - Log all xcopy operations to the install.log in the destination
    REM             directory
    goto :ParseArgs
    REM **********************
    REM INSTALL ALL COMPONENTS
    REM **********************
    :InstallAll
    REM installing everything so set DEP to false or else dependencies such as
    REM basic client will get installed needlessly by each component
    set DEP=false
    call :basic %1 %2 %3 %4
    call :odp.net20 %1 %2 %3 %4
    call :odp.net4 %1 %2 %3 %4
    call :asp.net %1 %2 %3 %4
    call :asp.net4 %1 %2 %3 %4
    call :oledb %1 %2 %3 %4
    call :oramts %1 %2 %3 %4
    goto :EOF
    REM ************************
    REM INSTALL ASPNET Providers
    REM ************************
    :asp.net
    REM echo Please wait... installing Oracle Providers for ASP.NET
    if {%DEP%} == {true} (
    call :odp.net20 %1 %2 %3 %4
    echo *************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET >> %2\install.log
    echo *************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net2x files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net %3 false
    call configure.bat asp.net %3 false
    popd
    echo.>> %2\install.log
    echo ************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET installed >> %2\install.log
    echo ************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************************
    REM INSTALL ASPNET Providers 4
    REM **************************
    :asp.net4
    REM echo Please wait... installing Oracle Providers for ASP.NET 4
    if {%DEP%} == {true} (
    call :odp.net4 %1 %2 %3 %4
    echo ***************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET 4 >> %2\install.log
    echo ***************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net4 files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net4 %3 false
    call configure.bat asp.net4 %3 false
    popd
    echo.>> %2\install.log
    echo **************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET 4 installed >> %2\install.log
    echo **************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *******************
    REM INSTALL ODP.NET 2.0
    REM *******************
    :odp.net20
    REM echo Please wait... installing Oracle Data Provider for .NET 2.0
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ******************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 2.0 >> %2\install.log
    echo ******************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net20 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net20 %3
    call configure.bat odp.net20 %3
    popd
    echo.>> %2\install.log
    echo ******************************************* >> %2\install.log
    echo Oracle Data Provider for .NET 2.0 installed >> %2\install.log
    echo ******************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 2.0 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *****************
    REM INSTALL ODP.NET 4
    REM *****************
    :odp.net4
    REM echo Please wait... installing Oracle Data Provider for .NET 4
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ****************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 4 >> %2\install.log
    echo ****************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net4 %3
    call configure.bat odp.net4 %3
    popd
    echo.>> %2\install.log
    echo ***************************************** >> %2\install.log
    echo Oracle Data Provider for .NET 4 installed >> %2\install.log
    echo ***************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *************
    REM INSTALL OLEDB
    REM *************
    :oledb
    REM echo Please wait... installing Oracle Provider for OLEDB
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ************************************* >> %2\install.log
    echo Installing Oracle Provider for OLE DB >> %2\install.log
    echo ************************************* >> %2\install.log
    REM copy the files
    xcopy oledb %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oledb %3
    call configure.bat oledb %3
    popd
    echo.>> %2\install.log
    echo ************************************ >> %2\install.log
    echo Oracle Provider for OLE DB installed >> %2\install.log
    echo ************************************ >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Provider for OLEDB installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************
    REM INSTALL ORAMTS
    REM **************
    :oramts
    REM echo Please wait... installing Oracle Services for MTS
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ********************************** >> %2\install.log
    echo Installing Oracle Services for MTS >> %2\install.log
    echo ********************************** >> %2\install.log
    REM copy the files
    xcopy oramts %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oramts %3
    call configure.bat oramts %3
    popd
    echo.>> %2\install.log
    echo ********************************* >> %2\install.log
    echo Oracle Services for MTS installed >> %2\install.log
    echo ********************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Services for MTS installed in an Oracle Instant Client Home.
    goto :EOF
    REM ***********************************
    REM INSTALL Basic Oracle Instant Client
    REM ***********************************
    :basic
    REM echo Please wait... installing Basic Oracle Instant Client
    echo ************************************** >> %2\install.log
    echo Installing Basic Oracle Instant Client >> %2\install.log
    echo ************************************** >> %2\install.log
    REM copy the files
    xcopy instantclient_11_2 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    call configure.bat basic %3
    popd
    echo.>> %2\install.log
    echo ************************************* >> %2\install.log
    echo Basic Oracle Instant Client installed >> %2\install.log
    echo ************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Basic Oracle Instant Client installed.
    REM echo.
    REM echo Please prepend %2 and %2\bin to system path environment variable
    goto :EOF
    REM =======================
    REM Parse Script Arguments
    REM =======================
    :ParseArgs
    if /i {%1} == {} goto :Usage
    if /i {%2} == {} goto :Usage
    if /i {%3} == {} goto :Usage
    if /i {%1} == {-h} goto :Usage
    if /i {%1} == {-help} goto :Usage
    REM install dependencies or not - default is true
    set DEP=true
    if /i {%4} == {false} set DEP=false
    if NOT EXIST %2\*.* (
      mkdir %2 > NUL 2>&1
    echo ****************** >> %2\install.log
    echo ODAC install files >> %2\install.log
    echo ****************** >> %2\install.log
    REM /R to overwrite readonly files at destination
    REM /Y to overwrite an existing file without prompting
    xcopy configure.bat %2 /R /Y /F >> %2\install.log
    xcopy unconfigure.bat %2 /R /Y /F >> %2\install.log
    xcopy uninstall.bat %2 /R /Y /F >> %2\install.log
    echo.>> %2\install.log
    if /i {%1} == {basic}     goto :basic
    if /i {%1} == {odp.net20} goto :odp.net20
    if /i {%1} == {odp.net2}  goto :odp.net20
    if /i {%1} == {odp.net4}  goto :odp.net4
    if /i {%1} == {asp.net}   goto :asp.net
    if /i {%1} == {asp.net2}  goto :asp.net
    if /i {%1} == {asp.net4}  goto :asp.net4
    if /i {%1} == {oledb}     goto :oledb
    if /i {%1} == {oramts}    goto :oramts
    if /i {%1} == {all}       goto :InstallAll
    goto :Usage
    :Usage
    echo.
    echo Usage:
    echo   install.bat component_name oracle_home_path oracle_home_name [install_dependents]
    echo.
    echo Example:
    echo   install.bat all       c:\oracle myhome       (install all components)
    echo   install.bat odp.net2  c:\oracle myhome true  (install ODP.NET 2 and its dependent components)
    echo   install.bat odp.net4  c:\oracle myhome true  (install ODP.NET 4 and its dependent components)
    echo   install.bat asp.net2  c:\oracle myhome true  (install ASP.NET Providers 2 and its dependent components)
    echo   install.bat asp.net4  c:\oracle myhome true  (install ASP.NET Providers 4 and its dependent components)
    echo   install.bat oledb     c:\oracle myhome true  (install OraOLEDB and its dependent components)
    echo   install.bat oramts    c:\oracle myhome true  (install ORAMTS and its dependent components)
    echo   install.bat basic     c:\oracle myhome false (install Oracle Instant Client)
    goto :EOF

  • Installing BI Publisher Desktop 10.1.3.4.1 for Windows

    Hi, Everyone,
    I have jus started to reasearch about Oracle BI Publisher.
    I have installed BI Publisher Desktop 10.1.3.4.1 for Windows on my machine.
    I am trying to connect to my oracle database. The version of my database in 11.1.0.6.
    I have opened Ms-Word 2007 and clicked on the Add-Ins tab and i am trying to login.
    I am lost as to how to connect to my server?
    After connecting how can i connect the BI publiser to my database?
    Could anyone guide me the steps to follow?
    Thanks a many...
    Regards

    The BI Publisher Desktop tool allows you to access your BI Publisher Enterprise server from your client PC. It does not provide any means to directly connect to your database.
    A basic installation of BI Publisher Enterprise shall be accessible via eg. http://appserver.mycompany.com:9704/xmlpserver and you can access it using the seeded credentials being Administrator / Administrator. You should use the same URL and credentials for the Template Builder add-in from MS Word.
    More information is available in our documentation:
    [Creating an RTF Template Using the Template Builder for Word|http://download.oracle.com/docs/cd/E12844_01/doc/bip.1013/e12187/T518230T518233.htm#4512010]

  • Problems installing 10G (r 10.2) on Windows 7 64-bit

    Hello. I am taking an introductory Oracle SQL class. The professor gave us a link to install Oracle 10g release 2, which I followed and performed on my Windows 7 64-bit laptop. The installation seemed to run through okay. When asked (again, per instruction), I created a database named CIS276 (the class name) instead of "orcl" as suggested during the setup. I am having problems getting connected to the database, however, and since the class is online, I can't go to our campus to sit down with the professor to work out where the trouble is, so I'm hoping somebody out here can help me. Here's where I am:
    I am able to get to the Enterprise Manager through the loopback address and port that was given to me during installation. I am able to log into EM using the SYS account with the password I entered during install. I get to a screen that has a button labelled "Startup/Shutdown." When I click that button, I am taken to a screen asking for Host credentials (OS account name and password) and database credentials (I use "SYS", the password I created, database is already filled in, and "SYSDBA" for "Connect as"). After entering this information, I click on OK. I get an error message at the top of the screen saying: "Couldnot contact the agent. Verify that the url for the agent is null." I looked up this string and a suggestion was to run " lsnrctl status"--I think (I've been trying a lot of things over the past couple of days to try to get this running) and the program replied that the environment variable "ORACLE_SID" wasn't set. I looked up what I was supposed to do and went into Windows 7 Environment area and set the value.
    I rebooted the computer and tried again and am still getting the same problem. So I Googled the error message again and saw a suggestion to stop and restart dbconsole. When I did that, I got an error (stopping and starting) telling me that I was denied access.
    At this point, I felt I'd better stop and get any suggestions from more experienced Oracle users. If anybody could give me some suggestions as to what to try next, I'd truly appreciate it.
    And one other question: when I followed the link to download Oracle, there was another download listed called something like "Companion Disk 2". Is this a necessary download or is it just extra stuff that I may not use for now?
    Thank you again.
    Eric S. Bauman

    Hi Eric,
    I thin your problem is not related to Operating System. Right now I also use Windows 7 64 bit. and the oracle database that i used is Oracle 10g (10.2.0.3) for windows vista 64 bit. still up and running good.
    "I am able to get to the Enterprise Manager through the loopback address and port that was given to me during installation. I am able to log into EM using the SYS account with the password I entered during install. I get to a screen that has a button labelled "Startup/Shutdown." When I click that button, I am taken to a screen asking for Host credentials (OS account name and password) and database credentials (I use "SYS", the password I created, database is already filled in, and "SYSDBA" for "Connect as"). After entering this information, I click on OK. I get an error message at the top of the screen saying: "Couldnot contact the agent. Verify that the url for the agent is null." I looked up this string and a suggestion was to run " lsnrctl status"--I think (I've been trying a lot of things over the past couple of days to try to get this running) and the program replied that the environment variable "ORACLE_SID" wasn't set. I looked up what I was supposed to do and went into Windows 7 Environment area and set the value."
    from your problem let's do it one by one:
    to run lsnrctl, from windows desktop--> click start menu -> on search program and files box type cmd, the start menu will change its appearance and it will show you black icon with names cmd.exe do right click on that icon then choose run as administrator. It will open DOS command prompt for you.
    on DOS prompt type : set ORACLE_SID=<your database name>, example : set ORACLE_SID=orcl then enter
    now you can execute your lsnrctl status from the prompt.
    in case you need to start listener you can use : lsnrctl start from previous DOS Prompt or you can start it via services.msc as follow : from windows desktop--> click start menu -> on search program and files box type services.msc then enter on window that open find oracle<oracle_home>TNS listener services then double click this services click on button start.
    as for the agent problem is not running try to check the services with names oracleDBConsole<dbname> is it run or not.
    hope it helps.

  • Problem installing 10g on unbreakable linux

    hi,
    I have
    Oracle unbreakable linux
    oracle 10.2.0.1
    I got this error while installing 10g on unbreakable linux
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-07-13_08-38-37AM. Please wait ...oracle@sphlpr-bldbs01 database$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2009-07-13_08-38-37AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    I tried this command
    $ rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep libXp
    I have following libxp already installed
    libXpm-3.5.5-3 (i386)
    libXp-1.0.0-8.1.el5 (i386)

    I've seen similar problems when I've forgotten to install all the required RPMs. So double check with the docs and the latest readmes, it might be your solution
    -Andy

  • Problems installing 10g on Suse Linux (Failed dependencies: libaio)

    I am having problems installing Oracle 10g on a Suse Linux Operating system. I get the following error message.
    # rpm -ivh oracle-xe-10.2.0.1-0.1.i386.rpm
    error: Failed dependencies:
    libaio >= 0.3.96 is needed by oracle-xe-10.2.0.1-0.1
    Can anyone help me with this?
    Message was edited by:
    user473930

    Please also read the install documentation. This has been noted as a requirement for oracle-xe (you need one more lib ;) ) This also helps you setup your DB, etc, etc.

  • Error installing 10g release 2 on Windows

    I am getting an error message of:
    'OUI-10151:There was an error while loading library: w32RegQueries'.
    Some specifics in case this helps:
    -Installing Personal Edition (using database for school)
    -Windows XP Home Edition SP2
    -1GB of RAM
    -previously had OracleXE installed on same system, and it was running fine. I have unistalled it following the directions outlined online.
    Thanks for any help,
    Jessica

    Oracle products are not certified, nor supported for Window Home Edition OS.
    But I have seen machines running on both.
    How are you Installing? from a cd or the files are found under a directory on your system?
    If from a directory make sure that when you unzip the zip file all the files are unzipped under their default folder, (usually disk1).
    And use a different oracle home.
    Hope this helps
    Tony Garabedian

  • Problems installing Development Suite Patch 10.1.2.3.0 on Windows 7 (32-bit)

    Hi all,
    I'm trying to install Oracle Development Suite 10.1.2.3.0 on Windows 7 (Service Pack 1 with fairly current Windows Updates) according to Metalink Document 1292919.1.
    Everything work just find until I try to install the 10.1.2.3.0 Patchset (Patch Number 5983622) as outlined in Step 5 of the aforementioned Document.
    During the step labelled "Copying files for 'Oracle Universal Installer 10.1.0.6.0" I get the following error message twice:
    "javaw.exe Entry Point Not Found"
    "The procedure entry point GetProcessImageFileNameW could not be located in the dynamic link library PSAPI.DLL".
    I acknowledged both of these messages and rest of the installation process runs fine.
    I'm not not sure about what to make of these messages, will my installation work correctly or will I have to cope with further issues related to this?
    My search on Metalink did not turn up any results related to the Development Suite. I already checked if there were multiple versions of psapi.dll were present on the system as mentionned in Documents regarding this problem while installing Oracle client 10.1.0.5.0 but there is only one.
    Any help is apreciated!
    Chris

    Hi Chris,
    Answer to the question is provided on threads:
    Install errors - Entry point not located in PSAPI.dll; Package load failure
    PSAPI.DLL installation error
    Hope this answers your question
    Thanks &
    Best Regards,

  • Having real problems installing new software been on updating I cloud now for 4 hours anyone else having this problem

    Having real problems installing new software I have been on the updating I cloud screen now for over  hours has anyone else experienced this?

    Glad I am not the only one its frustrating

  • Mark/Space releases version 4 of the Missing Sync for Windows Mobile OS

    Mark/Space has released the Missing Sync for Windows Mobile version 4, which offers many feature improvements. Among them, likely the most important is support for the Windows Mobile 6 operating system.
    A full list of what's new in this release is available here.

    I installed the beta version of Missing Sync last night. It seems to be working well (contacts and calendar). Note that only Bluetooth connections are supported and you must read the detailed instructions for getting this to work.
    I have yet to try a software installation.
    I tried running Activesync 4.2 within Virtual PC 7 but it was hopeless so needed a Mac solution.

  • New Release QuickVPN client 1.4.0.5 for windows 7 does not work????

    New release of QuickVPN client version  1.4.0.5  for windows 7 is not working properly.
    We can not connect; instead we receive this message:
    "Remote Gateway is not responding, do you want to wait?"
    Dear Cisco,,,,
    Your release is not complete; please correct issue and advise after it has been tested.
    Rgds, EM

    Hi, first disable this POLSTORE.DLL again in your QuickVPN-Folder. Then start in this folder IPSEC.MSC and than IPSEC.EXE. You should get from IPSEC.EXE  the error above. If not, than any other problem you have. Follow all the hints here in this thread.
    If you get the same error above, than enable this POLSTORE.DLL again and start the IPSEC.EXE. You get the full info what has been gone. And within the IPSEC-Window for Local Computer you may find this FREESWAN-setting.
    B.t.w. before I went this way I did export and import the IPSEC-settings from the XP-machine, as it was hinted some posts earlyer. But the way I have gone, works also with manualy deleting the FREESWAN config. With the IPSEC.EXE it will new generated in any case.
    When you start via QuickVPN you may monitor also what happens within this IPSEC for Local Computer. Press F5 to keep it aktual.
    From time to time the connection gets only succeeded after the second and more times. I have a very slow UMTS Internet-Access.
    Juergen
    Adding: These effects, getting not connected, first and during the VPN-Tunnel exists, has not changed since the top-first Version of Quick-VPN.
    Dear customer, be patient, don't care about these stupid messages, click again or when the connection allready has succeeded through the VPN-tunnel do what you did like to do.
    ...... and again, with which configuration-scenario do the guys at Cisco test and develop .....
    Fortunately, I never was a Cisco partner, only a poor user ;)

  • Please give me a link so i can dand install my adobe flash pownload layer 10 or higher for windows 7

    please give me a link so i can download and install my adobe flash player for windows 7 home edition 64 bit, thank you.
                           John M.

    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header

Maybe you are looking for

  • SSO (single sign on) on NetWeaver 7.0 Enterprise Portal based on spnego with Microsoft Active Directory

    Hi, we are using SAP Netweaver Enterprise Portal 7.0 (SP25) based on Windows 2008 R2/Oracle 11g. When we setup the Portal, we used the UME of the ECC - ABAP. The portal is used internally only. Now we want to provide SSO. User authenticate against Wi

  • Why is my iPod touch getting slower and slower

    Please can anyone tell me why my iTouch is getting slower and slower? also why do we have to do so many updates? Can I go back to the original software for my ipod touch? sorry for so many questions but they are related

  • ITunes won't open... says the file 'iTunes Library.itl' cannot be read because it was created by a newer version of iTunes.

    Every time i click the shortcut or the app in the start menu it comes up with that message :/ i have tried replacing the shortcut and opening one of my songs. I just updated iTunes to the latest version and I don't know what to do? Thanks for any tip

  • ATV General Bad Behavior

    I don't know if I can blame these recent bugs on the new update or a tired ATV - several years old - but I've suddenly got a lot. It started with audio dropping out after one or two songs. Hitting pause and then play usually returned the audio but on

  • PDF/X-1a:2001出力データが重くなった

    Mac OSX ver10.6.8でinDesign CC ver.9.2を使っています. 制作物の第2版を作ってPDF/X-1a:2001出力したところ.今年6月に入稿した初版のデータサイズの2倍強のデータとなってしまいました.変更点はテキストのみです. おかしいと思い.初版のデータをPDF/X-1a:2001で出力し直してみたら.やはりデータサイズが大きくなっています. どうしてでしょう. その期間にやったことといえば.Acrobat11proを体験版でインストールしてみたことぐらいです.現