Start explorer.exe with vba

Hi,
I found on the web that you can apply registry changes take effect immediately without restarting an application (Excel) by ending the explorere.exe process in the taskmanager and restart it.
The following
Shell ("cmd.exe /c taskkill /f /im explorer.exe")
ends the process but how can I restart it. just running explorer.exe is not enough.

Try Below
Sub Rumi()
Shell ("cmd.exe /c taskkill /f /im explorer.exe")
Application.Wait Now() + TimeValue("00:00:05")
Shell "cmd.exe /c explorer.exe"
End Sub
Best Regards,
Asadulla Javed, Kolkata
Please do not forget to click “Vote as Helpful” if any post helps you and
"Mark as Answer”if it solves the issue.

Similar Messages

  • Start SmartVIew Addin with VBA

    Hi,
    I need to activate the Addin of SmartView via VBA code from an Excel Worksheet.
    So far I created a worksheet and added the module SmartViewVBA to the VBA-Project.
    I wrote a program to start the addin:
    Sub Open_SMARTVIEW()
    AddIns.Add Filename:="C:\Oracle\SmartView\Bin\HsTbar.xla"
    AddIns("Oracle Hyperion Smart View for Office, Fusion Edition").Installed = True
    End Sub
    This added the HSTbar.xla to my VBA-projects. I also got the tool bar activated by this.
    In the extras / addins I see that the SmartView Addin is activated. Nevertheless all SmartView Buttons do not react when I click on them and I am missing the SmartView menu bar.
    Has anybody an idea or hint, what needs to be done in addition?
    Best regards,
    Helge

    Smart View is a com add-in so you cannot unload it this way you would need to use code to change the 'connect' state of the com add-in:
    Function LoadSV(enable As Boolean)
    Dim oAin As AddIn
    Dim comAin As COMAddIn
    For Each oAin In Application.AddIns
    Debug.Print oAin.Name
    If oAin.Name = "HsTbar.xla" Then
    Debug.Print oAin.Installed
    oAin.Installed = enable
    End If
    Next
    For Each comAin In Application.COMAddIns
    Debug.Print comAin.Description
    If comAin.Description = "Oracle Hyperion Smart View for Office, Fusion Edition" Then
    Debug.Print comAin.Connect
    comAin.Connect = enable
    End If
    Next
    End Function
    This will vary based on your smart view version and OS. In fact in windows 7 you would need to be running Excel as an admin and this in unlikely. Is there some reason you are needing to unload SV in VBA?

  • Starting photoshop.exe with start parameters, or an application start script

    hi all,
    I need to start photoshop for a mass of files and need to automate the photoshop start.
    I would have some questions:
    - does photoshop CS6 support any start parameters passed via the command line?
    such as:   photoshop -f xxxx.PSD
    - is there any documentation?
    - is it possible to call photoshop from an actionscript program and pass start
    parameters?
    I found one sample, but this does not work (anymore) with CS6.
    - of course, I can define a script being executed at application start, i.e. when
    photoshop starts. but this script would always be executed, also outside of
    my automation context. or I would need to define and undefine it's execution
    to apply the automated photoshop call
    did anybody solve such problems? how?
    best
    stephen

    There may be several ways you can get details into Photoshop
    You can write the details to a file and get your script to read that file.
    Another option would be to start Photoshop set some temp vars then run your script and read them.
    As an example of setting a var in Photoshop using VBS ...
    Option Explicit
    Dim objRegistry, Key, Info,fso,appRef,Script
    Function ReadReg(RegPath)
    Set objRegistry = CreateObject("Wscript.shell")
    Key = objRegistry.RegRead(RegPath)
    ReadReg = Key
    End Function
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set appRef = CreateObject( "Photoshop.Application" )
    Info = ReadReg("HKLM\SOFTWARE\Adobe\Photoshop\12.0\ApplicationPath")
    Script =  "$.setenv('Registry','" & Info & "\');"
    appRef.DoJavaScript( Script )
    You can get the result with..
    alert($.getenv('Registry'));
    Another alternative is to create your script on the fly then run it.

  • Explorer.exe error on windows 8 with blank message and a yellow warning with ok button

    Whenever i boot my laptop the attached screenshot is always popping up, it shows a window with "Explorer.exe" with a yellow warning sign and a "OK" button. 

    ok, I found a possible solution here:
    [FIX] Getting “Explorer.exe” Error On Windows 8 Start Up
    http://www.kapilarya.com/fix-getting-explorer-exe-error-on-windows-8-start-up
    Open regedit.exe, go to
    HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows
    and delete the highlighted string "Load". This should fix the issue.
    "A programmer is just a tool which converts caffeine into code"

  • Explorer.exe (?) crashing without warning, closing all open programs

    Hello! I recently got a windows 8.1 computer and have been using it for only a week, but I've been having issues with what I can only assume is explorer.exe.  
    The taskbar will randomly completely disappear, leaving only a blue empty space at the bottom of the screen (possibly getting rid of my desktop background as well), close every program I have open without warning aside from the one I'm using at the time
    (generally google chrome) and doesn't seem to restart itself on its own. I have to ctrl+alt+del to get to the task manager to manually start explorer.exe again, which works without an issue aside from possible lost unsaved progress from the closed
    programs. I don't get any pop up saying windows has encountered any errors, it just does it for maybe no reason.
    I can't think of why it would be doing this because again, I've only been using it for a week. It doesn't happen often, it's done it maybe two or three times but it seems it might not be stopping any time soon. I checked the reliability monitor and
    it doesn't seem to recognise this issue as anything, nothing shows up for this. Any help to resolve this would be much appreciated, or even just finding out why it's doing it. Thank you!

    Please provide us with your Event Viewer administrative logs by following these steps:
    Click Start Menu
    Type eventvwr into Search programs and files (do not hit enter)
    Right click eventvwr.exe and click Run as administrator
    Expand Custom Views
    Click Administrative Events
    Right click Administrative Events
    Save all Events in Custom View As...
    Save them in a folder where you will remember which folder and save as Errors.evtx
    Go to where you saved Errors.evtx
    Right click Errors.evtx -> send to -> compressed (zipped) folder
    Upload the .zip file to Onedrive or a file sharing service and put a link to it in your next post
    If you have updated to win 8.1 and you get the error message "the system cannot find the file specified" it is a known problem.
     The work around is to edit the registry.  If you are not comfortable doing this DONT.  If you are, backup the key before you do
    Press Win+"R" and input regedit
    Navigate to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels. Delete "Microsoft-Windows-DxpTaskRingtone/Analytic"
    Wanikiya and Dyami--Team Zigzag

  • Problem: Adobe CC deployment of Photoshop kills Explorer.exe

    Hello,
    I have created several deployment packages lately via the Creative cloud packager. They are deployed via SCCM and when both InDesign and Illustrator have been working fine while Photoshop kills the Explorer.exe under the deployment.
    The explorer.exe does not come back automatically and have to be started via task manager.
    I also created a package that includes several programs, among them Photoshop and the same happens with it.
    Note: Photoshop do complete the installation and are working correctly.
    Is there anyone that have encountered this problem before, and do anyone have a solution for it?

    Brackee wrote:
    Is there anyone that have encountered this problem before, and do anyone have a solution for it?
    Oh so it is not just me then.  I have this issue and other than doing what you do and starting explorer.exe back up no solution.  As you say the install completes fine and as I build Adobe into our image it is not really a big issue to do this once every six months.

  • Protected Mode of Reader X does not work if explorer.exe is not a parent process [2008R2 RDS/TS]

    We are running IE8 as a RemoteApp on Windows Server 2008 R2 Remote Desktop Services "Terminal Server". It has Reader X installed.
    When opening linked PDF document, it shows the protected mode "fail" dialog.
    If, instead, explorer.exe is launched as remote app, and ie8 is started from explorer,
    opening PDF files in protected mode works.
    This is regardless of settings, 32/64 bitness, whether iexplore is launched as remote app or
    in full RDP session using "alternate shell:". If explorer is not parent of the process subtree,
    protected mode doesn't work.
    What might be the issue, and is there a workaround that does not involve starting explorer.exe?

    This problem is fixed in the latest Reader X update 10.1.

  • How to clone explorer.exe

    I need help.
    I can't find how to generate a cloned explorer.exe.
    Here is what I've done so far:
    I cloned $(_PUBLICROOT)\shell\oak\hpc\explorer and copied it under my BSP
    I rerouted the included in the sources file so the clone is able to find all includes
    Now I can't find how to generate explorer.exe. The cloned component generates explorer.lib. 
    How do I build explorer.exe with this new created lib?
    Thank you very much!
    David

    I answered myself, have been able to compile and link it.
    But I also found minshell under wceshellfe that fits perfectly my need.
    Thanks

  • Problem with explorer.exe when LR starts

    When starting LR (V1.0) the task manager reports that explorer.exe is eating up about 50% of my CPU. Closing LR does not have an effect. Only a re-start clears it up. This is now the second time I have installed LR as there was a conflict the first time I upgraded from the beta 4 version. I have searched through many of the same folders that my LR library uses with Bridge and Windows explorer and there was no problem with explorer.exe. Only upon starting LR does the problem occur. Any advice much appreciated. Thank you!
    Windows XP Media Center Edition SP2
    Pentium 4 3.2 GHz
    2 GB RAM

    Firefox 2.0.0.20 is the last ever version of Firefox for Win98 / SE / ME.
    You can try KernelEx to get Firefox 3+ to work, but it would be very slow with an old PC of less than 750Mhz.
    http://sourceforge.net/projects/kernelex/

  • Start-Process ignores the parameter "-wait" with explorer.exe

    Hi all,
    maybe it´s a stupid question, but...
    Start-Process notepad.exe -Wait
    ...will wait for closing the process "notepad.exe".
    Start-Process explorer.exe -Wait
    ...will not wait for closing it, instead the script will go on.
    My question: Why? :) is it because "explorer.exe" is a core element of Windows and there are more then one process? For whaty exactly is the parameter "-wait" waiting for? Finishing the process name, the Process ID?
    is it a bug?
    Otherwise, do you have a good idea for that scenario:
    a script will be started and opens a dedicated network share. Within this share the user (ServiceDesk Employee) can paste a CSV file, and after closing the Explorer, the script will read in this CSV and import that informations.
    Thank you guys!

    I think the issue is due to explorer.exe is always running, if you stop that process, then you will lose your entire desktop. By opening File Explorer, a new explorer.exe process does not start up. You can verify this by opening task manager, and under the
    process tab, look at your process count, and then open a few File Explorer windows, this count does not change.
    Your script may need to be a two step process, where the Help Desk user manually copies the CSV file, then runs the script, or you can do a Read-Host, where they put in the path to the CSV file, and then your script can copy it to where it needs to go, and
    then continue its execution.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • Explorer.exe crashes at start of profile creation when domain-joined (using Samba 3.6.25)

    Not sure if this is the right forum?
    Getting this error (copied from Event Viewer) on a Windows 8.1 Pro client - an event ID of 1000, every time at the start of profile creation when logging in with a domain account. So explorer.exe crashes because of "twinui.appcore.dll" and profile
    creation is taking a very long time (about 17 minutes).
    Then after being stuck during "Almost ready" screen we are getting a Start-button that is stuck (non-clickable) (and also arrows on the metro-screen icons). Restarting explorer.exe manually helps to get a functional Start-button again.
    Tried using a roaming profile and without using a roaming profile (Group Policy setting to always keep profiles local). That does not seem to matter.
    Naam van toepassing met fout: Explorer.EXE, versie: 6.3.9600.17667, tijdstempel: 0x54c6f7c2
    Naam van module met fout: twinui.appcore.dll, versie: 6.3.9600.17415, tijdstempel: 0x54503801
    Uitzonderingscode: 0x80270233
    Foutmarge: 0x000000000008cb57
    Id van proces met fout: 0xf28
    Starttijd van toepassing met fout: 0x01d05bf587567d80
    Pad naar toepassing met fout: C:\Windows\Explorer.EXE
    Pad naar module met fout: C:\Windows\System32\twinui.appcore.dll
    Rapport-id: cf9c3ec8-c7e8-11e4-8262-0019bbd6f620
    Volledige pakketnaam met fout: 
    Relatieve toepassings-id van pakket met fout: 
    Using Samba 3.6.25 with an LDAP back-end. Installed all updates for Windows 8.1 Pro client.
    Thanks in advance for any advice.

    Pasting the crash dump analysis using WinDbg (x64):
    Microsoft (R) Windows Debugger Version 6.3.9600.17298 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\LocalDumps\explorer.exe.824.dmp]
    User Mini Dump File with Full Memory: Only application data is available
    ************* Symbol Path validation summary **************
    Response                         Time (ms)     Location
    Deferred                                       srv*DownstreamStore*http://msdl.microsoft.com/download/symbols
    Symbol search path is: srv*DownstreamStore*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 8 Version 9600 MP (2 procs) Free x64
    Product: WinNt, suite: SingleUserTS
    Built by: 6.3.9600.17031 (winblue_gdr.140221-1952)
    Machine Name:
    Debug session time: Thu Mar 12 11:53:12.000 2015 (UTC + 1:00)
    System Uptime: 0 days 21:10:37.682
    Process Uptime: 0 days 0:01:05.000
    Loading unloaded module list
    This dump file has an exception of interest stored in it.
    The stored exception information can be accessed via .ecxr.
    (338.f94): Unknown exception - code 80270233 (first/second chance not available)
    kernel32!RaiseFailFastException+0xae:
    00007ffe`cb2faabe e8b1000000      call    kernel32!SignalStartWerSvc (00007ffe`cb2fab74)
    0:018> !analyze -v
    *                        Exception Analysis                                  
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for sppc.dll -
    FAULTING_IP:
    twinui_appcore!CCriticalFailureHandler::_RaiseFailFastException+c7
    00007ffe`bed7cb57 488b4d37        mov     rcx,qword ptr [rbp+37h]
    EXCEPTION_RECORD:  ffffffffffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 00007ffebed7cb57 (twinui_appcore!CCriticalFailureHandler::_RaiseFailFastException+0x00000000000000c7)
       ExceptionCode: 80270233
      ExceptionFlags: 00000001
    NumberParameters: 1
       Parameter[0]: ffffffff80070005
    CONTEXT:  0000000000000000 -- (.cxr 0x0;r)
    rax=000000000a14f560 rbx=000000000a14fa70 rcx=000000000a14f560
    rdx=0000000000000000 rsi=0000000000000001 rdi=000000000a14f560
    rip=00007ffecb2faabe rsp=000000000a14f480 rbp=000000000a14fad9
     r8=0000000000000000  r9=0000000000000006 r10=0000000000000000
    r11=00007ffecb544dd7 r12=00007ffebed00090 r13=0000000008234160
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei pl zr na po nc
    cs=0033  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000244
    kernel32!RaiseFailFastException+0xae:
    00007ffe`cb2faabe e8b1000000      call    kernel32!SignalStartWerSvc (00007ffe`cb2fab74)
    PROCESS_NAME:  explorer.exe
    ERROR_CODE: (NTSTATUS) 0x80270233 - <Unable to get error code text>
    EXCEPTION_CODE: (HRESULT) 0x80270233 (2150040115) - <Unable to get error code text>
    EXCEPTION_PARAMETER1:  ffffffff80070005
    NTGLOBALFLAG:  2000100
    APPLICATION_VERIFIER_FLAGS:  48004
    APP:  explorer.exe
    ANALYSIS_VERSION: 6.3.9600.17298 (debuggers(dbg).141024-1500) amd64fre
    FAULTING_THREAD:  0000000000000f94
    BUGCHECK_STR:  APPLICATION_FAULT_SHELL_COMPONENT_STARTUP_FAILURE_ERROR_CODE_ffffffff80270233
    PRIMARY_PROBLEM_CLASS:  SHELL_COMPONENT_STARTUP_FAILURE_ERROR_CODE_ffffffff80270233
    DEFAULT_BUCKET_ID:  SHELL_COMPONENT_STARTUP_FAILURE_ERROR_CODE_ffffffff80270233
    LAST_CONTROL_TRANSFER:  from 00007ffebed7cb57 to 00007ffecb2faabe
    STACK_TEXT:  
    00000000`0a14f480 00007ffe`bed7cb57 : 00000000`80070005 00000000`00000004 ffffffff`80070005 00000000`00000000 : kernel32!RaiseFailFastException+0xae
    00000000`0a14fa50 00007ffe`bed7c8c2 : 00000000`00000a9c 00000000`0a14fc20 00000000`000003a8 00000000`000003a8 : twinui_appcore!CCriticalFailureHandler::_RaiseFailFastException+0xc7
    00000000`0a14fb40 00007ffe`bed8b349 : 00000000`00000000 00007ffe`bed00090 00000000`000003a8 00000000`00000004 : twinui_appcore!CCriticalFailureHandler::HandleFailure+0xba
    00000000`0a14fb90 00007ffe`bed19d8b : 00000000`08242340 00000000`0a14fc00 00000000`00000000 00007ffe`bed34838 : twinui_appcore!`Microsoft::WRL::Module<1,Microsoft::WRL::Details::DefaultModule<1> >::Create'::`2'::`dynamic atexit destructor for 'module''+0x7a79
    00000000`0a14fbd0 00007ffe`c5055bf1 : 00000000`80070005 00000000`08242340 00000000`00000000 00007ffe`bed19d30 : twinui_appcore!CProcessLifetimeManager::PerformDelayedInitialization+0x5b
    00000000`0a14fc20 00007ffe`c5055519 : 00000000`00000000 00000000`08242340 00000000`00000000 00000000`00000034 : windows_immersiveshell_serviceprovider!CImmersiveShellController::_CreateComponents+0x536
    00000000`0a14fcc0 00007ffe`c505566e : 00007ffe`00000045 00000000`00000000 00000000`082335f8 00000000`02ea60e8 : windows_immersiveshell_serviceprovider!CImmersiveShellController::_ImmersiveShellComponentsThreadProcInternal+0x17d
    00000000`0a14fd50 00007ffe`b41995cd : 00007ffe`c5050000 00007ffe`c50555f0 00000000`00000000 00000000`00000000 : windows_immersiveshell_serviceprovider!CImmersiveShellController::s_ImmersiveShellComponentsThreadProc+0x7a
    00000000`0a14fd80 00007ffe`cb2113d2 : 00007ffe`b4199580 00000000`00000000 00000000`00000000 00000000`00000000 : verifier!AVrfpStandardThreadFunction+0x4d
    00000000`0a14fdc0 00007ffe`cb51e954 : 00007ffe`cb2113b0 00000000`00000000 00000000`00000000 00000000`00000000 : kernel32!BaseThreadInitThunk+0x22
    00000000`0a14fdf0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x34
    FOLLOWUP_IP:
    twinui_appcore!CCriticalFailureHandler::HandleFailure+ba
    00007ffe`bed7c8c2 488b6c2458      mov     rbp,qword ptr [rsp+58h]
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  twinui_appcore!CCriticalFailureHandler::HandleFailure+ba
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: twinui_appcore
    IMAGE_NAME:  twinui.appcore.dll
    DEBUG_FLR_IMAGE_TIMESTAMP:  54503801
    STACK_COMMAND:  ~18s; .ecxr ; kb
    FAILURE_BUCKET_ID:  SHELL_COMPONENT_STARTUP_FAILURE_ERROR_CODE_ffffffff80270233_80270233_twinui.appcore.dll!CCriticalFailureHandler::HandleFailure
    BUCKET_ID:  APPLICATION_FAULT_SHELL_COMPONENT_STARTUP_FAILURE_ERROR_CODE_ffffffff80270233_twinui_appcore!CCriticalFailureHandler::HandleFailure+ba
    ANALYSIS_SOURCE:  UM
    FAILURE_ID_HASH_STRING:  um:shell_component_startup_failure_error_code_ffffffff80270233_80270233_twinui.appcore.dll!ccriticalfailurehandler::handlefailure
    FAILURE_ID_HASH:  {bc588def-f8dc-26b8-dac8-a057fb6557c4}
    Followup: MachineOwner
    0:018> lmvm twinui_appcore
    start             end                 module name
    00007ffe`becf0000 00007ffe`bee20000   twinui_appcore   (pdb symbols)          downstreamstore\twinui.appcore.pdb\310246EA4A1E4BF8A48502B727A7376B1\twinui.appcore.pdb
        Loaded symbol image file: twinui.appcore.dll
        Image path: C:\Windows\System32\twinui.appcore.dll
        Image name: twinui.appcore.dll
        Timestamp:        Wed Oct 29 01:42:41 2014 (54503801)
        CheckSum:         0013A0E7
        ImageSize:        00130000
        File version:     6.3.9600.17415
        Product version:  6.3.9600.17415
        File flags:       0 (Mask 3F)
        File OS:          40004 NT Win32
        File type:        2.0 Dll
        File date:        00000000.00000000
        Translations:     0409.04b0
        CompanyName:      Microsoft Corporation
        ProductName:      Microsoft® Windows® Operating System
        InternalName:     TWINUI.APPCORE
        OriginalFilename: TWINUI.APPCORE.dll
        ProductVersion:   6.3.9600.17415
        FileVersion:      6.3.9600.17415 (winblue_r4.141028-1500)
        FileDescription:  TWINUI.APPCORE
        LegalCopyright:   © Microsoft Corporation. All rights reserved.
    Does this make any sense to anyone?

  • What html code will start an EXE (program) with a click on a webpage link?

    The code in bold below worked. After I switched my browser from IE 11 to Firefox to get the hover on hotspots to work, the program gave me this error message. I moved the EXE file to my local file folder and tried it as shown below. Still no success. Any suggestions?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Family Tree Charts</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css">
    <!--
    body,td,th {
        color: #000;
    -->
    </style></head>
    <body link=blue vlink=blue>
    <table width="100%" height="25" border="0" cellpadding="4" cellspacing="0">
      <tr>
        <td width="93%" height="27" bgcolor="#EFEFEF"> <div align="center"><font color="#999999">
        <b>This Software Allows You To Review Neat Charts of Your Family Tree </b></font></div></td>
        <td width="7%" bgcolor="#CCFFFF"> <div align="center"><A href="Mementos_Menu.html"><font size="2">Back</font></a></div></td>
      </tr>
    </table><BR><center>
    <br>
    <FONT color=#ff00ff><strong>Click the link below to download a special software program for your PC.</strong></FONT><br>
    <br>
    <a href="http://jdmcox.com/"><strong>Cox Website</strong></a><br><br>
    <strong>ITEM 1</strong> (AT THIS  WEBSITE) IS  THE <strong>FAMILY TREE CHART</strong> PROGRAM.<br>
    It is called <strong>Simple Family Tree</strong><br>
    <table width="80%" border="2" cellspacing="2" cellpadding="2">
      <tr>
        <td width="49%" align="left" valign="top"><FONT color=#ff00ff><strong>Click the link below to use this special software program after you download and install the program.</strong></FONT><br>
    <br>
    <!--<a href="C:\Program Files (x86)\Simple Family Tree\Simple Family Tree.exe"><strong>Family Tree Charts Program by Doug Cox</strong></a><br><FONT color=#ff00ff>
    -->
    <a href="C:\Users\Tom and Polly\Documents\Genealogy CD\Simple Family Tree\Simple Family Tree.exe"><b>Family Tree Charts Program</b></a><br><br>
    <FONT color=#ff00ff><strong>Click  the &quot;run&quot; button for both warning messages.<br>
    Click the &quot;READ THIS!&quot; menu option when the program opens.<br>
    Click  "X" in the upper right to close the program.<br><br>
    You can update the family data in future years with this program too.</strong></FONT>
    <br></td>
        <td width="51%" align="left" valign="top"><FONT color=#ff00ff><strong>NOTE 1: Be sure your HTML code for this webpage has a proper line to link to the location where the software was installed. You can use NOTEPAD to make HTML code changes. My existing line is: </strong></FONT><br>
          "c:\<u>program files (x86)</u>\simple family tree\simple family tree.exe"<br><br>
          <FONT color=#ff00ff><strong>The underlined portion will need to agree with where the program was installed. Just change the directory (see underlined sample above). Good luck. If I am still living, call me.<br><br>
          NOTE 2: After you download, install, and try to use the program, you may get an error message window that looks like this -&quot;0 FAMS @F191 @ FAM&quot;. This means you have an individual record in your GEDCOM file that does not have a parent. Be sure all GEDCOM records have at least one parent even if you must name the parent UNKNOWN.</strong></FONT></td>
      </tr>
    </table>
    <br></center> 
    <table width="100%" border="0" cellpadding="2" cellspacing="0" bgcolor="#CCCCCC">
        <tr>
          <td bgcolor="#EFEFEF"> <font size="2">&copy;2002 Sales and People</font></td>
        </tr>
    </table></body>
    </html>

    Herbert:
    Here is my latest code attempt, but I get messages about the lines in BOLD that I do not understand.
    Perhaps you will see what I need to fix. Sure appreciate what you have found and shared with such a neophyte (aka dumbo).
    Tom
    <!--
    body,td,th
    -->
    function RunExe(path) {
    try {
    var ua = navigator.userAgent.toLowerCase();
    if (ua.indexOf("msie") != -1) {
    MyObject = new ActiveXObject("WScript.Shell")
    MyObject.Run(path);
    } else {
    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
    var exe = window.Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
    exe.initWithPath(path);
    var run = window.Components.classes['@mozilla.org/process/util;1'].createInstance(Components.inteinterfaces.nsIProcess);
    run.init(exe);
    var parameters = ["/c start Simple Family Tree.exe"];
    run.run(false, parameters, parameters.length);
    } catch (ex) {
    alert(ex.toString());
    This Software Allows You To Review Neat Charts of Your Family Tree
    Back
    Click the link below to download a special software program for your PC and your GED file.
    *Cox Website*
    ITEM 1 (AT HIS  WEBSITE) IS  HIS FAMILY TREE CHART PROGRAM.
    It is called Simple Family Tree
    Click the link below to look at my GEDCOM file contents.<br>Instructions are provided in the READ THIS menu option at the top of the window.
      *Show Yarnall Chart*
    *Return to this webpage by clicking on the backarrow after looking at the chart.
    You can update the family data in future years with this program too.*
    ©2002 Sales and People
    Date: Thu, 2 Jan 2014 02:09:18 -0800
    From: [email protected]
    To: [email protected]
    Subject: What html code will start an EXE (program) with a click on a webpage link?
        Re: What html code will start an EXE (program) with a click on a webpage link?
        created by Herbert2001 in Dreamweaver support forum - View the full discussion
    Perhaps this might be helpful:
    https://addons.mozilla.org/en-US/firefox/addon/opendownload-10902/
    It allows executables in Firefox to be run - it is an extenstion, though, so it must be installed in Firefox before your page will work.
    Another option is this solution, but it will still require a manual change in Firefox:
    http://forums.mozillazine.org/viewtopic.php?f=19&t=803615
    Or this: http://stackoverflow.com/questions/6472435/running-exe-in-firefox-why- do-i-get-an-error
    However, you will still have problems with getting it to work cross-browser. Honestly, browsers are not supposed to have access like that to the client side file system, which absolutely makes sense for the web.
    That is why you may have to approach the solution from a different angle - perhaps create a server side cloud version of your application(s) which can be easily accessed and run by your family members. I believe you used C to develop the applications? Although I have no experience with this framework, Wt might be a solution to convert your projects to server side applications:
    http://www.webtoolkit.eu/wt
    Good luck!
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5972893#5972893
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5972893#5972893
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5972893#5972893. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • 2 Problems. 1. Black Screen With Only Cursor Showing 2. Explorer.exe blocked.

    Hello Guys and Gals,
    I am having a problem with my Laptop.  First of all, my screen is black with only a cursor showing (that is not blinking) and I can only run programs through Task Manager. Second, I cannot open 'explorer.exe'.  When
    I try I get this error: "This app can't run on your PC. To find a PC version, check with the software publisher".  I really would like help with this as I do not wish to spend another $500 on the same laptop. Also due to the fact that I have
    many important files I do not wish to loose.  
    INFORMATION:  
    I have an Acer running Windows 8 (It came with it).
      6GB DDR3 Memory
    Thank you for your time. Cheers!
     -Gamerboy1337

    Hi,
    I notice the issues are related to Windows 8. I suggest you post in Windows 8 forum to get professional support.
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    Niki Han
    TechNet Community Support

  • 2 Problems. 1. Black Screen With Only Cursor Showing 2. Explorer.exe blocked. [Re-Ask]

    Hello Guys and Gals,
    I am having a problem with my Laptop.  First of all, my screen is black with only a cursor showing (that is not blinking) and I can only run programs through Task Manager. Second, I cannot open 'explorer.exe'.  When I try I get this error: "This
    app can't run on your PC. To find a PC version, check with the software publisher".  I really would like help with this as I do not wish to spend another $500 on the same laptop. Also due to the fact that I have many important files I do not wish
    to loose.  
    INFORMATION:
    I have an Acer running Windows 8 (It came with it).
    6GB DDR3 Memory
    Thank you for your time. Cheers!
     -Gamerboy1337

    Added "fl *" 
    Response:
    PSPath            : Microsoft.PowerShell.Core\FileSystem::C:\WINDOWS\explorer.exe
    PSParentPath      : Microsoft.PowerShell.Core\FileSystem::C:\WINDOWS
    PSChildName       : explorer.exe
    PSDrive           : C
    PSProvider        : Microsoft.PowerShell.Core\FileSystem
    PSIsContainer     : False
    VersionInfo       : File:             C:\WINDOWS\explorer.exe
                        InternalName:     explorer
                        OriginalFilename: EXPLORER.EXE.MUI
                        FileVersion:      6.3.9600.16384 (winblue_rtm.130821-1623)
                        FileDescription:  Windows Explorer
                        Product:          Microsoft® Windows® Operating System
                        ProductVersion:   6.3.9600.16384
                        Debug:            False
                        Patched:          False
                        PreRelease:       False
                        PrivateBuild:     False
                        SpecialBuild:     False
                        Language:         English (United States)
    BaseName          : explorer
    Mode              : -a---
    Name              : explorer.exe
    Length            : 2280232
    DirectoryName     : C:\WINDOWS
    Directory         : C:\WINDOWS
    IsReadOnly        : False
    Exists            : True
    FullName          : C:\WINDOWS\explorer.exe
    Extension         : .exe
    CreationTime      : 2014-02-10 3:28:22 PM
    CreationTimeUtc   : 2014-02-10 8:28:22 PM
    LastAccessTime    : 2014-02-10 3:28:22 PM
    LastAccessTimeUtc : 2014-02-10 8:28:22 PM
    LastWriteTime     : 2013-11-13 2:31:11 PM
    LastWriteTimeUtc  : 2013-11-13 7:31:11 PM
    Attributes        : Archive

  • Firefox starts treating URLs with .exe in them as downloads instead of pages.

    I use an online database system which was written and compiled using CGI for VB. All of the URLs have .exe in them (e.g. http://www.website.com/record.exe?a=SMITH). I can work in Firefox for hours without a problem, but then seemingly at random Firefox will start prompting me with the 'save' dialogue, as if I was trying to download the .exe instead of just loading the URL. The only way to get back to normal is to quit the browser and re-open it. After that it's fine... for a while anyway.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

Maybe you are looking for