Vbscript sendkeys to a chosen window

I would like to send simple letters and numbers to a window. I tested it in another notepad, and it works. But when I start it and click on the window (a game actually..), nothing happens. Do you have any idea? I think I'm missing only one command

I would like to send simple letters and numbers to a window. I tested it in another notepad, and it works. But when I start it and click on the window (a game actually..), nothing happens. Do you have any idea? I think I'm missing only one command
Questions for VB Script should be posted in the
VB Script Forum.
Hello. I'm old and retired. I like to program if you could call what I do programming. However I'd like to code for you! If you've got the dime then I've got the time. Call me, landline, @ BR-549.

Similar Messages

  • VBscript - Enter a value (variable windows) on the path of downloading the installation file

    Hello All,
    My name is Diego and i need so much help with this VBscript,
    The script works well but I just need to call (SRV) windows System variable
    that contains the name of the local server.
    All client machines (winxp) already have a system variable name (SRV) with
    value (name of local server)for example SRVADS001, because in our environment
    we have many offices with low-speed links, so need to get the download installation  file on the local serverr, so we avoid bandwidth consumption.
    How i can Call SRV Variable and puts it on path
    FULL_INSTALL_PATH = (INSTALL_PATH & STR_PARAMETERS) ?
    I need that the installation path of the file is correct to all offices, each office has a local server defined on Windows XP variable System :
    INSTALL_PATH = Chr (34) & "\\SRV (Variable)\Agent\AgInstall.exe" & Chr (34)
    FY = The SRV variable just contains the name of local server, do not contain \\
    VBscript
    ' Variable Declarations
    '==================================
    Dim ipAddress, agentVersion, dataPath, xmlDoc, ElemList, regExist
    Dim REQUIRED_AGENT_VERSION
    Dim REQUIRED_SERVER_IP
    Dim INSTALL_PATH
    Dim STR_PARAMETERS
    Dim FULL_INSTALL_PATH
    '======================================
    ' MUST CHANGE VARIABLES IN THIS SECTION
    '======================================
    REQUIRED_AGENT_VERSION="4.6.0"
    REQUIRED_SERVER_IP="192.168.1.100:12300"
    INSTALL_PATH = Chr(34) & "\\Server\NETLOGON\AgInstall.exe" & Chr(34)
    STR_PARAMETERS = " /FORCEINSTALL /INSTALL=AGENT /INSTDIR=" & Chr(34) &
    "%PROGRAMFILES%\Framework\" & Chr(34) & " /SILENT"
    FULL_INSTALL_PATH = (INSTALL_PATH & STR_PARAMETERS)
    '======================================
    ' END CHANGE VARIABLES SECTION
    '======================================
    Const HKEY_LOCAL_MACHINE = &H80000002
    CheckRegExist()
    If (regExist=TRUE) Then
    '==================================
    ' Get Registry Values
    '==================================
    agentVersion = ReadReg("HKEY_LOCAL_MACHINE\SOFTWARE\Network\Framework\Data
    Path")
    'WScript.Echo "Agent Version: " & agentVersion
    dataPath = ReadReg("HKEY_LOCAL_MACHINE\SOFTWARE\Network\Framework\Data Path")
    'WScript.Echo "Data Path: " & dataPath
    '==================================
    ' Read XML Sitelist
    '==================================
    Set xmlDoc = CreateObject("Msxml2.DOMDocument")
    xmlDoc.load(dataPath & "\SiteList.xml")
    Set ElemList = xmlDoc.getElementsByTagName("SpipeSite")
    ipAddress = ElemList.item(0).getAttribute("ServerIP")
    ' MsgBox ipAddress & " " & InStr(REQUIRED_SERVER_IP,ipAddress)
    '==================================
    ' Check Agent Version, ServerIP
    '==================================
    IF (agentVersion<REQUIRED_AGENT_VERSION) OR InStr
    (REQUIRED_SERVER_IP,ipAddress) < 1 THEN
    InstallNewAgent(FULL_INSTALL_PATH)
    'MsgBox("Your agent is now up to date and configured correctly.")
    ELSE
    'MsgBox("Your agent is currently up to date and configured correctly.")
    END IF
    'Install Agent if Reg Does NOT exist
    ELSE
    InstallNewAgent(FULL_INSTALL_PATH)
    END IF
    '==================================
    ' Registry Reader
    '==================================
    Function ReadReg(RegPath)
    Dim objRegistry, Key
    Set objRegistry = CreateObject("Wscript.shell")
    Key = objRegistry.RegRead(RegPath)
    ReadReg = Key
    End Function
    '==================================
    ' Agent Installation
    '==================================
    Function InstallNewAgent(FULL_INSTALL_PATH)
    Dim wshShell
    Set wshShell = WScript.CreateObject ("WSCript.shell")
    ' MsgBox("Installing New Agent...")
    wshshell.run FULL_INSTALL_PATH, 6, True
    set wshshell = nothing
    End Function
    '==================================
    ' Check if Reg Key Exists
    '==================================
    Function CheckRegExist ()
    Dim strComputer, objRegistry, strKeyPath, strValueName, strValue
    strComputer = "."
    Set objRegistry = GetObject("winmgmts:\\" & strComputer & "\root
    \default:StdRegProv")
    strKeyPath = "SOFTWARE\Network\Shared Components\Framework"
    strValueName = "Version"
    objRegistry.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue
    If IsNull(strValue) Then
    'Wscript.Echo "The registry key does not exist."
    regExist=FALSE
    Else
    'Wscript.Echo "The registry key exists. (" & strValue & ")"
    regExist=TRUE
    End If
    End Function

    If you want to use run with a variable then this is how:
     wshshell.run 
    "cmd /c \\%SRV%\Share\AgInstall.exe"
    By running a command under CMD you can get the env variable converted.  By itself
    it won't convert.
    The Chr(34) are not needed here.
    Converting in VBScript As I posted is better usually:
    var = Shell.Environment("process")("SRV")
    wshshell.run  "\\" & var & "\Share\AgInstall.exe"
    ¯\_(ツ)_/¯

  • Bring window to front - appactivate does not help :(

    Hello
    I am coding with vbscript.
    I have a need to make certain that sendkeys commands are sent to the proper program.
    I can use this to activate a window:
    success = WshShell.appactivate("MyProgram")
    if success then WshShell.sendkeys "(% ) N"
    But in Windows XP and 7 the window does not come to front. The program is activated, BUT left blinking on the taskbar below. And the key N is sent to any program that is currently open on top, for example windows explorer, which now minimizes.
    How can i make sure that the command "(%) N" is sent to MyProgram? I have not been able to find a solution for this dilemma.

    Thanks for the info
    The developer replied the situation cannot be changed.
    Is there other, a better way, i could send key commands to the program, instead of sendkeys?
    The concensus here is 'No'.  You cannot do what yo aretrying to do.  The developer should be able to explain why.  We have tried.
    Window sprotect its programs well.  It attempts to prevent rogue capture of teh mouse input while allowing for a certain amount of automation.  SendKeys is rapdly coming into disuse due to changes to the way Windows forms are generated and managed.
    If a developer wants to allow remote control then they will provide an automatin intreface that will allow you t ocommunicate with teh program.. Ideas like 'SendKeys' are a leftover from DOS basic and Windows 98 and earlier.  Microsoft has made no attempt
    to keep thi sworking in newer systems while it still supports most existing use of teh feature.
    What you are trying to do is 'LEGACY'.
    Perhaps if you reqord your question to ask how to accomplish some objective then we can point you at a solution.  SendKeys is not that solution.
    jv

  • REP-56106 when starting Reports with VBScript

    I currently use a VBScript to start-up Reports and other Oracle services. Here is an example of how I do it:
    'START INFRASTRUCTURE HTTP SERVER
    iReturn = oshell.Run("%comspec% /C C:\oracle\ora92inf\dcm\bin\dcmctl start -ct ohs", 0, TRUE)
    'START REPROTS
    iReturn = oshell.Run("%comspec% /C C:\oracle\ora92as\bin\rwserver server=[rep_name]", 0, FALSE)
    While Reports is starting-up, I receive the following error in a pop-up window: "REP-56106: Engine rwEng-0 died with error:"
    The odd thing about this is that I was previously using the VBScript SendKeys method to start-up Reports. This worked well except it required using the Sleep method in order to wait for commands to finish rather than detecting when a call had terminated and then moving on to the next call (this is what my new script does with Run method). Here is an example of the old way I was doing it:
    ' START THE REPORTS SERVER
    ws.SendKeys "cd " & AS_DIR & "\bin\{ENTER}"
    ws.SendKeys REPSERVER & "{ENTER}"
    WScript.Sleep 2000
    I also tried starting up the other Oracle services using my new script, then manually starting Reports server. This causes the same error.
    So, it seems like using my new script causes some problem while starting up the other services which subsequently causes Reports to crash. However, checking the status of the mid-tier and infrastructure show that the appropriate services are started.
    Any ideas on how I can use the VBScript Run method to start-up services and Reports?
    Or does anyone else have ideas on how to script the start-up of the mid-tier, infrastructure and Reports that actually waits for one call to finish before starting the next?
    Thanks in advance for your help!

    I have managed to resolove this problem by updating the installed JDK. I installed jdk-6u6-linux-i586-rpm.bin (downloaded from http://java.sun.com/)
    I then updated the LD_LIBRARY_PATH in $ORACLE_HOME/bin/reports.sh to agree with the installed JDK locations.

  • Windows Update Error Code 80072F8F! I Did All The Steps And Will Not Fix Please HELP?

    No one seems they can not help me fix this error code I did many things and not one person has really
    helped me, I have a question at another forum but all they do is just ask me questions tell me steps to fix this but nothing worked at all, This happened on 8/30/2014 and ever since no one can help me fix this at all....I have no money to pay for the fix...I
    am on very very low limited disability income, No credit cards nothing. I need help now I paid a lot of money for my Windows 7 Ultimate and now since 8/30/2014 I got that error code no one has helped me....PLEASE help me please....And I am not sure where to
    go for help here thank you. I have done many things but nothing is fixing this issue. please help...And yes I did the clock and clock keeps perfect time, doing that clock did not fix this error code at all...

    Hi Angelsims,
    First I also want to get more information from you to help us to troubleshhot:
    1.Did this error occur on a single update or multiple updates? please also post the update name in issue.
    2.Please also post the steps you have followed to fix this issue.
    In addition, please try to use the general steps to troubleshoot the windows update issue, and refer to the steps below:
    The following outlines how to stop services pertaining to Windows Update, rename system folders, register related DLL files, and then restart the previously mentioned services. This troubleshooting generally applies to all Windows Update related issues.
     Stopping services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then press ENTER after each command.
            net stop wuauserv
            net stop bits
            net stop cryptsvc
     Please do not close the Command Prompt window.
     Renaming folders pertaining to Windows Update
    1.     At the command prompt, type the following commands, and then press Enter after each command:
    2.     ren %systemroot%\System32\Catroot2 Catroot2.old
    3.     ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
    4.     Please do not close the Command Prompt window.
     Registering DLL’s pertaining to Windows Update
    1.     Please copy and paste the following text into a new Notepad document, and save the file as WindowsUpdate.BAT
    2.     If saved correctly the icon will change from a Notepad file to BAT file which has two blue cogs as its     icon.
                                           -or-
    3.     You can manually type each command at the command prompt:
             regsvr32 c:\windows\system32\vbscript.dll /s
             regsvr32 c:\windows\system32\mshtml.dll /s
             regsvr32 c:\windows\system32\msjava.dll /s
             regsvr32 c:\windows\system32\jscript.dll /s
             regsvr32 c:\windows\system32\msxml.dll /s
             regsvr32 c:\windows\system32\actxprxy.dll /s
             regsvr32 c:\windows\system32\shdocvw.dll /s
             regsvr32 wuapi.dll /s
             regsvr32 wuaueng1.dll /s
             regsvr32 wuaueng.dll /s
            regsvr32 wucltui.dll /s
             regsvr32 wups2.dll /s
             regsvr32 wups.dll /s
             regsvr32 wuweb.dll /s
             regsvr32 Softpub.dll /s
            regsvr32 Mssip32.dll /s
             regsvr32 Initpki.dll /s
             regsvr32 softpub.dll /s
             regsvr32 wintrust.dll /s
             regsvr32 initpki.dll /s
            regsvr32 dssenh.dll /s
            regsvr32 rsaenh.dll /s
             regsvr32 gpkcsp.dll /s
             regsvr32 sccbase.dll /s
             regsvr32 slbcsp.dll /s
             regsvr32 cryptdlg.dll /s
             regsvr32 Urlmon.dll /s
             regsvr32 Shdocvw.dll /s
             regsvr32 Msjava.dll /s
             regsvr32 Actxprxy.dll /s
             regsvr32 Oleaut32.dll /s
            regsvr32 Mshtml.dll /s
             regsvr32 msxml.dll /s
             regsvr32 msxml2.dll /s
             regsvr32 msxml3.dll /s
             regsvr32 Browseui.dll /s
             regsvr32 shell32.dll /s
             regsvr32 wuapi.dll /s
             regsvr32 wuaueng.dll /s
             regsvr32 wuaueng1.dll /s
             regsvr32 wucltui.dll /s
             regsvr32 wups.dll /s
             regsvr32 wuweb.dll /s
             regsvr32 jscript.dll /s
             regsvr32 atl.dll /s
             regsvr32 Mssip32.dll /s 
     Restarting services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then
    press ENTER after each command.
            net start wuauserv
            net start bits
            net start cryptsvc
             exit
    Please try the steps above, if the step failed, please post the error or failure information.
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang       

  • Adobe VBScript or COM API fails when Adobe application not already open on a certain machine

    Was wondering if anybody might have input on this or observed this themselves. Is there a known issue/bug for this?
    I'm building scripted tooling to automate tasks in Adobe Illustrator and Photoshop, using the COM API (what Adobe lists as VBScript scripting reference, but is really COM). I've tested with both JScript (Microsoft Javascript, for doing same things you would use VBScript for) and Python using COM. In both cases got the same issue.
    When I was building the tooling, it works fine for me. But on a colleagues machine, the problem comes up. Sadly the error messaging is vague to pinpoint the root cause of the problem. We just know when it happens, but not why/how. We both have Windows 7 64-bit and are using 64-bit version of the Adobe apps, version CS6. Though we also have 32-bit version installed as well.
    The funny thing about my colleague's machine is the the tool/script will execute fine if Adobe Illustrator/Photoshop is already open. But if the app is not open already, it just fails at the point of instantiating the COM object. On my machine it works fine in both cases.
    Here's the error output observed:
    in JScript
    C:\scripts>cscript windows_cli_script_runner.js /s:C:\scripts\test.jsx
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    C:\scripts\windows_cli_script_runner.js(25, 5) (null): 0x800700C1
    in Python
    C:\scripts>python cli_script_runner.py -s C:\scripts\test.jsx
    cli_script_runner.py:33: SyntaxWarning: import * only allowed at module level
      def run_script(script,doc=None,app=None):
    Traceback (most recent call last):
      File "cli_script_runner.py", line 89, in <module>
        run_script(args.script)
      File "cli_script_runner.py", line 68, in run_script
        app_ref = win32com.client.Dispatch(app)
      File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 95, in Dispatch
        dispatch, userName = dynamic._GetGoodDispatchAndUserName(dispatch,userName,clsctx)
      File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 114, in _GetGoodDispatchAndUserName
        return (_GetGoodDispatch(IDispatch, clsctx), userName)
      File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 91, in _GetGoodDispatch
        IDispatch = pythoncom.CoCreateInstance(IDispatch, None, clsctx, pythoncom.IID_IDispatch)
    pywintypes.com_error: (-2147024703, 'OLE error 0x800700c1', None, None)
    C:\scripts>
    basically both point to this line at failure:
    in JScript
    var app_ref = new ActiveXObject(app);
    in Python
    app_ref = win32com.client.Dispatch(app)
    where app is "Illustrator.Application.CS6" or "Photoshop.Application", per the Adobe scripting guide and VBScript scripting reference.
    I didn't test VBScript but assume it's the same since JScript and VBScript and Python are all using same COM interface, and VBScript and JScript using same Windows Scripting Host interface.

    Also, there appears to be rather an unfortunate bug.  If the publisher does not yet have a subscriber, it looks like these two properties return an error.  Oof.
    So. there is this other way to do it.  Embarrassing.
    var allowAudio:Boolean = true;
    var allowVideo:Boolean = true;
    publishingStream.send("|RtmpSampleAccess", allowAudio, allowVideo);
    Yep.  The secret vertical bar call.  I believe you can make this call once on the publishing stream.  However, that'll only get to the subscribers that are currently connected and it won't get to subscribers that have yet to connect.
    You can also call send on the specific subscribing streams to give different permissions to each subscriber.
    More...
    http://forums.adobe.com/thread/632355?tstart=0

  • Java Applets do not run when UAC is enabled on Windows 7

    HI,
    I'm deploying Java 6.0_26-b03+ on Windows 7 and experiencing following problem:
    Java applets do not run as standard domain users in Internet Explorer 9 on Windows 7 when UAC is enabled (i.E. http://www.java.com/de/download/installed.jsp). When logged on as Administrator or start IE9 as Administrator java applets do run.
    If I diable UAC an log on as normal user then applets do run. Applets then still run if UAC is re-enabled again. It seems that UAC needs to be disabled for the Java Plug-In to register something in user context (assumption). If this registration happended Java applets do run also for standard Windows 7 users if UAC is enabled.
    Since we're planning a corporate Windows 7 rollout (>800PCs) we cannot do this manually on every computer. Ther must be any solution for this problem.
    Does anybody have the same problem and has already found a solution?
    This is the content of the error log file generated when a standard domain user tries to run http://www.java.com/de/download/installed.jsp
    +#+
    +# A fatal error has been detected by the Java Runtime Environment:+
    +#+
    +# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x776677b2, pid=1320, tid=2380+
    +#+
    +# JRE version: 6.0_26-b03+
    +# Java VM: Java HotSpot(TM) Client VM (20.1-b02 mixed mode, sharing windows-x86 )+
    +# Problematic frame:+
    +# C [ntdll.dll+0x477b2]+
    +#+
    +# If you would like to submit a bug report, please visit:+
    +# http://java.sun.com/webapps/bugreport/crash.jsp+
    +# The crash happened outside the Java Virtual Machine in native code.+
    +# See problematic frame for where to report the bug.+
    +#+
    ---------------  T H R E A D  ---------------
    +Current thread (0x01da8c00):  JavaThread "main" [_thread_in_native, id=2380, stack(0x02420000,0x02620000)]+
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000024
    Registers:
    EAX=0x00000024, EBX=0x33827b58, ECX=0x7c38b4e8, EDX=0x7efeff3d
    ESP=0x02616090, EBP=0x026160a4, ESI=0x00000024, EDI=0x00000020
    EIP=0x776677b2, EFLAGS=0x00250212
    Top of Stack: (sp=0x02616090)
    +0x02616090: 02616236 00000000 7c34214f 01da6bc8+
    +0x026160a0: 026160e4 026160ec 7c34f639 00000020+
    +0x026160b0: 7c36b73f 00000000 6d1db83c 02616236+
    +0x026160c0: 00000000 33827b58 7c38b548 026160b8+
    +0x026160d0: 0000000d 026160bc 02615b4c 026165e0+
    +0x026160e0: 7c34240d 7c382198 ffffffff 02616454+
    +0x026160f0: 6d1d3b45 6d1db83c 00000000 02616210+
    +0x02616100: 6d1db84c 01da8c00 33827b58 00000000+
    Instructions: (pc=0x776677b2)
    +0x77667792: 33 c0 5e 5d c2 04 00 90 90 90 90 90 90 90 8b ff+
    +0x776677a2: 55 8b ec 83 ec 0c 56 57 8b 7d 08 8d 77 04 8b c6+
    +0x776677b2: f0 0f ba 30 00 0f 83 eb e2 00 00 64 a1 18 00 00+
    +0x776677c2: 00 8b 48 24 89 4f 0c c7 47 08 01 00 00 00 5f 33+
    Register to memory mapping:
    EAX=0x00000024 is an unknown value
    EBX=0x33827b58 is an oop
    +{method}+
    +- klass: {other class}+
    ECX=0x7c38b4e8 is an unknown value
    EDX=0x7efeff3d is an unknown value
    ESP=0x02616090 is pointing into the stack for thread: 0x01da8c00
    EBP=0x026160a4 is pointing into the stack for thread: 0x01da8c00
    ESI=0x00000024 is an unknown value
    EDI=0x00000020 is an unknown value
    Stack: [0x02420000,0x02620000],  sp=0x02616090,  free space=2008k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    +C  [ntdll.dll+0x477b2] RtlEnterCriticalSection+0x12+
    +C  [MSVCR71.dll+0xf639] _crtGetLocaleInfoW+0x2b1+
    +C  [deploy.dll+0x3b45] Java_com_sun_deploy_config_WinConfig_installShortcut+0x235+
    j  com.sun.deploy.config.Config.versionUpdateCheck()V392+
    j  com.sun.deploy.config.Config.initialize()Z256+
    j  com.sun.deploy.config.Config.<clinit>()V1933+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0x4d719]+
    +V  [jvm.dll+0x4de7f]+
    +V  [jvm.dll+0x4e050]+
    +V  [jvm.dll+0x4ac51]+
    j  sun.plugin2.main.server.JVMManager.processJREInfo()V32+
    j  sun.plugin2.main.server.JVMManager.<init>()V86+
    j  sun.plugin2.main.server.JVMManager.<clinit>()V72+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0x4d719]+
    +V  [jvm.dll+0x4de7f]+
    +V  [jvm.dll+0x4e050]+
    +V  [jvm.dll+0x4ac51]+
    j  sun.plugin2.main.server.IExplorerPlugin.<clinit>()V41+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0xb2ae9]+
    +V  [jvm.dll+0x94be8]+
    +C  [jp2iexp.dll+0x25b6] Java_sun_plugin2_main_server_WindowsHelper_uninstallHook+0xeaa+
    +C  [jp2iexp.dll+0x3b6b] Java_sun_plugin2_main_server_IExplorerPlugin_fillInExceptionInfo0+0x7ee+
    +C  [jp2iexp.dll+0xd2a4] DllGetClassObject+0x57c6+
    +C  [MSHTML.dll+0x156e41] RunHTMLApplication+0x1a9a+
    +C  [MSHTML.dll+0x156c95] RunHTMLApplication+0x18ee+
    +C  [MSHTML.dll+0x156cc3] RunHTMLApplication+0x191c+
    +C  [MSHTML.dll+0x156948] RunHTMLApplication+0x15a1+
    +C  [MSHTML.dll+0x15675f] RunHTMLApplication+0x13b8+
    +C  [MSHTML.dll+0x1563bf] RunHTMLApplication+0x1018+
    +C  [MSHTML.dll+0x15602e] RunHTMLApplication+0xc87+
    +C  [MSHTML.dll+0x99a35] MatchExactGetIDsOfNames+0x5eed7+
    +C  [MSHTML.dll+0x262624] CTravelLog_CreateInstance+0x1edcf+
    +C  [MSHTML.dll+0x29dc6f] DllGetClassObject+0x23eb1+
    +C  [MSHTML.dll+0x267e1c] CTravelLog_CreateInstance+0x245c7+
    +C  [MSHTML.dll+0x267d48] CTravelLog_CreateInstance+0x244f3+
    +C  [MSHTML.dll+0x267cad] CTravelLog_CreateInstance+0x24458+
    +C  [MSHTML.dll+0x267c0d] CTravelLog_CreateInstance+0x243b8+
    +C  [MSHTML.dll+0x24b83d] CTravelLog_CreateInstance+0x7fe8+
    +C  [MSHTML.dll+0x3ea169] DllGetClassObject+0x1703ab+
    +C  [MSHTML.dll+0x4095e0] DllGetClassObject+0x18f822+
    +C  [USER32.dll+0x1c4e7] gapfnScSendMessage+0x1cf+
    +C  [USER32.dll+0x1c5e7] gapfnScSendMessage+0x2cf+
    +C  [USER32.dll+0x1cc19] gapfnScSendMessage+0x901+
    +C  [USER32.dll+0x1cc70] DispatchMessageW+0xf+
    +C  [IEFRAME.dll+0xf1b83] Ordinal234+0x6520+
    +C  [IEFRAME.dll+0x111ac6] Ordinal224+0x17ff9+
    +C  [iertutil.dll+0x140150] Ordinal59+0x8b+
    +C  [IEFRAME.dll+0xffe03] Ordinal224+0x6336+
    +C  [kernel32.dll+0x53c45] BaseThreadInitThunk+0x12+
    +C  [ntdll.dll+0x637f5] RtlInitializeExceptionChain+0xef+
    +C  [ntdll.dll+0x637c8] RtlInitializeExceptionChain+0xc2+
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.sun.deploy.config.WinConfig.getBrowserPath()Ljava/lang/String;0+
    j  com.sun.deploy.config.Config.versionUpdateCheck()V392+
    j  com.sun.deploy.config.Config.initialize()Z256+
    j  com.sun.deploy.config.Config.<clinit>()V1933+
    v  ~StubRoutines::call_stub
    j  sun.plugin2.main.server.JVMManager.processJREInfo()V32+
    j  sun.plugin2.main.server.JVMManager.<init>()V86+
    j  sun.plugin2.main.server.JVMManager.<clinit>()V72+
    v  ~StubRoutines::call_stub
    j  sun.plugin2.main.server.IExplorerPlugin.<clinit>()V41+
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
    +0x03226400 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1796, stack(0x0a8c0000,0x0a9c0000)]+
    +0x031e2c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2144, stack(0x0a7b0000,0x0a8b0000)]+
    +0x031d3800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2036, stack(0x050d0000,0x051d0000)]+
    +0x031d2800 JavaThread "Attach Listener" daemon [_thread_blocked, id=1268, stack(0x0a5b0000,0x0a6b0000)]+
    +0x031d0800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1120, stack(0x0a4b0000,0x0a5b0000)]+
    +0x031ca000 JavaThread "Finalizer" daemon [_thread_blocked, id=1140, stack(0x09fc0000,0x0a0c0000)]+
    +0x031c8c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2500, stack(0x0a380000,0x0a480000)]+
    +=>0x01da8c00 JavaThread "main" [_thread_in_native, id=2380, stack(0x02420000,0x02620000)]+
    Other Threads:
    +0x0318c800 VMThread [stack: 0x0a1c0000,0x0a2c0000] [id=2672]+
    +0x031f2000 WatcherThread [stack: 0x0a9c0000,0x0aac0000] [id=2712]+
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 4928K, used 281K [0x317e0000, 0x31d30000, 0x32280000)
    eden space 4416K,   6% used [0x317e0000, 0x31826480, 0x31c30000)
    from space 512K,   0% used [0x31c30000, 0x31c30000, 0x31cb0000)
    to   space 512K,   0% used [0x31cb0000, 0x31cb0000, 0x31d30000)
    tenured generation   total 10944K, used 0K [0x32280000, 0x32d30000, 0x337e0000)
    the space 10944K,   0% used [0x32280000, 0x32280000, 0x32280200, 0x32d30000)
    compacting perm gen  total 12288K, used 371K [0x337e0000, 0x343e0000, 0x377e0000)
    the space 12288K,   3% used [0x337e0000, 0x3383cc08, 0x3383ce00, 0x343e0000)
    ro space 10240K,  51% used [0x377e0000, 0x37d0dff8, 0x37d0e000, 0x381e0000)
    rw space 12288K,  55% used [0x381e0000, 0x3887c208, 0x3887c400, 0x38de0000)
    Code Cache  [0x0c910000, 0x0c980000, 0x0e910000)
    total_blobs=147 nmethods=5 adapters=79 free_code_cache=33098880 largest_free_block=0
    Dynamic libraries:
    +0x00a40000 - 0x00af8000      C:\Program Files\Internet Explorer\iexplore.exe+
    +0x77620000 - 0x7775c000      C:\Windows\SYSTEM32\ntdll.dll+
    +0x75f50000 - 0x76024000      C:\Windows\system32\kernel32.dll+
    +0x75a70000 - 0x75aba000      C:\Windows\system32\KERNELBASE.dll+
    +0x777a0000 - 0x77840000      C:\Windows\system32\ADVAPI32.dll+
    +0x75d60000 - 0x75e0c000      C:\Windows\system32\msvcrt.dll+
    +0x75ac0000 - 0x75ad9000      C:\Windows\SYSTEM32\sechost.dll+
    +0x764a0000 - 0x76541000      C:\Windows\system32\RPCRT4.dll+
    +0x77250000 - 0x77319000      C:\Windows\system32\USER32.dll+
    +0x76450000 - 0x7649e000      C:\Windows\system32\GDI32.dll+
    +0x77840000 - 0x7784a000      C:\Windows\system32\LPK.dll+
    +0x76550000 - 0x765ed000      C:\Windows\system32\USP10.dll+
    +0x75ee0000 - 0x75f37000      C:\Windows\system32\SHLWAPI.dll+
    +0x765f0000 - 0x7723a000      C:\Windows\system32\SHELL32.dll+
    +0x774c0000 - 0x7761c000      C:\Windows\system32\ole32.dll+
    +0x75c20000 - 0x75d30000      C:\Windows\system32\urlmon.dll+
    +0x76080000 - 0x7610f000      C:\Windows\system32\OLEAUT32.dll+
    +0x76110000 - 0x762c6000      C:\Windows\system32\iertutil.dll+
    +0x762d0000 - 0x763ea000      C:\Windows\system32\WININET.dll+
    +0x75f40000 - 0x75f43000      C:\Windows\system32\Normaliz.dll+
    +0x75d40000 - 0x75d5f000      C:\Windows\system32\IMM32.DLL+
    +0x75e10000 - 0x75edc000      C:\Windows\system32\MSCTF.dll+
    +0x66850000 - 0x67195000      C:\Windows\system32\IEFRAME.dll+
    +0x77240000 - 0x77245000      C:\Windows\system32\PSAPI.DLL+
    +0x73850000 - 0x7388c000      C:\Windows\system32\OLEACC.dll+
    +0x743d0000 - 0x7456e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll+
    +0x75b70000 - 0x75beb000      C:\Windows\system32\comdlg32.dll+
    +0x73600000 - 0x73631000      C:\Program Files\Internet Explorer\IEShims.dll+
    +0x75740000 - 0x7574c000      C:\Windows\system32\CRYPTBASE.dll+
    +0x75590000 - 0x75598000      C:\Windows\system32\Secur32.dll+
    +0x756d0000 - 0x756eb000      C:\Windows\system32\SSPICLI.DLL+
    +0x757c0000 - 0x757cb000      C:\Windows\system32\profapi.dll+
    +0x77760000 - 0x77795000      C:\Windows\system32\WS2_32.dll+
    +0x75d30000 - 0x75d36000      C:\Windows\system32\NSI.dll+
    +0x750a0000 - 0x750e4000      C:\Windows\system32\dnsapi.DLL+
    +0x72fa0000 - 0x72fbc000      C:\Windows\system32\iphlpapi.DLL+
    +0x72f90000 - 0x72f97000      C:\Windows\system32\WINNSI.DLL+
    +0x757b0000 - 0x757be000      C:\Windows\system32\RpcRtRemote.dll+
    +0x63ef0000 - 0x64aa8000      C:\Windows\system32\MSHTML.dll+
    +0x74cb0000 - 0x74cb9000      C:\Windows\system32\VERSION.dll+
    +0x6f5f0000 - 0x6f6aa000      C:\Windows\system32\d2d1.dll+
    +0x6c8a0000 - 0x6c9aa000      C:\Windows\system32\DWrite.dll+
    +0x6d3c0000 - 0x6d443000      C:\Windows\system32\dxgi.dll+
    +0x739d0000 - 0x739e3000      C:\Windows\system32\dwmapi.dll+
    +0x75300000 - 0x75316000      C:\Windows\system32\CRYPTSP.dll+
    +0x758d0000 - 0x758fd000      C:\Windows\system32\WINTRUST.dll+
    +0x75950000 - 0x75a6d000      C:\Windows\system32\CRYPT32.dll+
    +0x75830000 - 0x7583c000      C:\Windows\system32\MSASN1.dll+
    +0x74b70000 - 0x74b91000      C:\Windows\system32\ntmarta.dll+
    +0x76030000 - 0x76075000      C:\Windows\system32\WLDAP32.dll+
    +0x75000000 - 0x7503b000      C:\Windows\system32\rsaenh.dll+
    +0x75ae0000 - 0x75b63000      C:\Windows\system32\CLBCatQ.DLL+
    +0x69240000 - 0x69272000      C:\Program Files\Internet Explorer\ieproxy.dll+
    +0x756f0000 - 0x7573c000      C:\Windows\system32\apphelp.dll+
    +0x74130000 - 0x74263000      C:\Windows\System32\msxml3.dll+
    +0x75750000 - 0x757af000      C:\Windows\system32\SXS.DLL+
    +0x73d90000 - 0x73d9b000      C:\Windows\system32\msimtf.dll+
    +0x6d390000 - 0x6d3bb000      C:\Windows\system32\msls31.dll+
    +0x77320000 - 0x774bd000      C:\Windows\system32\setupapi.dll+
    +0x75920000 - 0x75947000      C:\Windows\system32\CFGMGR32.dll+
    +0x75900000 - 0x75912000      C:\Windows\system32\DEVOBJ.dll+
    +0x73570000 - 0x7359c000      C:\Windows\system32\d3d10_1.dll+
    +0x734b0000 - 0x734ea000      C:\Windows\system32\d3d10_1core.dll+
    +0x6c770000 - 0x6c89c000      C:\Windows\system32\D3D10Warp.dll+
    +0x69760000 - 0x6978e000      C:\Windows\system32\MLANG.dll+
    +0x74970000 - 0x74a65000      C:\Windows\system32\PROPSYS.dll+
    +0x6ab00000 - 0x6ac02000      C:\Windows\system32\d3d10.dll+
    +0x73520000 - 0x73553000      C:\Windows\system32\d3d10core.dll+
    +0x73d40000 - 0x73d80000      C:\Windows\system32\UxTheme.dll+
    +0x73180000 - 0x731d2000      C:\Windows\system32\RASAPI32.dll+
    +0x73160000 - 0x73175000      C:\Windows\system32\rasman.dll+
    +0x73150000 - 0x7315d000      C:\Windows\system32\rtutils.dll+
    +0x6f6b0000 - 0x6f6b6000      C:\Windows\system32\sensapi.dll+
    +0x75190000 - 0x751cc000      C:\Windows\system32\mswsock.dll+
    +0x74d40000 - 0x74d45000      C:\Windows\System32\wshtcpip.dll+
    +0x747f0000 - 0x74815000      C:\Windows\system32\peerdist.dll+
    +0x74e00000 - 0x74e17000      C:\Windows\system32\USERENV.dll+
    +0x753f0000 - 0x7540b000      C:\Windows\system32\AUTHZ.dll+
    +0x747e0000 - 0x747f0000      C:\Windows\system32\NLAapi.dll+
    +0x72330000 - 0x72336000      C:\Windows\system32\rasadhlp.dll+
    +0x75180000 - 0x75186000      C:\Windows\System32\wship6.dll+
    +0x72b90000 - 0x72bc8000      C:\Windows\System32\fwpuclnt.dll+
    +0x695a0000 - 0x6975b000      C:\Windows\System32\jscript9.dll+
    +0x72de0000 - 0x72e1a000      C:\Windows\System32\Dxtrans.dll+
    +0x74790000 - 0x747a4000      C:\Windows\System32\ATL.DLL+
    +0x74330000 - 0x7433a000      C:\Windows\system32\ddrawex.dll+
    +0x694b0000 - 0x69597000      C:\Windows\system32\DDRAW.dll+
    +0x742d0000 - 0x742d6000      C:\Windows\system32\DCIMAN32.dll+
    +0x6c710000 - 0x6c769000      C:\Windows\System32\Dxtmsft.dll+
    +0x73a00000 - 0x73afb000      C:\Windows\system32\windowscodecs.dll+
    +0x6cf70000 - 0x6cfa2000      C:\Windows\system32\WINMM.dll+
    +0x739a0000 - 0x739cf000      C:\Windows\system32\XmlLite.dll+
    +0x74310000 - 0x74317000      C:\Windows\system32\msiltcfg.dll+
    +0x6c410000 - 0x6c650000      C:\Windows\system32\msi.dll+
    +0x6ac70000 - 0x6acb7000      C:\Windows\system32\Adobe\Director\SwDir.dll+
    +0x6c6d0000 - 0x6c703000      C:\Windows\system32\windowscodecsext.dll+
    +0x69790000 - 0x69809000      C:\Windows\system32\mscms.dll+
    +0x6ac30000 - 0x6ac68000      C:\Windows\system32\icm32.dll+
    +0x69410000 - 0x694ad000      C:\Windows\system32\Adobe\Shockwave 11\Control.dll+
    +0x6e810000 - 0x6e861000      C:\Windows\system32\winspool.drv+
    +0x69390000 - 0x69402000      C:\Windows\system32\DSOUND.dll+
    +0x74ac0000 - 0x74ae5000      C:\Windows\system32\POWRPROF.dll+
    +0x74a70000 - 0x74aa9000      C:\Windows\System32\MMDevApi.dll+
    +0x73960000 - 0x73996000      C:\Windows\system32\AUDIOSES.DLL+
    +0x736e0000 - 0x736ec000      C:\Windows\system32\mssprxy.dll+
    +0x69320000 - 0x6938a000      C:\Windows\system32\vbscript.dll+
    +0x653b0000 - 0x659de000      C:\Windows\system32\Macromed\Flash\Flash10t.ocx+
    +0x74f70000 - 0x74f78000      C:\Windows\system32\credssp.dll+
    +0x74f20000 - 0x74f5a000      C:\Windows\system32\schannel.DLL+
    +0x67430000 - 0x674f8000      C:\Windows\system32\OPENGL32.DLL+
    +0x68ce0000 - 0x68d02000      C:\Windows\system32\GLU32.dll+
    +0x10000000 - 0x10dc0000      C:\Windows\system32\ig4icd32.dll+
    +0x68c70000 - 0x68cd4000      C:\Windows\system32\D3DIM.DLL+
    +0x67360000 - 0x6742c000      C:\Windows\system32\D3DIM700.DLL+
    +0x01d40000 - 0x01d5f000      C:\Program Files\Java\jre6\bin\jp2iexp.dll+
    +0x7c340000 - 0x7c396000      C:\Program Files\Java\jre6\bin\MSVCR71.dll+
    +0x72d30000 - 0x72d37000      C:\Windows\system32\wsock32.dll+
    +0x71b10000 - 0x71b20000      C:\Windows\system32\napinsp.dll+
    +0x71af0000 - 0x71b02000      C:\Windows\system32\pnrpnsp.dll+
    +0x720d0000 - 0x720d8000      C:\Windows\System32\winrnr.dll+
    +0x71ae0000 - 0x71aed000      C:\Windows\system32\wshbth.dll+
    +0x6f8f0000 - 0x6f974000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\comctl32.dll+
    +0x6d7f0000 - 0x6da9f000      C:\PROGRA~1\Java\jre6\bin\client\jvm.dll+
    +0x6d7a0000 - 0x6d7ac000      C:\PROGRA~1\Java\jre6\bin\verify.dll+
    +0x6d320000 - 0x6d33f000      C:\PROGRA~1\Java\jre6\bin\java.dll+
    +0x6d7e0000 - 0x6d7ef000      C:\PROGRA~1\Java\jre6\bin\zip.dll+
    +0x01dc0000 - 0x01dc6000      C:\Program Files\Java\jre6\bin\jp2native.dll+
    +0x6d1d0000 - 0x6d1e3000      C:\Program Files\Java\jre6\bin\deploy.dll+
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\jre6\lib\deploy.jar;C:\PROGRA~1\Java\jre6\lib\javaws.jar;C:\PROGRA~1\Java\jre6\lib\plugin.jar -Xmx32m -Djava.awt.headless=true -Dkernel.background.download=false -Dkernel.download.dialog=false -XX:MaxDirectMemorySize=64m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\Program Files\Internet Explorer;;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32\Empirum
    USERNAME=%username%
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 42 Stepping 7, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows 7 Build 7601 Service Pack 1
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 3063864k(2285416k free), swap 6125972k(5328168k free)
    vm_info: Java HotSpot(TM) Client VM (20.1-b02) for windows-x86 JRE (1.6.0_26-b03), built on May  4 2011 00:50:59 by "java_re" with MS VC+ 7.1 (VS2003)+
    time: Thu Jun 30 17:20:35 2011
    elapsed time: 0 seconds

    user11262844 wrote:
    Since we're planning a corporate Windows 7 rollout (>800PCs) we cannot do this manually on every computer. Ther must be any solution for this problem.If you're doing a corporate rollout of that size then surely you're just making an image of the desired configuration and just duplicating it onto the 800 PCs? In which case you would just configure IE appropriately as part of the image.
    Or alternatively you are manually configuring each of the 800 PCs, in which case this would be just one more thing in the checklist.

  • [Solved] Windows 7 and Arch Dual boot- unable to boot into Windows7

    Had to reformat computer and reinstall windows and Arch on two separate hard drives (Dual boot) .
    Windows 7 was the first install on SDA: (/dev/sda1 - system reserved 100mb, /dev/sda2 - 20gb)
    Arch on SDB: (/dev/sdb1- boot 94mb, /dev/sdb2- swap, /dev/sdb3 - root, /dev/sdb4 - /home)
    Installed grub2 on /dev/sda. now grub bootloader loads Arch fine. Also shows Windows 7 (on /dev/sda1).
    But when chosen Windows 7, it does not load and loops back again to boot loader screen.
    In BIOS i have set disk drive SDB as first boot option.
    If i choose SDA as first boot option in BIOS, same scenario is repeated.
    I have gone through mostly all the pages related to the topic but i can not co-relate the solution
    to my exact situation due to limited knowledge.
    Can somebody pls help me as to how to edit grub.cfg so as to point it to load windows 7?
    the entry related to windows 7 reads as follows:-
    quote
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os $menue$
            insmod part_msdos
            insmod ntfs
            set root='hd0,msdos1'
            if [ x$feature_platform_search_hint = xy ]; then
              search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint$
            else
              search --no-floppy --fs-uuid --set=root F010D97410D941F0
            fi
            chainloader +1
    unquote
    for Arch set root value is hd1,msdos1 and working fine.
    Thanks and regards.
    Last edited by commsanjay (2012-10-14 08:08:54)

    This is exactly why I have chosen to use windows MBR and syslinux
    https://wiki.archlinux.org/index.php/Wi … oot-loader
    Last edited by ackt1c (2012-10-14 02:32:55)

  • CRASH with WIndows XP - arrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrgggh

    My Windows crashes and all I do can't stop it. Any thoughts?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x02609558, pid=3472, tid=2924
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing)
    # Problematic frame:
    # C [YPCLSP.dll+0x9558]
    --------------- T H R E A D ---------------
    Current thread (0x0514ebf8): JavaThread "VCSSniffer" [_thread_in_native, id=2924]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x02baf100, EBX=0x00000000, ECX=0x00000000, EDX=0x02621cc8
    ESP=0x0ddcf380, EBP=0x0ddcf670, ESI=0x02baf140, EDI=0x7c809bf5
    EIP=0x02609558, EFLAGS=0x00010246
    Top of Stack: (sp=0x0ddcf380)
    0x0ddcf380: 7c809bf5 0ddcf6d0 0ddcf6d0 ffffffff
    0x0ddcf390: 71a561e8 02602d6b 0ddcf434 7c809bf5
    0x0ddcf3a0: 0ddcf3c0 02602d7d 00000020 00000000
    0x0ddcf3b0: 7c809bf5 02649d68 0ddcf434 00000000
    0x0ddcf3c0: 0ddcf3f0 44005baa 0ddcf434 44004cbe
    0x0ddcf3d0: 44014e24 02649d68 44005bc6 0ddcf434
    0x0ddcf3e0: 0ddcf6e8 0ddcf6e4 0000ffff 00000000
    0x0ddcf3f0: 0ddcf6c8 71ab47c5 00001134 0000ffff
    Instructions: (pc=0x02609558)
    0x02609548: f5 88 ff ff 84 c0 59 0f 85 52 02 00 00 8b 4d 10
    0x02609558: 8b 01 83 f8 64 76 03 6a 64 58 8d 95 1c fd ff ff
    Stack: [0x0dcd0000,0x0ddd0000), sp=0x0ddcf380, free space=1020k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [YPCLSP.dll+0x9558]
    C [YPCLSP.dll+0x3d89]
    C [GoogleDesktopNetwork2.dll+0x7a5f]
    C [net.dll+0x7486]
    C [net.dll+0x62f3]
    j java.net.PlainSocketImpl.socketClose0(Z)V+0
    j java.net.PlainSocketImpl.socketPreClose()V+2
    j java.net.PlainSocketImpl.close()V+44
    j java.net.Socket.close()V+28
    j java.net.SocketInputStream.close()V+34
    j java.io.BufferedInputStream.close()V+36
    j sun.net.www.MeteredStream.close()V+31
    j java.io.FilterInputStream.close()V+4
    j sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.close()V+33
    j videoclipstream.a(Ljava/lang/String;II)I+479
    j videoclipstream.run()V+307
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x818e8]
    V [jvm.dll+0xd4989]
    V [jvm.dll+0x817b9]
    V [jvm.dll+0x81516]
    V [jvm.dll+0x9c1d6]
    V [jvm.dll+0xfeeab]
    V [jvm.dll+0xfee79]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j java.net.PlainSocketImpl.socketClose0(Z)V+0
    j java.net.PlainSocketImpl.socketPreClose()V+2
    j java.net.PlainSocketImpl.close()V+44
    j java.net.Socket.close()V+28
    j java.net.SocketInputStream.close()V+34
    j java.io.BufferedInputStream.close()V+36
    j sun.net.www.MeteredStream.close()V+31
    j java.io.FilterInputStream.close()V+4
    j sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.close()V+33
    j videoclipstream.a(Ljava/lang/String;II)I+479
    j videoclipstream.run()V+307
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0514fba0 JavaThread "VCSPainter" [_thread_blocked, id=2136]
    =>0x0514ebf8 JavaThread "VCSSniffer" [_thread_in_native, id=2924]
    0x0d34d250 JavaThread "AWT-EventQueue-4" [_thread_blocked, id=1640]
    0x05179da8 JavaThread "thread applet-videoclipstream.class" [_thread_blocked, id=236]
    0x0d33a458 JavaThread "AWT-EventQueue-3" [_thread_blocked, id=412]
    0x0d2fae58 JavaThread "thread applet-JavaCallJS.class" [_thread_blocked, id=932]
    0x0513f198 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=2284]
    0x05121c10 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2024]
    0x05144ca8 JavaThread "AWT-Shutdown" [_thread_blocked, id=3932]
    0x05126020 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=2376]
    0x050130a8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3268]
    0x05120d88 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2840]
    0x01997780 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2148]
    0x0198b408 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3700]
    0x05003780 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1528]
    0x0199eac0 JavaThread "Finalizer" daemon [_thread_blocked, id=1456]
    0x018d1458 JavaThread "Reference Handler" daemon [_thread_blocked, id=2416]
    0x018ca980 JavaThread "main" [_thread_in_native, id=1344]
    Other Threads:
    0x0198ea00 VMThread [id=3344]
    0x01999980 WatcherThread [id=1144]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 495K [0x20a80000, 0x20b20000, 0x211e0000)
    eden space 512K, 95% used [0x20a80000, 0x20af9a98, 0x20b00000)
    from space 64K, 13% used [0x20b10000, 0x20b123b0, 0x20b20000)
    to space 64K, 0% used [0x20b00000, 0x20b00000, 0x20b10000)
    tenured generation total 2776K, used 2270K [0x211e0000, 0x21496000, 0x26a80000)
    the space 2776K, 81% used [0x211e0000, 0x21417858, 0x21417a00, 0x21496000)
    compacting perm gen total 8192K, used 1325K [0x26a80000, 0x27280000, 0x2aa80000)
    the space 8192K, 16% used [0x26a80000, 0x26bcb5e0, 0x26bcb600, 0x27280000)
    ro space 8192K, 62% used [0x2aa80000, 0x2af88018, 0x2af88200, 0x2b280000)
    rw space 12288K, 46% used [0x2b280000, 0x2b80c620, 0x2b80c800, 0x2be80000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778cc000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x37000000 - 0x37012000      C:\WINDOWS\system32\EntApi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x7c9c0000 - 0x7d1d4000      C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x75f80000 - 0x7607c000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77260000 - 0x772fe000      C:\WINDOWS\system32\urlmon.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x10000000 - 0x1002a000      C:\Program Files\AIM Toolbar\AIMBar.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x708f0000 - 0x70903000      C:\WINDOWS\system32\asycfilt.dll
    0x68000000 - 0x68051000      C:\Program Files\Yahoo!\Companion\Installs\cpn0\ycomp5_5_7_0.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x02080000 - 0x0208c000      C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll
    0x02090000 - 0x0214b000      C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\olepro32.dll
    0x41000000 - 0x41013000      C:\Program Files\Google\Google Desktop Search\GoogleDesktopIE.dll
    0x60000000 - 0x6000e000      C:\Program Files\Google\Google Desktop Search\GoogleDesktopAPI2.dll
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x02290000 - 0x02318000      C:\WINDOWS\system32\shdoclc.dll
    0x02320000 - 0x025e5000      C:\WINDOWS\system32\xpsp2res.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x43000000 - 0x43005000      C:\Program Files\Google\Google Desktop Search\GoogleDesktopNetwork1.dll
    0x44000000 - 0x44019000      C:\Program Files\Google\Google Desktop Search\GoogleDesktopNetwork2.dll
    0x02600000 - 0x02628000      C:\WINDOWS\system32\YPCLSP.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x7d1e0000 - 0x7d492000      C:\WINDOWS\system32\msi.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x02ee0000 - 0x02ee7000      C:\Program Files\Yahoo!\Parental Controls\ypcps.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x7d4a0000 - 0x7d783000      C:\WINDOWS\System32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\System32\msls31.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\System32\msimtf.dll
    0x5c2c0000 - 0x5c300000      C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\OLEACC.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x032e0000 - 0x032f1000      C:\WINDOWS\IME\SPGRMR.DLL
    0x03a10000 - 0x03a6b000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x325c0000 - 0x325d2000      C:\Program Files\Microsoft Office\OFFICE11\msohev.dll
    0x18030000 - 0x1803b000      C:\Program Files\Network Associates\VirusScan\scriptproxy.dll
    0x12400000 - 0x12461000      C:\Program Files\Network Associates\VirusScan\mytilus.dll
    0x12580000 - 0x12585000      C:\Program Files\Network Associates\VirusScan\Res09\McShield.dll
    0x12000000 - 0x121e0000      C:\Program Files\Common Files\Network Associates\Engine\mcscan32.dll
    0x66000000 - 0x6601f000      C:\Program Files\Yahoo!\Companion\Installs\cpn0\pubmod.dll
    0x65000000 - 0x6502b000      C:\Program Files\Yahoo!\Companion\Installs\cpn0\ypubc.dll
    0x75c50000 - 0x75cbe000      C:\WINDOWS\system32\JScript.dll
    0x73300000 - 0x73367000      C:\WINDOWS\system32\VBScript.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x76200000 - 0x76271000      C:\WINDOWS\System32\mshtmled.dll
    0x6d590000 - 0x6d5a1000      C:\Program Files\Java\jre1.5.0_02\bin\npjpi150_02.dll
    0x6d400000 - 0x6d417000      C:\Program Files\Java\jre1.5.0_02\bin\jpiexp32.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_02\bin\jpishare.dll
    0x6d640000 - 0x6d7c5000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x6d610000 - 0x6d61c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d166000      C:\Program Files\Java\jre1.5.0_02\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_02\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_02\bin\deploy.dll
    0x6d5d0000 - 0x6d5ed000      C:\Program Files\Java\jre1.5.0_02\bin\RegUtils.dll
    0x6d3e0000 - 0x6d3f4000      C:\Program Files\Java\jre1.5.0_02\bin\jpicom32.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_02\bin\net.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_02\bin\jpeg.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_02\bin\nio.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\EMACS-21.3\BIN;C:\Modeltech_5.8e\win32;.
    USERNAME=Lori A. Stine
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 261488k(27756k free), swap 631708k(320268k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_02-b09) for windows-x86, built on Mar 4 2005 01:53:53 by "java_re" with MS VC++ 6.0

    Breath in. Breath out. Think nice thoughts.
    YPCLSP = Yahoo Parental Controls, Layered Service Providers
    Sun has a page about this problem.
    http://www.java.com/en/download/help/yahoo_child_lock.xml

  • User Tip: BootCamp - Install Windows XP & then Windows 7

    Here is my tip for installing Windows XP in Mountain Lion/BootCamp, and in subsequently upgrading to Windows 7...
    I've tried all the Virtualisation programs: CrossOver, VirtualBox, Fusion, and Parallels - and none can be called 'brisk' in their operation, so I've gone the Bootcamp route.
    If you have an original Windows 7 install disk this is no problem in Mountain Lion. Unfortunately for me, I have Windows XP 32bit OEM disc and a Windows 7 64bit upgrade disc. Mountain Lion doesn't play with XP, so this how to workaround the problem (but you'll need a Snow Leopard disc)....
    1) On your Mac, Insert Windows 7 upgrade disc,
    2) Run Boot Camp and make your Windows Partition the size you want and complete the wizard. Start the Windows 7 installer,
    3) Be prepared to burn a disc with the Bootcamp drivers for later use, for when you install your Windows 7 upgrade disc over Windows XP,
    4) Restart your Mac - and after the chime, hold down the 'alt' key until you see the screen showing Mac HD and the Windows Disc,
    Use the arrow key to highlight the Windows CD, then press the eject key.
    5) Insert your Windows XP CD,
    6) Install Windows XP,
    7) When prompted, insert your product key,
    8) Install Bootcamp Drivers from your SnowLeopard disc from inside Windows.
    Run Apple Software Updates in Windows as many times before no more updates are available in order to get the latest BootCamp drivers.
    If you're content with using Windows XP, the job is completed - save for installing your choice of software - but if you want to upgrade from 32bit XP to 64bit Windows 7....
    If you insert your Windows 7 64bit upgrade disc into your Windows XP 32bit desktop an incompatible warning is given. So here's how to install your Windows 7 64 bit upgrade...
    1) With Windows XP open, insert your Windows 7 disc - and ignore the incompatibility warning,
    2) From the 'start' menu, restart Windows,
    3) When your Mac restarts, hold down the 'alt' key until you see the screen showing Mac HD and the Windows Disc,
    4) Use the arrow to select the Windows disc,
    5) Choose the install option, and agree to the MS terms and conditions,
    6) Your two options are to 'upgrade' or perform a 'custom install',
    7) Choose custom install (this will perform a fresh install of Windows 7 over your Windows XP installation). This will wipe all your previous software applications,
    8) When prompted, insert your product key,
    9) Go watch some paint dry - this will take some time to complete,
    10) When completed, insert the disc previously burned with BootCamp drivers,
    11) The overly bright monitor settings can be altered via the nVidea control panel in Windows,
    12) Install your chosen Windows programs, and you're done.
    Good Luck.

    In my original post on this subject, my Mac Mini is running Mountain Lion. Fortunately for me I also have an old Snow Leopard disc that contained the requisite drivers to install Windows XP. Without this Snow Leopard disc you will not be able to install Windows XP.
    If this is your only method for installing Windows XP - and you are desperate to install Windows XP - a certain well-known auction site currently has Snow Leopard discs for a modest price.
    If, however, you only need to install Windows 7 you do not need a Snow Leopard disc. Installation of Windows 7 should be straightforward and without issue in Mountain Lion.
    As for running virtualisation programs...
    On their own I do not believe that the current crop of virtualisation programs offer a 'brisk' experience in running any flavour of Windows on their own without 'assistance'. However, by first installing Windows in a BootCamp partition there is an advantage in then installing, say, Parallels. You then effectively link Parallels to your BootCamp partition.
    Once Parallels starts for the first time it mirrors all your settings from your BootCamp partition, including all installed Windows programs. The only problem is that Windows will then think that you have Windows installed on two separate computers  (including MS Office). To overcome this you will need to call the MS freephone line to obtain the required Windows OS and MS Office code for manual entry to make the installation work as expected.
    Even so, despite these installation quirks, the benefit is that you get the best of both worlds - a virtualised Windows front-end linked to a fast BootCamp back-end without having to switch between OSX and Windows.
    The caveat is that you need a more 'modern' Mac with plenty of memory to make this combination fly as well compared to using the BootCamp installation alone.

  • 4 important updates failed to install. Code 8007006E Windows update encountered and unknown error

    Windows "Fix It" reports that the problems are "resolved", yet the updates still can't be installed. :-(

    I have the same problem, meanwhile 5 important updates not installable on Windows 7, all with error 8007006E. I have tried every proceduce I have ever heard of and have put them all together in a batch file. After execution the error still persists. Any
    other ideas, please?
    my service.bat:
    net stop wuauserv
    net stop cryptSvc
    net stop bits
    net stop msiserver
    rmdir c:\windows\SoftwareDistribution.old  /q /s
    ren c:\windows\SoftwareDistribution SoftwareDistribution.old
    rmdir c:\windows\System32\catroot.old /q /s
    ren c:\windows\System32\catroot catroot.old
    rmdir c:\windows\System64\catroot.old /q /s
    ren c:\windows\System64\catroot catroot.old
    rmdir c:\windows\System32\catroot2 /q /s
    rmdir c:\windows\System64\catroot2 /q /s
    REM MSI Installer
    sc config msiserver start= demand
    MSIExec /unregister
    MSIExec /regserver
    regsvr32.exe /s %windir%\system32\msi.dll
    regsvr32 c:\windows\system32\vbscript.dll /s
    regsvr32 c:\windows\system32\mshtml.dll /s
    regsvr32 c:\windows\system32\msjava.dll /s
    regsvr32 c:\windows\system32\jscript.dll /s
    regsvr32 c:\windows\system32\msxml.dll /s
    regsvr32 c:\windows\system32\actxprxy.dll /s
    regsvr32 c:\windows\system32\shdocvw.dll /s
    regsvr32 wuapi.dll /s
    regsvr32 wuaueng1.dll /s
    regsvr32 wuaueng.dll /s
    regsvr32 wucltui.dll /s
    regsvr32 wups2.dll /s
    regsvr32 wups.dll /s
    regsvr32 wuweb.dll /s
    regsvr32 Softpub.dll /s
    regsvr32 Mssip32.dll /s
    regsvr32 Initpki.dll /s
    regsvr32 softpub.dll /s
    regsvr32 wintrust.dll /s
    regsvr32 initpki.dll /s
    regsvr32 dssenh.dll /s
    regsvr32 rsaenh.dll /s
    regsvr32 gpkcsp.dll /s
    regsvr32 sccbase.dll /s
    regsvr32 slbcsp.dll /s
    regsvr32 cryptdlg.dll /s
    regsvr32 Urlmon.dll /s
    regsvr32 Shdocvw.dll /s
    regsvr32 Msjava.dll /s
    regsvr32 Actxprxy.dll /s
    regsvr32 Oleaut32.dll /s
    regsvr32 Mshtml.dll /s
    regsvr32 msxml.dll /s
    regsvr32 msxml2.dll /s
    regsvr32 msxml3.dll /s
    regsvr32 Browseui.dll /s
    regsvr32 shell32.dll /s
    regsvr32 wuapi.dll /s
    regsvr32 wuaueng.dll /s
    regsvr32 wuaueng1.dll /s
    regsvr32 wucltui.dll /s
    regsvr32 wups.dll /s
    regsvr32 wuweb.dll /s
    regsvr32 jscript.dll /s
    regsvr32 atl.dll /s
    regsvr32 Mssip32.dll /s
    net start wuauserv
    net start cryptSvc
    net start bits
    net start msiserver
    sfc.exe /scannow
    REM Systemupdate-Vorbereitungstool für Windows 7 (KB947821) [Oktober 2014]
    Windows6.1-KB947821-v34-x64.msu
    MicrosoftFixit50528.msi
    WindowsUpdateDiagnostic.diagcab

  • How does the window selected on the spectral measurements express vi affect the output?

    I'm using the spectral measurements express vi to find the power spectral density of a fairly broadband signal. I've already discovered a bug in the express vi; it doesn't divide the power spectrum by the equivalent noise bandwith for the window as it should. However, even after taking this into account by using the scaled time window vi to divide this factor out, the PSD is still changing with the window. How can I get the PSD to be constant with varying windows??

    I would like you to prove the "bug" that you're describing by creating an example that shows the calculated and the expected results. By opening the code of the "Spectral Measurements" Express VI you can dig into the heart of the calculation, and there (in the "ma_FFT Power Spectrum and PS Density no State.vi") you will see that the Power Spectral Density indeed IS calculated by using the formula PSD = (Power Spectrum/(df*Noise Power BW of Window)). See the attached PSD.jpg that shows where the calculation happens.
    The Power Spectral Density is supposed to be dependant of the chosen Window. Please read chapter 5 "Smoothing Windows" in the "La
    bVIEW Analysis Consepts" manual.
    Best regards,
    Philip C.
    National Instruments
    - Philip Courtois, Thinkbot Solutions
    Attachments:
    PSD.JPG ‏139 KB

  • Windows update fails 8024a000

    was working with the last build but with 10041 it doesn't, gives the error 8024A000 straight away
    I'm running Enterprise preview

    It doesnt work for me and i find this one 
    Stopping services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run
    as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then press ENTER after each command.
            net stop wuauserv
            net stop bits
            net stop cryptsvc
    4.     Please do not close the Command Prompt window.
    Renaming folders pertaining to Windows Update
    1.     At the command prompt, type the following commands, and then press Enter after each command:
    2.     ren %systemroot%\System32\Catroot2 Catroot2.old
    3.     ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
    4.     Please do not close the Command Prompt window.
    Registering DLL’s pertaining to Windows Update
    1.     Please copy and paste the following text into a new Notepad document, and save the file asWindowsUpdate.BAT
    2.     If saved correctly the icon will change from a Notepad file to BAT file which has two blue cogs as its icon.
                -or-
    3.     You can manually type each command at the command prompt:
    regsvr32 c:\windows\system32\vbscript.dll /s
    regsvr32 c:\windows\system32\mshtml.dll /s
    regsvr32 c:\windows\system32\msjava.dll /s
    regsvr32 c:\windows\system32\jscript.dll /s
    regsvr32 c:\windows\system32\msxml.dll /s
    regsvr32 c:\windows\system32\actxprxy.dll /s
    regsvr32 c:\windows\system32\shdocvw.dll /s
    regsvr32 wuapi.dll /s
    regsvr32 wuaueng1.dll /s
    regsvr32 wuaueng.dll /s
    regsvr32 wucltui.dll /s
    regsvr32 wups2.dll /s
    regsvr32 wups.dll /s
    regsvr32 wuweb.dll /s
    regsvr32 Softpub.dll /s
    regsvr32 Mssip32.dll /s
    regsvr32 Initpki.dll /s
    regsvr32 softpub.dll /s
    regsvr32 wintrust.dll /s
    regsvr32 initpki.dll /s
    regsvr32 dssenh.dll /s
    regsvr32 rsaenh.dll /s
    regsvr32 gpkcsp.dll /s
    regsvr32 sccbase.dll /s
    regsvr32 slbcsp.dll /s
    regsvr32 cryptdlg.dll /s
    regsvr32 Urlmon.dll /s
    regsvr32 Shdocvw.dll /s
    regsvr32 Msjava.dll /s
    regsvr32 Actxprxy.dll /s
    regsvr32 Oleaut32.dll /s
    regsvr32 Mshtml.dll /s
    regsvr32 msxml.dll /s
    regsvr32 msxml2.dll /s
    regsvr32 msxml3.dll /s
    regsvr32 Browseui.dll /s
    regsvr32 shell32.dll /s
    regsvr32 wuapi.dll /s
    regsvr32 wuaueng.dll /s
    regsvr32 wuaueng1.dll /s
    regsvr32 wucltui.dll /s
    regsvr32 wups.dll /s
    regsvr32 wuweb.dll /s
    regsvr32 jscript.dll /s
    regsvr32 atl.dll /s
    regsvr32 Mssip32.dll /s
     Restarting services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run
    as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then press ENTER after each command.
            net start wuauserv
            net start bits
            net start cryptsvc
            exit
    4.     Now please check for updates using Windows Update to see if the issue has been resolved.
    These steps were provided by MVP, BSOD."
    But this one doesnt help to, any ideas?

  • Error Code 80072F8F- windows update fails

    Every time I try to update windows it shows eror with  Code 80072F8F. I uninstalled Mcafee and tried to update, same error occurred. My system clock shows correct time.
    I recently upgraded from 32-bit Vista Home premium (Dell) to 32-bit 7 Home premium using the Dell 7 Upgrade DVD.
    I have core to duo Intel T6400 (2 GHz) Processor, 3GB RAM, 128MB NVidia Graphics memory and 250 GB Hard Drive.

    HI
    Disable any anti-virus application or firewall on the computer temporarily.
    Manually download the update files and then install it from the hard
    disk.
    Please pick the updates from the website of Microsoft Download Center:
    http://catalog.update.microsoft.com/v7/site/Home.aspx  
    General Windows Update Troubleshooting
    The following outlines how to stop services pertaining to Windows Update, rename system folders, register related DLL files, and then restart the previously mentioned services. This troubleshooting generally applies to all Windows Update related issues.
    Stopping services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then press ENTER after each command.
            net stop wuauserv
            net stop bits
            net stop cryptsvc
     Please do not close the Command Prompt window.
    Renaming folders pertaining to Windows Update
    1.     At the command prompt, type the following commands, and then press Enter after each command:
    2.     ren %systemroot%\System32\Catroot2 Catroot2.old
    3.     ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
    4.     Please do not close the Command Prompt window.
    Registering DLL’s pertaining to Windows Update
    1.     Please copy and paste the following text into a new Notepad document, and save the file as WindowsUpdate.BAT
    2.     If saved correctly the icon will change from a Notepad file to BAT file which has two blue cogs as its     icon.
                                           -or-
    3.     You can manually type each command at the command prompt:
            regsvr32 c:\windows\system32\vbscript.dll /s
            regsvr32 c:\windows\system32\mshtml.dll /s
            regsvr32 c:\windows\system32\msjava.dll /s
            regsvr32 c:\windows\system32\jscript.dll /s
            regsvr32 c:\windows\system32\msxml.dll /s
            regsvr32 c:\windows\system32\actxprxy.dll /s
            regsvr32 c:\windows\system32\shdocvw.dll /s
            regsvr32 wuapi.dll /s
            regsvr32 wuaueng1.dll /s
            regsvr32 wuaueng.dll /s
            regsvr32 wucltui.dll /s
            regsvr32 wups2.dll /s
            regsvr32 wups.dll /s
            regsvr32 wuweb.dll /s
            regsvr32 Softpub.dll /s
            regsvr32 Mssip32.dll /s
            regsvr32 Initpki.dll /s
            regsvr32 softpub.dll /s
            regsvr32 wintrust.dll /s
            regsvr32 initpki.dll /s
            regsvr32 dssenh.dll /s
            regsvr32 rsaenh.dll /s
            regsvr32 gpkcsp.dll /s
            regsvr32 sccbase.dll /s
            regsvr32 slbcsp.dll /s
            regsvr32 cryptdlg.dll /s
            regsvr32 Urlmon.dll /s
            regsvr32 Shdocvw.dll /s
            regsvr32 Msjava.dll /s
            regsvr32 Actxprxy.dll /s
            regsvr32 Oleaut32.dll /s
            regsvr32 Mshtml.dll /s
            regsvr32 msxml.dll /s
            regsvr32 msxml2.dll /s
            regsvr32 msxml3.dll /s
            regsvr32 Browseui.dll /s
            regsvr32 shell32.dll /s
            regsvr32 wuapi.dll /s
            regsvr32 wuaueng.dll /s
            regsvr32 wuaueng1.dll /s
            regsvr32 wucltui.dll /s
            regsvr32 wups.dll /s
            regsvr32 wuweb.dll /s
            regsvr32 jscript.dll /s
            regsvr32 atl.dll /s
            regsvr32 Mssip32.dll /s
    Restarting services pertaining to Windows Update
    1.     Click Start, click All Programs, click Accessories, right-click Command Prompt, and select Run as Administrator.
    2.     If you receive a notification from User Account Control simply click Continue.
    3.     At the command prompt, type the following, commands and then
    press ENTER after each command.
            net start wuauserv
            net start bits
            net start cryptsvc
             exit
    now try running updates see that if the issue can be resolved
    Regards
    Nikhil

  • Need help to modify vb script used in XP for Windows 7

    Can somebody help me in modifying scripts that were used for Windows XP, to run on Windows 7.
    My friend advised me to change it to .ps1, but still some flaws..
    Cscript \\nologo ????  is used for what purpose ?

    Almost all VBScripts written to work in Windows XP will also work for Windows 7, so there's not much to modify (unless you have specific examples of scripts not working).
    Having said that, PowerShell is the future! It takes a bit more than to just change the file extension to .ps1 though (this may be why your scripts aren't working!).
    The VBScript-to-Windows PowerShell Conversion Guide
    http://technet.microsoft.com/en-us/library/ee221101.aspx
    C:\>cscript /?
    Microsoft (R) Windows Script Host Version 5.7
    Copyright (C) Microsoft Corporation. All rights reserved.
    Usage: CScript scriptname.extension [option...] [arguments...]
    Options:
     //B         Batch mode: Suppresses script errors and prompts from displaying
     //D         Enable Active Debugging
     //E:engine  Use engine for executing script
     //H:CScript Changes the default script host to CScript.exe
     //H:WScript Changes the default script host to WScript.exe (default)
     //I         Interactive mode (default, opposite of //B)
     //Job:xxxx  Execute a WSF job
     //Logo      Display logo (default)
     //Nologo    Prevent logo display: No banner will be shown at execution time
     //S         Save current command line options for this user
     //T:nn      Time out in seconds:  Maximum time a script is permitted to run
     //X         Execute script in debugger
     //U         Use Unicode for redirected I/O from the console
    C:\>
    Andreas Hultgren
    MCTS, MCITP
    http://ahultgren.blogspot.com/

Maybe you are looking for

  • How to get value of a Field if field name given in a String ?

    Hello, I've a String variable which contains a value such as X.Y.Z. The last one (Z) is a primitive type, others (X and Y) are my own classes. class C1 C2 X; class C2 C3 Y; class C3 int Z; C1 var = new C1(); When I encounter X.Y.Z in the String, I wa

  • Issue while adding Help Link using personalization

    Hi... i am adding a help links on all the iRec pages using personalization. Requirment:- Need to have a help link on all the pages of iRec at the left corner of the page So i made the following changes to do this... 1. Created a new Region(This regio

  • Additional account assignments could not be determined in inbound idoc

    Hi Gurus, Iam getting the error for inter company billiing idoc . Direction         2     Inbox Current status    51 --> Application document not posted Basic type        INVOIC01 Extension         ZINVOIC2 Message type      INVOIC Partner No.      

  • How to hide a column (clnt) in tableview using MVC?

    Hy, I would like, please if you cand help me: how to hide a column (clnt) in tableview using MVC for example on sflight table. Thanks

  • Mail not regularly received?

    Mail arrives in box erratically. Sometimes it can be picked up using another computer (windows) on the same network but is unavailable on this iMac. Formatting incomplete and not complete. Mail disappears from box -- I did not delete. A message sayin