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

Similar Messages

  • 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

  • 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

  • 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 Explorer Has Stopped Working" Error Message Loop upon Startup of WIndows 7 Ultimate 64-bit

    Ok I have a HP Touchsmart 6000 running Windows 7 Ultimate 64 bit OS.  It is my 74 year old mothers computer and about 3 months ago it started acting up.  First thing that happened was the internal DVD Burner started working intermitently, recognizing
    her QuickBooks backup DVD files occasionally.  I got her a new  internal DVD burner and it worked for a while.   during that time on Startup Help and Support would all of a sudden popup right away.    Then recently Adobe Acrobat would
    launch a PDF file about Flash and keep opening multiple instances of it.   Now her new DVD doesnt work again and on startup at the windows desktop she gets an error "Windows Explorer has Stopped Working".   No matter what I click the error
    keeps looping.  No program has been opened that causes it to crash because the error happens immediately and keeps repeating.   I have tried to boot to Safe Mode, Safe Mode with Networking and have tried System Restore to no avail.
    I have ran Malwarebytes Antivirus, Malwarebytes AntiExploit, AntiRootkit as well as Combofix.   I have run the AntiMalware software from Microsoft and have updated all the drivers for the HP system.   To no succcess.
    At one point the system did load and an error came up JAN2OSD failed to start due to missing ACPI or something like that.  For that brief moment Explorer stopped crashing.   When I finished updating  driverss though the error  came back.
    Please Help  as she is about to cry and no one wants to make a 74 year old woman cry.:)
    Thanks,
    Jeff

    Hi,
    According to the steps you have performed, we have followed the steps mentioned in this KB article?
    Error: Windows Explorer has stopped working
    Hvae you tried the repair install of Windows 7? Follow the steps here:
    How to Perform an In-Place Upgrade on Windows Vista, Windows 7, Windows Server 2008 & Windows Server 2008 R2
    Besides, if issue insists, please follow the steps below to generate a dump file:
    1. Create a new folder (named New folder)under C: drive.
    2. Please save the below as a .reg file, and then import it to registry, reference here:
    ===
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps\explorer.exe]
    "DumpFolder"=hex(2):43,00,3a,00,5c,00,4e,00,65,00,77,00,20,00,66,00,6f,00,6c,\
      00,64,00,65,00,72,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    ===
     3.  After that , if Windows Explorer stops working again, please check the
    C:\New folder for dump files and then upload them.
    Meanwhile, please also make a contact with the manufacturer to see if we could get any further help from there.
    Best regards
    Michael Shao
    TechNet Community Support

  • Windows 7 Error Message: Microsoft Visual C++ Runtime Library Runtime Error.... Followed by Windows Explorer Has Stopped Working

    I am running a system that is not quite 6 months old, which is loaded with Windows 7 Professional, 64 bit. 
    The error message that I get is as follows: Microsoft Visual C++ Runtime Library.  Runtime error!  Program C:\windows\Explorer.exe.  This application has requested the runtime to terminate it in an unusual way.  Please contact the
    application's support team for more information.
    Once I respond to that message, I get a message that says "Windows Explorer has stopped working.  Then I get "Windows Explorer is re-starting"
    I don't know if the next event is related - today, immediately after getting the message above, I got a pop-up that said "An update to Adobe Flash Player is available" - and I am given the option of installing it or not.  Today, I did not install
    the update - although I recall having accepted this update in the past (again, I don't know if the two situations always occur together).
    Is there some help I can be provided to correct this problem?  I have looked at several related topics in this database, but have not found anything that seems to directly relate to my question. 
       Thanks!    Mark

    Hi,
    Did you try to reinstall the Microsoft Visual C++ 2008 Redistributable
    Package (x86) to check this issue?
    What about to boot the computer in safe mode and Clean Boot to test this issue?
    Regards,
    Vincent Wang
    TechNet Community Support

  • Windows Explorer has STOPPED Working

    OK, I have iTunes 8 installed, the allegedly CORRECTED version. When I start iTunes 8, I receive a message that says, "Windows Explorer has Stopped Working" and gives me two options:
    First Option - Check online for a solution and restart the program (Program being Windows Explorer).
    Second Option - Restart the Program (Program being Windows Explorer).
    Option One does not provide a solution, just restarts Windows Explorer!
    Option Two restarts Windows Explorer.
    When I choose to "View the Details" of the error, I receive the following:
    Problem signature:
    Problem Event Name: BEX64
    Application Name: Explorer.EXE
    Application Version: 6.0.6001.18000
    Application Timestamp: 4791970c
    Fault Module Name: UndWinExpShExt.dll_unloaded
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 48801d73
    Exception Offset: 0000000004f3273a
    Exception Code: c0000005
    Exception Data: 0000000000000008
    OS Version: 6.0.6001.2.1.0.256.1
    Locale ID: 1033
    Additional Information 1: 09ef
    Additional Information 2: c6a2b1bd6acb10012eb7d5dd1b45e415
    Additional Information 3: 3a70
    Additional Information 4: 0185804ddbcb00af322d2112cbd2b831
    No other error codes are provided and everything works OK, just this hiccup in the giddy-up along the way of iTunes 8's start up routine.
    Is anyone else having this issue with iTunes 8?
    Thanks ~~ Gunny

    I THINK that this is the repeated one, because I was doing it one after the other. And yes, as far as I know, everything is up to date. I'm fairly advanced when it comes to computers, but this has me boggled.
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: explorer.exe
    Application Version: 6.0.6002.18005
    Application Timestamp: 49e01da5
    Fault Module Name: objc.dll
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 4a5f5419
    Exception Code: c0000005
    Exception Offset: 00008373
    OS Version: 6.0.6002.2.2.0.768.3
    Locale ID: 1033
    Additional Information 1: fd00
    Additional Information 2: ea6f5fe8924aaa756324d57f87834160
    Additional Information 3: fd00
    Additional Information 4: ea6f5fe8924aaa756324d57f87834160
    Extra information about the problem
    Bucket ID: 1454080905

  • Internet explorer 9 for windows 7 has stopped working

    I am getting internet explorer 9 for windows 7 has stopped working error and explore is getting closed

    Have you disabled "Download Controls" in Manage add-ons?
    Meanwhile, click Internet Options\Security\Custom level, then scroll down to ActiveX control and plug-ins, disable all precvious used ActiveX Control. then test again
    Yolanda Zhu
    TechNet Community Support

  • ITunes not working on my computer each time open iTunes appear a window " iTunes has stopped working close the program "

    Hi, I have a problem with iTunes on my computer each time when try open iTunes appear a window " iTunes has stopped working... close a program " someone can help me how fix it.

    See HT203206: iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Microsoft Windows - Intrastat Has Stopped Working error message...

    Hi Experts,
    When running the Intrastat Declaration Report the following error window box pops up:
    Microsoft Windows
    Intrastat For Business One Has Stopped  Working
    Windows can check online for a solution to the problem
    -> Check on line for a solution and close the program
    -> Close the program
    Problem Signature:
    Problem Event Name:  BEX
    Application Name: BN_Intrastat.exe
    Application Version: 8.80.229.0
    Application Timestamp: 4db5952d
    Fault Module Name:  MSVCR80.dll
    Fault Module Version:  8.0.50727.4053
    Fault Module Timestamp:  4a594c79
    Exception Offset:  0000eb46
    Exception Code:  c000000d
    Please can you help me with this one please?
    It's SAP 8.8
    Many thanks in advance for any help!
    Caroline

    Hi Caroline,
    Your question belongs to 3rd arty add-on forum. I will move it there after few days.
    To give you a tip: try restart everything to see if problem could be gone away. If not, you have to do a clean reinstall for the add-on.
    Thanks,
    Gordon

  • HT201317 Photostream to my Windows computer has stopped working. In icloud control panel, photostream is unchecked, I check it, hit options, nothing happens. I click apply and close. Next time I  open control panel, photostream is unchecked again! What ca

    Photostream to my Windows 7 computer has stopped working. When I open icloud control panel, photostream has become unchecked even though it has been previously checked. I check it again but when I click options, nothing happens. I click apply and close, but next time I open the control panel, Photostream has become unchecked again. What can I do?

    Lisaglenoak:
    When I first downloaded iCloud to my PC a little while back, Photo Stream initially worked. I was able to check/uncheck both boxes available to me, as well as click the Options tab to the right of Photo Stream. I could make changes, click "Apply", and everything was fine and dandy.
    Within a day, I opened the iCloud Control Panel, and despite how many times I would uncheck Bookmarks, it didn't matter. I would click "Apply", and it would automatically ask me to sign in again. When I did this, Bookmarks would be checked again. Additionally, Photo Stream was grayed out; I was unable to check the box (which was unchecked), and I was unable to go to Options.
    Somehow, I managed to get my iCloud Control Panel "unstuck", and currently, it is working fine. There are 2 steps that I did to accomplish this. The 1st step listed below may be the crucial element for those whose reinstallation of the program has not succeeded, in and of itself. It is a change that I haven't come across as a possible part of a solution to this problem; I just happened to stumble upon this whilst searching my PC for possible fixes to the problem.
    Step 1: Find your iCloud File Folder. (On my PC, I clicked the Start button in the lower left corner, then clicked All Programs, and finally scrolled down to where all the folders for various "things" are.) Click the Folder and a sub-list will appear, with items such as Calendar, Mail, etc. Right-Click the iCloud Program icon, and at the bottom of the list that appears, click on Properties. At the top, there are 5 tabs. Click the Compatibility tab, and you should see, at the top, the following words: "If you have problems with this program and it worked correctly on an earlier version of Windows, select the compatibility mode that matches that earlier version." Following these words is a dropbox underneath "Compatibility Mode", and for some reason - I have no idea why this is - the box was initially checked to run the program in compatibility mode for "Windows XP (Service Pack 2)". (And from what I understand, Windows XP is not a compatible Windows Edition for iCloud, so I have no idea why this box was checked.) If the box underneath "Compatibility Mode" is checked, than it is running iCloud in compatibility mode for any number of earlier Windows' Editions. Uncheck this box, click the "Apply" button, and then click "OK".
    Step 2: Find your PC's Control Panel. (On my PC, I clicked the Start button in the lower left corner, and then clicked Control Panel in the list to the right.) In the Control Panel, click Programs. Under Programs and Features, Click "Uninstall a program" (and bear with me here, because you are actually not going to uninstall iCloud). Now, scroll down the list and find "iCloud". Double-click the "iCloud" icon, and a panel with 2 options should appear: "Repair" and "Remove". Check the "Repair" box, which will reinstall the same iCloud Control Panel, replacing missing or damaged files. ("Remove" will just .. well ... remove iCloud from the computer - or, if you prefer, uninstall the program.) Click Next, and the repairing process will begin and end. And that is it - you're done. Task Completed.
    Well, in the end, this worked for me. Photo Stream was no longer grayed out. I could permanently uncheck Bookmarks (finally). The Options tab for Photo Stream would open. Anytime that I clicked the "Apply" button after checking/unchecking boxes, it wouldn't ask me to sign in again (only to come back to a Control Panel that looked just like it did before I made any changes to it.). And, I created a Shared Photo Stream on my phone using photos from my Camera Roll (to test the program), and the Shared Photo Stream appeared on my PC's Photo Stream in no time. Hopefully, this will work for you too (regardless of the Windows Edition you are currently using).     ~ Brian

  • My macbookpro that I dual boot with windows 7 has stop working

    I dual boot my macbook pro with windows 7 but now it has stop working. how can I get the mac os and windows 7 both working again?

    I've tried that but it boots into windows, i have tried pressing X and a variety of other shortcuts but it stubbornly still goes into windows.  Any other thoughts? (Thanks for the response).

  • My itunes on PC (Windows XP) has stopped working

    **My iTunes has Stopped working on my PC ?**
    Hi everyone PLEASE HELP
    Need advice and help. Since adding latest version my itunes will not open.
    I get note.
    "+itunes has encountered a problem and needs to close+." same note appears with Quicktime.
    P.S. I read with great interest notes from Amanda Carter helped by b.noir.
    Post 28 jan. I wonder whether to try going down same path and try same solution.
    Before I start anything new to add ? help please. thanks.

    Hi hovis.
    Given that we've got two different common issues at the moment producing those two error messages (and a couple of other possibilities as well), it'd be a good idea to check the error messages more closely prior to checking on Amanda's solution.
    Can you provoke an "iTunes has encountered a problem" message, please? Click on the "click here" link in the box, and note down the ModName and ModVer of the problem. (If there isn't a ModName or ModVer shown, let us know what error type you're getting: eg, InPageError or BEX.)
    Also provoke a "QuickTime has encountered a problem" message, please? Click on the "click here" link in the box. Is the problem type a BEX?

  • All my apple software on my windows vista has stopped working.I tryed to uninstalland reinstall but I get R6034 error.everything was working perfect untill latest itunes update.Can you folks help?Quicktime,itunes icloud apple update and apple moblesupport

    I am getting a microsft C++ dll is missing all after running latest update on dell vostro windows vista which was authorize as one of the devices I could use after buyig Ipad mini.Everything apple has stopped worng alone with the R6034 error apple mobledevice support isnt working or updates.All this from updating itune?I lost on this one folks,if any ideas I would be very gratefull Jamie ([email protected])

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • I keep getting the same error message from windows, "iTunes has stopped working and the program will be closed". I have just recently installed iTunes on my external hard drive and everything looked great until the program crash! Any suggestions?

    Here is a copy of the windows vista error report.
    Product
    iTunes
    Problem
    Stopped working
    Date
    4/19/2014 9:38 PM
    Status
    Report Sent
    Problem signature
    Problem Event Name:      APPCRASH
    Application Name:           iTunes.exe
    Application Version:         11.1.5.5
    Application Timestamp:   53073d6a
    Fault Module Name:        ntdll.dll
    Fault Module Version:      6.0.6000.16386
    Fault Module Timestamp:                4549bdc9
    Exception Code:                c0000005
    Exception Offset:              00062086
    OS Version:        6.0.6000.2.0.0.768.3
    Locale ID:           1033
    Additional Information 1:                8d13
    Additional Information 2:                cdca9b1d21d12b77d84f02df48e34311
    Additional Information 3:                8d13
    Additional Information 4:                cdca9b1d21d12b77d84f02df48e34311
    Extra information about the problem
    Bucket ID:          95851104
    I would appreciate any suggestions or ideas of where else to look for advice. Thanks!

    Hey jcaqualung,
    Thanks for the question. I understand that you are experiencing issues with iTunes on your Windows Vista machine. The following resource may provide a solution. I would also recommend installing iTunes on the internal hard drive of your computer, as opposed to the external drive.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks,
    Matt M.

Maybe you are looking for

  • List of sysctl add/del/changes between Tiger and Leopard

    I've ran a quick diff between the sysctl values in Tiger and Leopard. Note: This is from two different macbook's, so some values may be changed due to hardware. This should give folks an idea as to what buffer sizes, performance tweaks, etc. have bee

  • Wiki Server 2: "Access Forbidden!"

    Hi all, Suddenly today (after a reboot) our wiki pages started responding with the Error 403 "Access Forbidden" page... As seen here: http://www.celadonsound.com/groups I can't seem to figure out why this has happened. I'm sure I could do with supply

  • Setoff &inventor

    Dear ALL, IN MM Excise Conditions  what is mentby  setoff ( for ex:    JMOP     IN: BED setoff %) and Inventor( for ex JMIP     IN: BED inventory %) please explain the significance off setoff and inventor in  tax procedure with regards,

  • Window is off center

    when I open Adobe Elements 12 organizer, the window is off center and the tool bar is out of reach.  I have a mac and have tried to zoom out to make it smaller, re-calabrate the screen resolution,reset preferences, and completely un install and re in

  • Pages Auto Correction

    Okay, I disabled everything under auto correction in the pages preferences. However, it's been bugging me to no end that whenever I type something along the lines of 1/100 it will correct it to a date of "Dec 3, 0099" and when I put down 2/4 it will