View Single Post
  #3 (permalink)  
Old 07-10-2006
hud's Avatar
hud hud is offline
Junior Member
 
Join Date: Jun 2006
Posts: 2
hud is on a distinguished road
Alright hrm first off check and see if there is an errant firefox.exe running in the processes list. This is almost the same process as checking/ending a process in Windows XP. Instead of using task manager (I assume you tried to see if firefox.exe was running there) we're going to use the new and improved PowerShell (formerly Monad). Yay we get to use our amazingly superpowerful command-line scripting system. A shame it's such a small task..
Simply open PowerShell and input the following command:

Code:
Stop-Process –processname firefox
Or...

Code:
Get-Process firefox | Stop-Process
Please note two things from my examples.
Firstly notice the distinct lack of a .exe extension, that is because of the way that PowerShell stores ProcessName strings.
Code:
> Get-Process notepad
Handles  NPM(K)    PM(K)      WS(K) VM(M)   CPU(s)     Id ProcessName
-------  ------    -----      ----- -----   ------     -- -----------
     65       2     1628       1836    15     0.03   2024 wdfmgr
    557      65     8184       3824    57     1.06   1220 winlogon
    569      26    48748      77912   542   282.86   3116 WINWORD
    149       4     2024       5288    37     0.17    808 wmiprvse
     48       2      916       3404    29     0.06   2820 WZQKPICK
Secondly note that my second example listed here, using the "Get-Process" midlet and piping it through to Stop-Process, will in fact only kill the first process named "firefox" not all of them, so if you want to kill all instances I recommend using my first example.

Firefox appdata is stored in F:\Users\[UserName]\AppData in Vista.. so you could check here and remove your profile information in case it's corrupted, then try running Firefox
hope this was useful to you. For some more PowerShell information check out my post on how to add command history support to PowerShell here.
__________________


Reply With Quote