PowerShell has stopped working

I keep getting "power shell not working" pop-up" and I keep closing it, and it pops up again. How do I correct this? Thanks.

More information is needed, namely from Event log. Additional info on update, configuration and application installation as well as info on software is needed too.
The most probable reason that you can encounter is solved here
https://social.technet.microsoft.com/Forums/en-US/c8b129a4-27c1-4608-817a-43622c03869f/windows-powershell-has-stopped-working?forum=winserverpowershell
Regards
Milos

Similar Messages

  • Powershell 4.0: Problem with error handling inside Eventhandlers - Powershell has stopped working

    Hallo!
    Please see the attached sample code. This code simply show a small WPF-Dialog.
    Test 1 (showing the problem)
    Simply run the program. You will see Powershell crashing "Powershell has stopped working".
    The cause of this is the devision by 0 inside the Eventhandler.
    We would normally expect, that the exception should be handled by the trap.
    Test 2 (showing normal operation)
    Simply remove the comment in line 28 ($i=1/0).
    This activates an exception outside the Eventhandler. Now the Trap will be executed normally.
    --> The exception can be handled by the Powershell Devloper.
    Can anybody help? Why does the Error management via Trap not work inside Eventhandlers?
    Thanks for some assistance and ideas!
    Regards
    Heike
    cls
    Set-StrictMode -Version 4.0
    $ErrorActionPreference = "stop"
    Add-Type -Assemblyname PresentationFramework
    # -- Eventhandler - will be fired during form load -----------------------------------------------------
    $FormLoaded = {
    Write-Host "EventHandler is running..."
    # Problem:
    # All exceptions will crash Powershell.
    # We would normally expect that the Global Trap will be executed!
    # This problem occurs inside of Eventhandlers only!
    # TEST 1 --> Create an Exception (Division by 0) --> Powershell crashes: "Powershell_ISE has stopped working"
    $i=1/0
    # -- End of Eventhandler----------------------------------------------------------------------------------
    # -- Start of Demo-Programm ------------------------------------
    Write-Host "Start Demo"
    # -- TEST 2 ---
    # Write-Host "Test 2: Testing Global Trap"
    # Create an Exception (Division by 0) --> Powershell does not crash --> Global Trap will be executed --> OK
    # $i=1/0
    # XAML-Code for WPF-Dialog
    [xml]$xaml = @"
    <Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Test - " Height="370" Width="657" ResizeMode="NoResize" WindowStyle="ThreeDBorderWindow" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" >
    <Grid Margin="0,0,0,-4">
    <Label Name="CustomerName" Content="Hello World" HorizontalAlignment="Left" Margin="10,2,0,0" VerticalAlignment="Top" Width="596"/>
    </Grid>
    </Window>
    $Form1=[Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml)) # Load form
    Write-Host "Register Event"
    $Form1.Add_Loaded($FormLoaded)
    Write-Host "Starting ShowDialog"
    $Form1.ShowDialog() > $null
    Write-Host "End of program"
    # Global Trap - all exceptions should be handled here
    trap{
    Write-host "Global Trap is running..."
    Write-host "End of trap - program will be stopped"

    It works fine if you don't try to execute the code while loading and if you use a better exception handling method.
    Add-Type -Assemblyname PresentationFramework
    [xml]$xaml=@'
    <Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Test - " Height="370" Width="657" ResizeMode="NoResize" WindowStyle="ThreeDBorderWindow" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" >
    <Grid Margin="0,0,0,-4">
    <Label Name="CustomerName" Content="Hello World" HorizontalAlignment="Left" Margin="10,2,0,0" VerticalAlignment="Top" Width="596"/>
    </Grid>
    </Window>
    $Form1=[Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml)) # Load form
    $Form1.Add_Loaded({
    Write-Host "EventHandler is running..."
    Try{
    $i=1/0
    Catch{
    Write-Host "$_"
    $Form1.ShowDialog()
    ¯\_(ツ)_/¯

  • Windows Powershell has stopped working

    Hi,
    I am getting an error during Windows logon, which says "Windows Powershell has stopped working". When I looked at the event logs, I found the below event in App logs. Can you pls help what is going wrong here?
    Log Name:      Application
    Source:        Application Error
    Date:          2/18/2014 7:55:16 PM
    Event ID:      1000
    Task Category: Application Crashing Events
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      MININT-BNG69NS
    Description:
    Faulting application name: powershell.exe, version: 6.3.9600.16406, time stamp: 0x5244e9dc
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.18229, time stamp: 0x51fb1677
    Exception code: 0xe0434352
    Fault offset: 0x000000000000940d
    Faulting process id: 0xb3c
    Faulting application start time: 0x01cf2cb52a860b9f
    Faulting application path: C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe
    Faulting module path: C:\WINDOWS\system32\KERNELBASE.dll
    Report Id: 7c4832cf-98a8-11e3-b82f-a088b40d3a94
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-02-18T14:25:16.000000000Z" />
        <EventRecordID>2449</EventRecordID>
        <Channel>Application</Channel>
        <Computer>MININT-BNG69NS</Computer>
        <Security />
      </System>
      <EventData>
        <Data>powershell.exe</Data>
        <Data>6.3.9600.16406</Data>
        <Data>5244e9dc</Data>
        <Data>KERNELBASE.dll</Data>
        <Data>6.1.7601.18229</Data>
        <Data>51fb1677</Data>
        <Data>e0434352</Data>
        <Data>000000000000940d</Data>
        <Data>b3c</Data>
        <Data>01cf2cb52a860b9f</Data>
        <Data>C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe</Data>
        <Data>C:\WINDOWS\system32\KERNELBASE.dll</Data>
        <Data>7c4832cf-98a8-11e3-b82f-a088b40d3a94</Data>
      </EventData>
    </Event>
    Arun

    Hello Mike,
    I have a script that is a part of HKCU Runonce, which is used to map D drive to indexing. Below is the script.
    Write-Host Load the dll
    Add-Type -path "C:\Program Files\Microsoft.Search.Interop.dll"
    Write-Host Create an instance of CSearchManagerClass
    $sm = New-Object Microsoft.Search.Interop.CSearchManagerClass
    Write-Host Next we connect to the SystemIndex catalog
    $catalog = $sm.GetCatalog("SystemIndex")
    Write-Host Get the interface to the scope rule manager
    $crawlman = $catalog.GetCrawlScopeManager()
    $crawlman.AddUserScopeRule("file:///D:\*",$true,$false,$null)
    $crawlman.SaveAll()
    Write-Host Script completed
    Arun

  • I get an errow using windows 8 windows powershell has stopped working

    error message that says windows powershell has stopped working

    When do you receive this error? What is the exact wording of the error?
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • WindowsPowerShell has stopped working

    I am using a new HP Envy laptop running windows 8.1 and am constantly receiving the message, "Windows PowerShell has stopped working". I continue to close it, but it reappears almost immediately. Any suggestions? Thank you!

    Hi Gimmymik,
    Please check the event logs and find if there is any error or failure information to help us to troubleshoot.
    Best Regards,
    Anna Wang
    Can you tell me how to do this?

  • Internet radio has stopped working

    Hi all, A couple days ago internet radio on my Nokia X6 has stopped working. 3G connection is established, stations load, I can see that data is being downloaded (using data counter). But I hear nothing. I checked my earphones and other stations as well. My FM receiver works OK, if relevant. Can anyone confirm that internet radio is working? Or is this service closed??

    internet explorer has stopped working. Get this msg quite often. running ver 11 all updates installed
    Please read Suggestions for asking a question on help forums and provide the information requested for assistance.
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

  • Post Moved INTERNET-EXPLORER-HAS-STOPPED-WORKING

    Post moved not a connection/speed issue http://community.bt.com/t5/Other-BB-Queries/INTERNET-EXPLORER-HAS-STOPPED-WORKING/td-p/625390
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

    internet explorer has stopped working. Get this msg quite often. running ver 11 all updates installed
    Please read Suggestions for asking a question on help forums and provide the information requested for assistance.
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

  • "Internet Explorer has stopped working" with Datacap

    Hi,
    I am using a document capture software called Datacap. When I am scanning through the my web browser (IE9) using my Canon imageFORMULA P-215 scanner, IE9 always stops during the scanning process. I have no idea where could be the problem. Do you think there
    is some incompatibility with the scanner software?
    Thanks,
    Lester
    Lester P. Nubla

    internet explorer has stopped working. Get this msg quite often. running ver 11 all updates installed
    Please read Suggestions for asking a question on help forums and provide the information requested for assistance.
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

  • Itunes wont open and gives me a message saying "Itunes has stopped working".  What can I do to fix this?

    I use windows vista and I have upgraded my itunes.  Now when I open it, it gives me a message saying "itunes has stopped working"  and then gives me a message saying it will notify me for a solution.  What can I do to fix this so it can open and not give me any more problems???

    First you can try;
    Try restarting PC and run itunes again!
    If error again than perform clean instal of itunes (uninstal first and than instal again)!

  • Mozalloc.dll A firefox plug in container has stopped working. I can't get firefox to work for more than 2 mins. before crashing. How do I make this stop?

    AdapterDeviceID: 0x9712
    AdapterDriverVersion: 8.861.1.2000
    AdapterSubsysID: 164c103c
    AdapterVendorID: 0x1002
    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:33.1.1
    AvailablePageFile: 13967405056
    AvailablePhysicalMemory: 6222434304
    AvailableVirtualMemory: 3783245824
    BIOS_Manufacturer: Hewlett-Packard
    BlockedDllList:
    BreakpadReserveAddress: 46661632
    BreakpadReserveSize: 41943040
    BuildID: 20141113143407
    CrashTime: 1417153956
    EMCheckCompatibility: true
    EventLoopNestingLevel: 1
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1416895140
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x9712, AdapterSubsysID: 164c103c, AdapterDriverVersion: 8.861.1.2000
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 175
    StartupTime: 1417153798
    SystemMemoryUsePercentage: 25
    Theme: classic/1.0
    Throttleable: 1
    TotalPageFile: 16630353920
    TotalPhysicalMemory: 8316153856
    TotalVirtualMemory: 4294836224
    URL: https://support.mozilla.org/en-US/questions/new/desktop/fix-problems/form?search=mozalloc.dll&step=aaq-question
    Vendor: Mozilla
    Version: 33.1.1
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.
    AND:
    A plugin container for firefox has stopped working.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: plugin-container.exe
    Application Version: 33.1.1.5430
    Application Timestamp: 54656826
    Fault Module Name: mozalloc.dll
    Fault Module Version: 33.1.1.5430
    Fault Module Timestamp: 54654321
    Exception Code: 80000003
    Exception Offset: 00001425
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

    Try creating a new Profile by following the steps from [[Managing Profiles]] [[Troubleshooting extensions and themes]] and also [[The Adobe Flash plugin has crashed]]

  • HT1689 I can reach the iTunes Store from my iPod Touch, but it will not open on my PC running Windows 7.  Message shows that iTunes has stopped working.  This happens every time.  I have updated iTunes Software.  Will not solve the problem.  What is wrong

    I have uninstalled iTunes several times and reinstalled it on my PC running Window 7 with all updated loaded.  When I click on the iTunes Store Box, Nothing happens except for a message that reads:
              iTunes has stopped working.
    The following items give me a choice, but no answer comes up.  The computer will shut down the website.
              "Check online for a solution and close the program"
              "Close the program."
    There is an item below the box that is selectable for View problem details.  When clicked a long list of items show up.  I have listed some of the problems as written, but I do not understand them.  I know the iTunes Store has been available on earlier versions of of iTunes but is not on this version.  How can we go back and download an earlier version of iTunes?
         Here are some of the Problem Details:
         "Problem signature:  APPCRASH
         Application Name:     iTunes.exe
         Application Version:  11.0.1.12
         Application Timestamp:  50c8fc7e"

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

  • Can't get itunes.  I get the following message when I click on either the shortcut or the program.  It says ITunes has stopped working and I can either check on line for a solution and close the program or just close the program.

    When I click on the itunes shortcut or the program  I get the following message:
    ITunes has stopped working.  My two options are:  Windows can check on line for a solution to the problem or close the program. 
    It seems that my entire library is not there.  If I sync my ipod will it add it back into my library on the computer? 
    I've even tried installing again and nothing works.  Tried the "repair" and it says that ITunes is loaded but I stil get the above error when I try to open the program.
    Thanks

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • ITunes 10.3.1 has stopped working in Windows 7 64bit

    I just upgraded to Windows 7 64 bit and I downloaded iTunes 10.3.1 for Windows 7 64 bit.  My Quicktime player is working fine but everytime i tried to open iTunes, it gives me an error message that says iTunes has stopped working.  I need help trying to fix this, I already tried uninstalling, re-installing, and mostly every suggestion in the Apple support forum and it still does not work. 
    This is the information I have on the Problem Details:
    Problem Event Name: BEX
    Application Name: iTunes.exe
    Application Version: 10.3.1.55
    Application Timestamp: 4deec351
    Fault Module Name: StackHash_0a9e
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Offset: 00000000
    Exception Code: c0000005
    Exception Data: 00000008
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

    Try copying the QTMovieWin.dll in the  c:\program files (x86)\common files\apple\apple application support folder to the c:\program files (x86)\iTunes folder. I had same problem and it's fixed this bug.

  • ITunes has stopped working ...Running Windows 7(64)

    I upgraded my home PC Desktop to Windows 7 earlier this year and had no trouble bringing over iTunes from my previous platform (Windows XP).
    I recently returned home to the US from a work assignment out of the country and because my iTunes resides on my home PC desktop, I didn't open up iTunes for the past 6 weeks.  During this time Apple released iTunes 10.5. When I returned home, the old version of iTunes was still working. However, when I upgraded to iTunes 10.5, iTunes stopped working. The error message: "iTunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available."
    I have worked through the following knowlege bulletins (nothing has fixed my problem):
    (a)" iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues"
    (b) "iTunes: Troubleshooting issues with third-party iTunes plug-ins"
    (c) "iTunes 10.1 for Windows: iTunes may stop working and need to quit while importing or syncing audio"
    (d) "Removing and reinstalling iTunes, QuickTime, and other software components for Windows vista or Windows 7"
    (e) "iTunes for Windows: system restarts, blue screen, or quits unexpectedly when accessing iTunes Store"
    the last bulletin (e), recommended ensuring that my drivers were up-to-date. So I also updated my drivers.
    Lastly, I contacted iTunes Store Customer Support (although my problem isn't with the store, it is upgraded iTunes running on windows 7). They told me the issue was "outside (their) expertise" and recommended I look at this discussion board. 
    Here is the information I found under Event Viewer:
    ==================================================================
    Log Name:      Application
    Source:        Application Error
    Date:          11/27/2011 11:46:01 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Theresa-HP
    Description:
    Faulting application name: iTunes.exe, version: 10.5.1.42, time stamp: 0x4ebf7d7c
    Faulting module name: MSVCR80.dll, version: 8.0.50727.6195, time stamp: 0x4dcddbf3
    Exception code: 0xc000000d
    Fault offset: 0x00026b72
    Faulting process id: 0x13b0
    Faulting application start time: 0x01ccad3d27f6b2ff
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d 09154e044272b9a\MSVCR80.dll
    Report Id: 6ef58025-1930-11e1-a798-e06995d0a503
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2011-11-27T19:46:01.000000000Z" />
        <EventRecordID>9927</EventRecordID>
        <Channel>Application</Channel>
        <Computer>Theresa-HP</Computer>
        <Security />
      </System>
      <EventData>
        <Data>iTunes.exe</Data>
        <Data>10.5.1.42</Data>
        <Data>4ebf7d7c</Data>
        <Data>MSVCR80.dll</Data>
        <Data>8.0.50727.6195</Data>
        <Data>4dcddbf3</Data>
        <Data>c000000d</Data>
        <Data>00026b72</Data>
        <Data>13b0</Data>
        <Data>01ccad3d27f6b2ff</Data>
        <Data>C:\Program Files (x86)\iTunes\iTunes.exe</Data>
        <Data>C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_ none_d09154e044272b9a\MSVCR80.dll</Data>
        <Data>6ef58025-1930-11e1-a798-e06995d0a503</Data>
      </EventData>
    </Event>
    ==================================================================
    It seems that I am not alone in having this problem!  Are there any experts out there who want to earn the undying gratitude of the technically challenged (or a few expert points?)
    Thanks for listening,
    Theresa
    PS - someone recommended uninstalling Apple Quick Time Player.  I don't have Quick Time Player.

    I had the same problem. I'm using 64bit Windows7. This solution only partially worked for me. I still couldn't connect to the iTunes store.
    The following solution worked for me:
    COPY    QTMovieWin.dll
    FROM    c:\program files (x86)\common files\apple\apple application support\
    INTO     c:\program files (x86)/iTunes

Maybe you are looking for

  • Why is the logo image not displaying in Firefox?

    The logo image for one of my sites is not displaying. The alt info for the image is being displayed. This is a relatively new problem. In older versions of Firefox the image displayed fine. The image also displays fine in Webkit browsers and IE10. Th

  • How can I send a MIDP through MMS??

    Hi there, I need to know how can I send a JAR through MMS, I'm not talking about WMA API..... please, understand that I don't want do send a MMS through JAVA or J2ME or MIDP. I want to send my compiled midp in a JAR, in a MMS.

  • Permissions needed to run tarantella query audit?

    Hi I'm trying to run the "tarantella query audit ..." command to check for log file entries, using the account I use for all sgd admin. I've never done this before, and I get the error "you do not have permission to run this script" - can't find anyt

  • How to execute sapscript programe in SAP

    hi i created sapscript programe i want to execute how can i do it please help me thanks in advanced.

  • My Palm T/X Love/Hate

    My 2 year old TX does exactly everything I want a pocket device to do. However it has been the most unreliable electronic thing I have ever owned. The on/off switch has not worked for more than a year. The external speaker works sometimes and other t