Network card not found after new installation [SOLVED]

I broke my filesystem on my Asus UL80V series laptop in trying to solve problems related to the latest glibc update, so decided to do a clean re-install. I had an installation disk at hand: 2009.08 with kernel 2.6.30.4-1 (which is supposed to have the module for my ath9k network device). However after a successful installation (including all the files from base-dev), my network device is not recognised:
dhcpcd: eth0: interface not found or invalid
although network connectivity (wired and wireless) worked perfectly before the installation attempt.
This happened yesterday (17th) and I have been scouring the web since trying to find out what the cause of this problem is, without luck.
I also burned a new installation CD with the latest stable version, but no luck there, either! Got a message at the beginning informing me that the install requires 64 Mb memory, although my laptop has 4 Gb.
I should say, the device is there and working:
lspci | grep Net
gives
02:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
I also did
modprobe ath9k
just to make sure. No luck.
Any help will be appreciated.
thanks
thea
Last edited by thea (2012-07-23 23:59:16)

Argh, ip may not be around in the 2009 image really ;-) .. Use "ifconfig" instead..
But: I meanwhile cross-checked your ath9k: http://wireless.kernel.org/en/users/Dri … h9k_driver
and it does not sound encouraging for the kernel you have there.
The image is far too old anyway, if you ask me (would be a darn hazzle to get that uptodate I am sure). Pity you get that memory error with the 2011 one. Maybe check forums on that. Sounds very strange, I am not aware of any post I read.
If you can burn another CD, you can try the recent ISOs as well: http://releng.archlinux.org/isos/
Beware that the ones from July dont have the AIF setup anymore.

Similar Messages

  • Startxfce4 does not work after xfce4 installation [solved]

    When I
    # startxfce4
    I get no such file
    When I
    # /opt/xfce4/bin/startxfce4
    I get a lot of "not found" xfce4 modules (i.e. xfce4-session)
    When I put "exec startxfce4" in /.xinitrc, same thing ahppens
    ideas?

    Try logging out and logging back in.  Xfce is going to set some profile stuff for you that it needs.

  • Some Java applets do not work after silent installation, solved by toggling "Enable Java content in the browser" - Why?

    We have about 1,800 workstations running Windows 7 (both 32-bit and 64-bit) running various versions of the Java JRE from 6 update 32 through 7 update 51.  Most are on 6 update 45.  We would like to standardize on Java 7 update 51 (32-bit) and get everyone updated to that version for security reasons.
    For the past two weeks, we have been having trouble with our installation pre-pilot.  What we are seeing is that our procedure successfully closes any open Internet Explorer windows and Java-related processes, uninstalls all old versions of the Java JRE, and then claims to have successfully installed Java 7 update 51.  The Java Control panel works.  We can even take Internet Explorer to Verify Java Version or Java Tester - What Version of Java Are You Running? and confirm that the Java applets on those sites are loading (though the latter only works after adding the site to the exceptions site list); however, when testers try to access our Kronos Workforce Central 6.3.10 system, the Java applets used by that system do not load.
    We have tried the following things, none of which worked:
    Clear Internet Explorer browser cache and cookies.
    Clear the local Java cache.
    Reboot the computer.
    Reset Internet Explorer settings, including personal settings.
    The one thing which does work is going into the Java Control Panel, going to the Security tab, unchecking "Enable Java content in the browser", pressing Apply, pressing OK on the pop-up window, checking the "Enable Java content in the browser" box again, pressing OK, pressing OK on the pop-up window, and then restarting Internet Explorer.  It is only after this point that all Java applets, including the ones used by Kronos Workforce Central 6.3.10, work.
    What I need to know is how I can automate the procedure of reinitializing the "Enable Java content in the browser" checkbox after installation or am I doing something wrong or missing a step in the automated installation that is causing this to happen?
    We are using Microsoft SCCM 2007 R3 to accomplish this upgrade, and everything is being run on the client machine using the SYSTEM account.  First, the PowerShell script "javaclean.ps1" is run, with part of the command-line process changing the PowerShell script execution policy to Bypass.  This script handles the closing of Java-dependent applications and Java processes and uninstalls old Java versions.
    javaclean.ps1:
    #Find all Java products excluding the auto updater which actually gets uninstalled when the main install is removed.
    write-host "Searching for all installed Java versions" -ForegroundColor Yellow
    [array]$javas=Get-WmiObject -query "select * from win32_Product where (Name like 'Java %' or Name like 'Java(TM)%' or Name like 'J2SE%') and Name <> 'Java Auto Updater'"
    if ($javas.count -gt 0)
        write-host "Java is already Installed" -ForegroundColor Yellow
        #Get all the Java processes and kill them. If java is running and the processes aren't killed then this script will invoke a sudden reboot.
        [array]$processes=Get-Process -Name "Java*" #-erroraction silentlycontinue
        $processes += Get-Process -Name "iexplore" #-erroraction silentlycontinue
        $processes += Get-Process -Name "firefox" #-erroraction silentlycontinue
        $processes += Get-Process -Name "chrome" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jqs" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jusched" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jp2launcher" #-erroraction silentlycontinue
        if ($processes.Count -gt 0)
            foreach ($myprocess in $processes)
                $myprocess.kill()
        #Loop through the installed Java products.
        foreach($java in $javas){
            write-host "Uninstalling "$java.name -ForegroundColor Yellow
            $java.Uninstall()
    After this script is complete, SCCM calls a the VBS script "install.vbs" to perform the actual installation of Java JRE 7 update 51.
    install.vbs
    '* Script: Install JRE 7 routine
    '* Date:   3/14/14
    '* Author: [REDACTED]
    '* Rev:    1.0
    '* Notes: 
    '/// Common
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objWshShell = CreateObject("WScript.Shell")
    ' Get system architecture
    Dim colSys : Set colSys = GetObject("WinMGMTS://").ExecQuery("SELECT AddressWidth FROM Win32_Processor",, 48)
    Dim objSys
    For Each objSys In colSys
        If objSys.AddressWidth = 64 Then bolIs64Bit = True
    Next
    ' Get operating system
    Dim colOS : Set colOS = GetObject("WinMGMTS://").ExecQuery ("Select * from Win32_OperatingSystem",,48)
    Dim objOS
    For Each objOS In colOS
        If Left(objOS.caption, 20) = "Microsoft Windows 8 " Then
            bolIsWin8 = True
            WScript.Echo "win8"
        End If
        If Left(objOS.caption, 22) = "Microsoft Windows 8.1 " Then
            bolIsWin81 = True
            WScript.Echo "win81"
        End    If
    Next
    ' Set 32 bit program files directory
    If bolIs64Bit = True Then
        strPFILES = "Program Files (x86)"
        strSYSDIR = "SysWOW64"
        Else strPFILES = "Program Files"
        strSYSDIR = "System32"
    End If       
    ' Set windows directory
    strWIN = objWshShell.ExpandEnvironmentStrings("%windir%")
    ' Set the current directory
    strCurrentDir = objFSO.GetParentFolderName(Wscript.ScriptFullName)
    ' Set computer name
    strCompName = objWshShell.ExpandEnvironmentStrings("%computername%")
    '/// Main script
        '/// Install via .msi & capture exit code
        'intExitCode = objWshShell.Run("msiexec.exe /i """ & strCurrentDir & "\package.msi""" & " TRANSFORMS=""" & strCurrentDir & _
        '    "\transform.mst"" ALLUSERS=1 Reboot=ReallySuppress /qn", 8, True)
        'wscript.quit(intExitCode)
        '****RUN COMMANDS HERE****
        ' Create folder structure if it doesn't exist already   
        strFullPath = "c:\Windows\Sun\Java\Deployment" '
        ' How many levels are there in the path?
        nLevel = 0
        strParentPath = strFullPath
        Do Until strParentPath = ""
            strParentPath = objFSO.GetParentFolderName(strParentPath)
            nLevel = nLevel + 1
        Loop
        For iLevel = 1 To nLevel
            ' Figure out path for directory at level iLevel
            strParentPath = strFullPath
            For j = 1 To nLevel - iLevel
                strParentPath = objFSO.GetParentFolderName(strParentPath)
              Next
        ' Does this directory exist? If not, create it.
            If objFSO.FolderExists(strParentPath) = False Then
                Set newFolder = objFSO.CreateFolder(strParentPath)
            End If
        Next
        ' Kill running processes
        objWshShell.Run "taskkill /F /IM iexplore.exe", 8, True
        objWshShell.Run "taskkill /F /IM firefox.exe", 8, True
        objWshShell.Run "taskkill /F /IM chrome.exe", 8, True
        objWshShell.Run "taskkill /F /IM javaw.exe", 8, True
        objWshShell.Run "taskkill /F /IM java.exe", 8, True
        objWshShell.Run "taskkill /F /IM jqs.exe", 8, True
        objWshShell.Run "taskkill /F /IM jusched.exe", 8, True
        ' Copy deployment files
        objFSO.CopyFile strCurrentDir & "\deployment.config", "c:\Windows\Sun\Java\Deployment\", True
        objFSO.CopyFile strCurrentDir & "\deployment.properties", "c:\Windows\Sun\Java\Deployment\", True
        ' Disable UAC
    '    If bolIsWin8 Or bolIsWin81 = True Then
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v PromptOnSecureDesktop /t REG_DWORD /d 0 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f", 8, True
    '    End If
        ' Install application
        intExitCode = objWshShell.Run("msiexec.exe /i """ & strCurrentDir & "\jre1.7.0_51.msi"" IEXPLORER=1 AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 WEB_JAVA=1 ALLUSERS=1 Reboot=ReallySuppress /qn", 8, True)
        ' Enable UAC
    '    If bolIsWin8 Or bolIsWin81 = True Then
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v PromptOnSecureDesktop /t REG_DWORD /d 1 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 5 /f", 8, True
    '    End If   
        wscript.quit(intExitCode)
        '/// Install via .exe on network
        'objWshShell.Run """" & strCurrentDir & "\Setup.exe"" -s -sms -f1""" & strCurrentDir & _
        '    "\setup.iss"" -f2""" & strWIN & "\Temp\Install-app.txt""", 8, True
        ' Need to turn off the open file security warning first
        Set objEnv = objWshShell.Environment("PROCESS")
        objEnv("SEE_MASK_NOZONECHECKS") = 1
    '    intExitCode = objWshShell.Run("""" & strCurrentDir & "\jre-7u45-windows-i586.exe"" /s /v""/norestart " & _
    '        "TRANSFORMS=""" & strCurrentDir & "\Tribe-jre7.mst""""", 8, True)
    '    WScript.Quit(intExitCode)
        '****RUN COMMANDS HERE****
        ' Then turn it back on
        objEnv.Remove("SEE_MASK_NOZONECHECKS")
    '/// Additional functions
    Help on this issue would be much appreciated!

    It turns out that this is actually a problem with Kronos Workforce Central.  We had the "site.java.plugin.CLSID.familyVersion" setting in that application set to "clsid:CAFEEFAC-0016-0000-FFFF-ABCDEFFEDCBA", which is the Java CLSID for Java 6.  After updating this value to "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" (the Java universal CLSID), this problem did not occur upon the automatic upgrade of Java.
    We have both Java 6 and Java 7 in our environment, and did during our Kronos implementation, so I don't know why we were using the Java 6 CLSID in the first place.
    Case closed!

  • Satellite L450D Webcam not working after new installation without recovery

    Hi there,
    as posted in the thread title I have a problem with the integrated webcam of a customer notebook. Two days ago the operating system of this laptop was damaged by a virus and needed to be re-installed. I tried to install it with the recovery partition, which did not work. After it I tried to re-built it with the dvd I burned from the recovery partition with the same result.
    The only thing that worked was a clean install with a windows 7 64 Bit retail dvd and the key printed on the sticker of the laptop. I managed to get everything working again except one part - the webcam.
    No driver installation, bios update and re-installation worked to get this part to work.
    Did anyone of you know this problem and have a fix for me?
    Thanks in advance.
    Greetings Saphire
    P.S.: One thing shall be also important. When I look into the installed devices manager the driver for the webcam is listed as usb webcam and the manufaturer of it is Microsoft.

    Hi
    I dont think that this needs to be fixed because I dont think its hardware related issue.
    I think there is something wrong with the software on your notebook.
    I mean everything worked perfectly until virus has damage the OS. Right?
    You said this:
    >I tried to install it with the recovery partition, which did not work. After it I tried to re-built it with the dvd I burned from the recovery partition with the same result.
    I really wonder why you could not get this working using Recovery disk.
    So possibly this is the key to this issue
    On the Toshiba European driver page I could find Registry Patch v1.1 For Win 7 64bit
    Also webcam driver v 1.1.1.4 is available there
    I think the OS is responsible for your issue possibly some patches are applied or similar

  • MBAM console not accessible after new installation and self service re-direct to give foreign key issue

    Hello Everyone,
    i am novice to MBAM and i have gone thru the virtual lab and material and i am in process of implementing it for my Organization. i am having 2 issues :-
    1) After installation, i am confused how to access the console or does there is no Admin console and it is just servername:portnumber\helpdesk only.
    2) If i enter just servername:portnumber\ then it get redirected to selfservice portal which is not an issue. Issue is after accepting agreement and clicking continue i am getting below error :-
    A required anti-forgery token was not supplied or was invalid. 
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.Web.Mvc.HttpAntiForgeryException: A required anti-forgery token was not supplied or was invalid.
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
    Stack Trace: 
    [HttpAntiForgeryException (0x80004005): A required anti-forgery token was not supplied or was invalid.]
       System.Web.Mvc.ValidateAntiForgeryTokenAttribute.OnAuthorization(AuthorizationContext filterContext) +546706
       System.Web.Mvc.ControllerActionInvoker.InvokeAuthorizationFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor) +128
       System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +658100
       System.Web.Mvc.Controller.ExecuteCore() +125
       System.Web.Mvc.<>c__DisplayClass8.<BeginProcessRequest>b__4() +48
       System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +21
       System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +15
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +85
       System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +51
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +454
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +263
    I have checked and usersupportservice.svc is leading to the pade giving below page which i believe it is working OK or kindly correct me if i am thinking wrong :-
    This is a Windows© Communication Foundation service.
    Metadata publishing for this service is currently disabled.
    only thing which i deviated from process was because of some condition i have to rename my MBAM server before installation however by before rename SQL and IIS was installed.
    i will really appreciate any help in this regard.

    If that is the only link or admin console as well then if anyone can confirm what rights difference a user get when he is member of MBAM helpdesk, MBAM Advanced Helpdesk and MBAM Administrator group.
    Also if i can get any help with the self service portal redirection then that will be really helpful. i was also checking if this could be because of any kind of certificate issue as server name was renamed after SQL and IIS installation.

  • Wifi card not connected after kernel update [solved]

    Hi,
    I've got a broadcom wifi card (BCM43225). Having deconnections with the brcmsmac driver, I changed for wl (from broadcom archive).
    Today I updated the system and got the b43 driver. My wifi card would'nt see any network. On the networkmanager applet (gnome 3), tab "network parameters", it says "disconnected" and i can't find a way of reconnect my card.
    I rebuilt the wl driver, it works as for the b43 (wifi card on) but still it's disconnected.
    Extract of dmesg shows:
    ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Any idea ?
    Thanks
    Last edited by grojo (2011-12-18 08:22:35)

    It's weird: I had already installed b43 firmware from AUR but it didn't work (kernel 3.0). As I yaourted b43-firmware it said: "reinstall ?".
    So I reinstalled and it f***ing works.
    I'm not sure I got what happened...
    Thank you though.

  • Why is my external USB audio card not found after Lion install

    Above says it all.  Since installing Lion my external USB audio card is not recognized.  This is a very plain vanilla card.  I worked fine with Snow Leopard.  No additional drivers required.  But with Lion, nada.  Any help would be greatly appreciated.

    It just happened to me. Exactly as Ritcho described. After install fine, after restart, gone. FYI for anyone with the same issue as I had. I was using a Diamond USB dongle to connect my external monitor to the iMac, it was legacy from when I was running a couple of external monitors from my MacBook Pro using them. I took the dongle out of the chain and replaced with a standard Apple DVI to Mini DVI adapter and plugged it into the mini dvi port in the iMac and I was golden. Now to sell the Diamond dongles.

  • Airport card "not found" after Leopard upgrade

    This may be an unrelated fluke, but it seems quite odd.
    After a client upgraded to Leopard, her Airport card is suddenly not seen by the computer. I have reseated the card, but get the same result. It doesn't show up in system profiler, either.
    Was curious as to whether anyone had seen this, or similar symptoms, before I grab a replacement card to see if that is in fact the problem.

    I have the exact same problem. I do not have a macfixit account.
    I expect the information I need to repair a a bad update from Apple would be on the Apple Discussions forum.
    Is there any way I can get this information without having to spend $24?

  • Execute Package Task Not Working After New Installation VS2012

    After installing VS2012 Update 4, the execute package task runs the child package out of order.
    The same version of VS is being used as the old computer (same everything, SQL 2012, OS...).  The solution works correctly on machines where VS2012 was installed prior to July 2014.  I've downloaded the BIDS, SSDT.
    Anyone else have the same problem?  I have yet to find anywhere on the internet where someone has reported the same issue.  It has happened on multiple computers since August 2014.

    How to reproduce?
    It is not very likely, but did you try searching MS Connect for this issue?
    Arthur
    MyBlog
    Twitter

  • Web Pages do not display after new installation on Windows 2008 64 bit

    Hi All...
    Environment: Window 2008 64 bit.
    Installing: Latest WebTools compatible with 64 bit.
    Installed: 2.0 asp.net
    After installing webtools in this environment we attempt to register/request the license.
    After clicking on the request - windows prompts you to open.
    If you attempt to open, you are asked which program to open with...?
    That seems odd.
    At this point this is all I have and am stuck as the system is inaccessible.
    Rob.

    Bryce...
    This did help.
    Also - I discovered that the webserver was not previously connected to the domain and was not inheriting permissions.
    Steps Taken:
    Uninstalled the IIS and ASP Roles from the web server as local server administrator.
    Joined web server to domain.
    Added the IIS and ASP Role.
    Re-installed webtools.
    Registration launched - no exceptions.
    Gracias.
    Rob

  • Administrative screen not found after portal installation

    I installed Portal 3x on solaris. Eventhough I can login, I
    could n't see administrative screen at the portal. I logged using
    portal30 username.
    http:hostname:7777/pls/dad
    Logged using portal30 username.
    What is the default administrative user name. If it is not
    portal30, how do I set it up? Do I have to logon to the portal
    administrative screen? Is it a different URL?
    Your reply is appreciated.
    Thanks.

    Argh, ip may not be around in the 2009 image really ;-) .. Use "ifconfig" instead..
    But: I meanwhile cross-checked your ath9k: http://wireless.kernel.org/en/users/Dri … h9k_driver
    and it does not sound encouraging for the kernel you have there.
    The image is far too old anyway, if you ask me (would be a darn hazzle to get that uptodate I am sure). Pity you get that memory error with the 2011 one. Maybe check forums on that. Sounds very strange, I am not aware of any post I read.
    If you can burn another CD, you can try the recent ISOs as well: http://releng.archlinux.org/isos/
    Beware that the ones from July dont have the AIF setup anymore.

  • SB04100 Sound Blaster Card not working after computer rebuild

    =SB0400 Sound Blaster Card not working after computer rebuildZ I did a full disk format and reinstall for a friend on a Dimension 3000, running XP SP3. There is no sound at all. Speakers are good, tested on another system. Model number on the back of the sound card is SB0400, so I assume this is an older 24 bit PCI SoundBlaster card. Although I reinstalled all drivers from Dell, I found no drivers for this. The Creative site has no listing for this model.
    Computer does not seem to recognize the card. Have not opened the box yet but I assume if I were to remove and then reinstall the card it would be recognized (?) I then have to find an SB0400 driver.
    Does anyone know where I can find an SB0400 driver ? Does the strategy of pulling and reinstalling the card make sense ? (I have really avoided tampering with any of the hardware on this box -- since it is not mine.)

    Re: SB0400 Sound Blaster Card not working after computer rebuild? Thanks much for your response. Problem solved for now. I removed the board and then reinserted it, after which I was able to download the drivers directly. Some of my difficulty with this whole process has been ) I didn't know there was no working speaker in the computer and 2) I apparently misunderstood the BIOS settings for this. I re-set it up as an add-on board during the troubleshooting process. After loading the driver, I went back to the original setting (don't recall what it was but it was for integrated sound). The setting for integrated sound works fine, with external speakers and the new 24 bit driver. Still some noise (popping and static) but this board shares the bus with 2 other cards one of which is a wireless network card. May be a PCI latency issue but I'm reluctant to change that because the network card is a bit shaky anyway.
    Everything works for now -- I'll be glad to get this particular computer out of my house !

  • Can't start UCM server after new installation of 11.1.1.8 on Microsoft server 2008 R2 SP1 64 bit EE

    Hi All
    After new installation of WCC 11.1.1.8 on Microsoft server 2008 R2 SP1 64 bit EE UCM_server1 can’t start. (Please see trace below). WCC 11.1.1.7 run without issues on this environment.
    Steps:
    1. Installation of jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    2. Installation of WLS 10.3.6
    3. Installation of WCC 11.1.1.8
    4. Schema creation by RCU 11.1.1.8
    5. Domain creation by config.cmd with AdminServer, UCM_server1, IBR_server1
    6. Run Admin - (success)
    7. Run NodeManager (optional) - (success)
    8. Run UCM_server1 – failed
    Still not works after patching MLR 1 for WCC 11.1.1.8 or upgrade from 11.1.1.7 .
    From log files we can saw that problem caused by JniNativeOsUtils.dll file in “<Middleware Home>\Oracle_ECM1\ucm\idc\components\NativeOsUtils\lib\windows-amd64\7.2.1.1”
    I replaced JniNativeOsUtils.dll with same file from 11.1.1.7 version and UCM_server1 starts work
    I got errors during startup (syNativeOsUtilsNotLoaded and UnsatisfiedLinkError - you can foun them in trace below), but WCC up and works.
    I also get error when trying to start SystemProperties or ComponentWithard utility:
         Activation context generation failed for "C:\Oracle\MIDDLE~1\USER_P~1\domains\WCC_DO~1\ucm\cs\bin\SystemProperties.exe". Dependent Assembly      Microsoft.VC80.MFC,processorArchitecture="amd64",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.762" could not be found. Please use sxstrace.exe for detailed diagnosis.
    Any ideas?
    Thanks
    Leon
    ERROR:
    javax.servlet.ServletException: Could not start up IDC server deployment.
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1268)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.io.IOException: csServletFailedToFullyInitialize
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException:
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:252)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.data.DataException: !Install aborted.
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:554)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException: !csInitSecurityError
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:140)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException: !syFileUtilsUnableToCreateSpecifiedDir,C:/Oracle/MIDDLE~1/USER_P~1/domains/WCC_DO~1/ucm/cs/config/private
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:570)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:76)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:574)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.AssertionError: !syNativeOsUtilsNotLoaded
      at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:452)
      at intradoc.common.NativeOsUtilsBase.<init>(NativeOsUtilsBase.java:360)
      at intradoc.common.NativeOsUtils.<init>(NativeOsUtils.java:28)
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.UnsatisfiedLinkError: intradoc/common/NativeOsUtilsBase.getNativeVersion()Ljava/lang/String;
      at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:448)
      at intradoc.common.NativeOsUtilsBase.<init>(NativeOsUtilsBase.java:360)
      at intradoc.common.NativeOsUtils.<init>(NativeOsUtils.java:28)
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Hi All
    Cause of the problems was the missing of "Visual C++ 2005 SP1 Redistributable Package"
    Environment works fine after installation of both versions (x86 and x64)
    Thanks
    Leon

  • CS6 photoshop not found after downloading and putting in serial number

    CS6 photoshop not found after downloading and putting in valid serial number. Only extended version shows up as available. How do I just download CS6 photoshop only??
    Thanks!

    Nowhere during the installation does it give me the option to select the previous version I purchased! This is a new install on a new computer because my other computer no longer works. There is no option for me to select CS6 PS (NON EXTENDED) on the download from Adobe! When I install it only installs the extended version and tells me my serial number is valid but not for the extended. When you provided the link to the page that has the downloads, all that loads is the extended version. Can you please give me a link to the CS6 (not extended) so I can get back to work? I also was able to get the hard drive out of my computer that no longer works and put it on my new computer I'm trying to install CS6 on and the installer gave me NO OPTIONS to enter my old serial#.
    This is beyond frustrating!!!! I have a computer go out on me, and have to buy a new computer, then when I try to install CS6 PS it will not install. In the meantime I'm trying to keep my small business going to stay in business. I can't call any one from adobe. All I can do is send emails to get this resolved and wait.
    Please please help me!

  • SCCM Install fails. cannot connect to SQL server. "the network was not found"

    Hi,
    I'm installing SCCM 2012. i have a 2 server boxes. 1x sccm and 1x dedicated SQL. sccm installation is stuck @ connecting to DB.
    SQL server is 2012 with SP2, static 1433 port used.installation account used is already sysadmin, sccm computer account also added into SQL local admins. ports 1433, 4022, 445 are already FW open in between SCCM box and SQL Box?
    error pop up" "the network was not found"
    Pls advise.

    if MS is really doing good job then such things (scCm on remote sql) should be easy for us with proper docs. Cheers!
    The docs are "proper". They give you all the technical details needed. They assume however that you know how to translate the stated requirements, like the ports necessary (as documented at
    http://technet.microsoft.com/en-us/library/hh427328.aspx ), into the environment you are working in. They cannot give you a click by click guide because that would only be applicable to
    generic lab environments.
    Sorry that that may sound a bit harsh, but it is reality. They simply have no idea what customer networking environments actually look like as the possibilities are simply unbounded. They must rely on the implementer being able to take the core technical
    requirements and implement them for the uniqueness of the environment they are working in. In most cases, this is generally straight-forward, but there is a great deal of variety in the real-world.
    Jason | http://blog.configmgrftw.com | @jasonsandys

Maybe you are looking for

  • OS 10.4.6 and display connector

    In March I got a G4 Mini to replace my old Mac. In the formidable process of getting all my functions to work on the Mini, I would have to swap computers several times, so I did not screw the connector from my monitor to the adapter on the Mini. In a

  • InDesign CS/CS2 Mac - making a target-specific macro

    Hello. This is more a CodeWarrior question than an InDesign question, but because the difficulty is caused by the SDK, I am asking the question here. If anyone objects to the question, I recommend not responding. I want to do this in one of my projec

  • Do Express VI's attach to specific hardware?

    I'm teaching introductory LabVIEW programming to undergraduate students. We're using Express VI's to read input from USB connected cDaq hardware. We have ten identically configured computers, including the LabVIEW software and USB connected hardware.

  • Mapping an attribute to different classes

    I have a class, A that contains an attribute called "state" of type State. Class State is an abstract class that contains 2 methods. Classes ActiveState and CompletedState extend State and none of them have attributes. They only implement the 2 metho

  • How do I change Chinese headings and Icons back to English after updating my iPad ?

    How do I change Chinese headings and Icons back to English in Safari after updating my iPad?