windows-7,windows,crash,task-managerRelated issues-Collection of common programming errors
Russell
wpf windows-7
We have a system built using WPF and have (until recently) been developing using Visual Studio 2008 SP1 and Windows XP SP3. We have upgraded some of our development boxes to windows 7 and we have discovered we are getting some unexpected behaviour when running our applications. Some controls do not display at all.Has anybody else experienced issues like these and if so, how can we make them work?Thanks in advance.
Ray Cheng
windows-7 batch-file
I have a very simple batch script:@echo offif %1 == a goto AA if %1 == b goto BB goto end:AA echo a goto end:BB echo b goto end:END echo onIf I call it with an argument test.bat a, I get what I expected, but if I call it without any arguments test.bat, I get goto was unexpected at this time. and the offending line is if %1 == a goto AA.Why?
miguel
multithreading windows-7 .net-4.0
We are moving OS and processor architectures in this year. Our current application is not particularly threadsafe, however, it does function poperly on the current specs. We are also moving to .net4 as well.We are in the process of rewriting the application in a properly threadsafemanner, however this is a multiyear project and we have no choice in the meantime but move the poorly coded system.My question is this: has anyone been in a similar situation? How can we ensure that we shake out all is
Liviu M.
vb6 windows-7 windows-vista installer uac
i was making an installer for my app its working fine on xp but on vista the UAC is giving problem unless i do a run as administrator the Unexpected error appears when i run my app afters installation, any idea? i am installing the application in C:\xfolder\x
dorish
browser windows-7 64bit watir-webdriver
Env- 64bit Windows 7 ruby 1.9.2-P290 rubygems 1.8.24 Watir 4.0.2When try to create a browser (Chrome or IE) instance, it will fail with below errors When try to create a Firefox instance, it will open the Firefox and then close automatically with the same errors.irb(main):001:0> require ‘rubygems’ => true irb(main):002:0> require ‘watir-webdriver’ => true irb(main):003:0> ie = Watir::Browser.new:chrome Started ChromeDriver port=9515 version=23.0.1240.0 log=C:\Users
Matt Wilko
windows-7 com vb6 typelib
Getting Error (Unexpected error ; quitting) while registering vb6 exe file on windows 7 machine it was running well on windows xp. could some one help me out to solve this error….
bybe
visual-studio-2010 sql-server-2008 windows-7 database-connection visual-web-developer
The problem:In Visual Studio 2010 Professional I choose Server Explorer and right-click on Data Connections to choose “Add Connection”. Then I get this error:An unexpected error occurred in the.NET Framework Data Provider forMicrosoft SQL Server Compact 3.5.Please contact the provider vendor toresolve this problem.My enviroment:Windows 7 SP1 Visual Studio 2010 Professional (trial version) SQL Server 2008 R2 ExpressI’ve triedInstalling Visual Web Developer Express (gives the same problem) Reinsta
Andrei Haidai
maven windows-7 configure
I am trying to configure Maven on my Win 7 machine. I am following these steps: http://maven.apache.org/download.cgi I downloaded Maven into folder c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\I set all environmental variables as described in the URL above JAVA_HOME = C:\Program Files\Java\jdk1.6.0_23 M2_HOME = c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\ M2 = %M2_HOME%\bin PATH = %M2%; C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell;
ekaj
windows-7
I am getting frequent BSoDs, mostly with hall.dll errors. I have Dell Inspiron laptop running Windows 7 SP1. The following file, werfault, is shown below. Can anyone help me work out what is wrong?Version=1 EventType=BlueScreen EventTime=129987824768810026 ReportType=4 Consent=1 ReportIdentifier=1c3e1c58-3b30-11e2-9074-002219f61870 IntegratorReportIdentifier=113012-32557-01 Response.type=4 DynamicSig[1].Name=OS Version DynamicSig[1].Value=6.1.7601.2.1.0.768.3 DynamicSig[2].Name=Locale ID Dyna
Chris
windows-7 vpn pptp
Have a Macintosh (10.8.2) that connects just fine to a CentOS 6.0 virtual private server (OpenVZ, with PPP added by the host) via PPTP.A Windows 7 Home Premium client (virtualized in Sun’s Virtual Box), on the same computer, using the same Ethernet connection, cannot connect to the Linux VPN server.I have iptables disabled (for testing) on the Linux box. I have the Windows firewall turned off. /var/log/messages looks like this, for a Windows connection:Oct 12 18:44:30 production pptpd[1880]: CTR
JWood
c++ windows com backup volume-shadow-service
I’m developing an application which will need to copy files that are locked. I intend on using the Volume Shadow Copy service in Windows XP+ but I’m running into a problem with the implementation. I am currently getting E_ACCESSDENIED when attempting calling CreateVssBackupComponents() which I believe is down to not having backup privileges so I am adjusting the process privilege token to include SE_BACKUP_NAME which succeeds but I still get the error.My code so far (error checking removed for b
Tyler Mills
python windows call subprocess powercfg
Trying to use Python for more than text parsing and figure the best way is to write a script I will find useful. I’m having an issue though I get an error when making the call. from subprocess import call call ([“powercfg”, “/batteryreport”])The error I receive is the following: An unexpected error condition has occurred. Unable to perform operation. You may not have permission to perform this operation.I’ve run the command prompt under elevated user privileges as well with no dice. Any help wou
Tekkub
windows node.js npm
I’m following the setup instructions for this mobile javascript debugger here. FYI, I’m using Windows XP SP2 32-bit. Please understand I am new to using git, node.js, and npm.Now, I’m stuck on this stepDownload the required libraries by running “npm link” in the checked-out directoryThe link here helped me a great deal with breaking down the steps from the first link. I deduced that the directory, Aardwolf, was ‘checked-out’ when I issued the git clone command. I tried running npm link on th
sharptooth
windows shell scripting cmd
I’m currently trying to write a .cmd Windows Shell script that would iterate over a set of folders. However even the following simplest script:echo “%ROOT%” for %%f in (“%ROOT%\Binaries\” ) do (echo “%%f”if not exist “%%f\Subfolder”md “%%f\Subfolder” )outputs:CurrentDir>echo “<ActualPathToRoot>” “<ActualPathToRoot>” %f\Subfolder was unexpected at this time CurrentDir>if exists “%f\Subfolder”What am I doing wrong? How do I alter that script so that it iterates over that one fold
Matthew Slattery
windows command-line dos
Wow, never thought I would ever write anything in DOS. Now that I do, I know why I never wanted to. The syntax is absurd!Anyways I need help please. I would like to prompt the user for input, and if a blank line is received, I would like to use the default value, like this:set name=abraham. set /p input=please enter your name, press enter to use %name%: if not %input%==”” set name=%input% echo your name is %name%I get an error says “set was unexpected at this time.”Can you help please?
ramgorur
windows batch-file
I have this script in my batch file — if not exist “%JAVA_HOME%” (echo JAVA_HOME ‘%JAVA_HOME%’ path doesn’t exist) — (1) else (echo Setting JAVA property to ‘%JAVA_HOME%\bin\java’ — (2)set “JAVA=%JAVA_HOME%\bin\java”)%JAVA_HOME% was set to C:\Program Files (x86)\Java\jdk1.7.0_45. This location exists on my machine but the above code executes line (1), why ?FOLLOW-UP:It’s driving me crazy, I have this script now — if “x%JAVA_HOME%” == “x” (set JAVA=javaecho JAVA_HOME is not set. Unexpected
Dan Fego
c++ windows kernel ddk
I am about to delve into kernel land. My question relates to the programming language. I have seen most tutorials to be written in C. I currently program in C++ and Assembly. I also studied C before C++, but I didn’t use it a lot. Would it be possible to program in kernel mode using simplistic C++without using any advanced constructs? Basically I am trying to avoid the minor differences that exist between the two languages(like no bool in C, no automatic returning of 0 from main, really minor di
skaffman
windows shell
I want to obtain the number of lines from file using the follow line command, but show the follow error:Line command: for /f %%i in (‘find /v /c “” ^< someFile.txt’) do set /a lines=%%i print linesError: %%i was unexpected at this time.Someone can tell me what is bad in the code or maybe tell me other code for obtain the number of lines from file.Thanks a lot,
RainbowDashDC
windows batch-file cmd portability
Let’s say I have a text file, it contains batch commands. How can I run that text file as a batch file from within one, without renaming it. I want too keep a portable aspect too it, so no registry keys or such.The reason for no renaming is too prevent leftover unrenamed files upon unexpected closure.
Ashish Patha
windows json wcf rest curl
when i post a raw string as an input to JSON REST Service call it is executing ex:curl -d “{\”input1\”: \”as\”, \”input2\”: \”ad\”}” -i -X POST -H “Content-Type:application/json” http://localhost/rtygies/Service1.svc/rest/receivedata1 But when i am posting as an xml as input it is giveng error as below:curl -d “{\”input1\”: \”<xml></xml>\”, \”input2\”: \”<xml></xml>\”}” -i -X POST -H “Content-Type:application/json” http://localhost/rtygies/Service1.svc/rest/receivedat
hoss
android exception crash android-studio
I was working on a project in Android Studio and was regularly compiling the code running it on my device to make sure everything was in working order. Suddenly the main activity crashes, several times after compiling several separate times. I checked the logcat and the error was reported as being due to failure to recognize the layout. I didn’t understand why, as I hadn’t changed any of the code in the main activity.In fact the only thing that had changed over the course of those few days was t
Harlandraka
windows-7 ssd crash bsod
I have a Windows 7 computer with this hardware:Asus P8P67 PRO Intel i7 2600k 8GB RAM AMD Radeon HD 6970 2TB HDD (used for storing data) 128GB SSD OCZ Vertex III (used for the OS)The PC works fine but Windows crashes after some time (sometimes after an hour, sometimes after 4 hours, etc). I can see it because when I open an application, it hangs and doesn’t open, and if I click on the start button, explorer crashes. After that, if I wait it goes to blue screen and re-crashes (never reboots): I ha
Psycogeek
power-supply freeze crash gpu htpc
Subject says most of it. My HTPC will occasionally be found in this hard-locked/crashed state when nothing of note was being done. The past couple times, it has been while the screensaver was running over top of the Steam client (not Big Picture, just the normal client) and nothing else of note was running. I’ve not experienced this crash when watching TV via Windows Media Center, nor when playing Steam games like Dark Souls. Checking Event Viewer has been fruitless, as no BugChecks or other err
Dynde
windows-7 hard-drive boot ssd crash
I’ve been having some weird random crashes that I can’t seem to locate, and I’m unsure if it’s windows or hardware related.It’s a brand new computer and very powerful. I’ve run into a couple of these random crashes, now I don’t know what causes them, as it happens during the night, when I’m sleeping. When I wake up, all I see is a boot manager screen that says Exception: 0xc00000e “Boot device inaccessible”. A simple restart doesn’t fix the problem – it seems to struggle locating my primary hdd
the_mandrill
windows-7 crash shutdown
I’ve got a problem with a Win7 machine that up until now has been very reliable. During the boot it will just power off — no warnings or BSOD. Sometimes it gets as far as the login screen but shuts down on login, other times during the splash screen. System repair and System Restore don’t make any difference. I can boot into safe mode or onto a boot disk, which suggests it’s not a CPU overheating problem. I wondered if it was some kind of disk corruption, but I wouldn’t have thought it wou
Alexis Li
mavericks retina-macbook-pro google-chrome crash hang
I bought rMBP around November last year. As I open Chrome, it crash without log. I can’t move the mouse, and the mms stream player keep working.The only solution is to restart it with power button.I can’t find the report by chrome://crashes and ~/Library/Logs/.I think the kernel_task doesn’t make it.Are there anyone else got the same problem and solution? How to identify the unexpected shutdown by power button in shutdown_monitor.log or /var/log/system.log?Version:10.9.1(13B3116) Chrome Version
boldnik
wireless lenovo thinkpad crash
Just a few days ago I installed new wifi driver and everything seemed to work fine on Lenovo ThinkPad S440. But now I experience a problem with wifi: the speed slows down to zero that no page could load in web browser. The second problem (not sure if they are connected but maybe) is system crashes unexpectedly. this is a pastebin of dmesg output so you could see what’s happening. When the system crashes, X and all other programs crash. I can’t even switch to tty and restart X. Can’t be reproduce
Julio Gorgé
xcode crash iphone uitabview
Using XCode 4, with the iPhone iOS 4.2Hey everyone, I’m using a tabBar interface for my new app that I’m trying to finish. I have declared the UILabels and as soon as I connect them in the interface builder to the actual labels, the whole app will crash upon selection of its tab at runtime, in the simulator and on my iphone. I’m hoping there’s a really simple answer out there, but I really have no idea where to look (I am a novice). Thanks in advance,
Jonathan Leffler
c++ linux crash recovery
I have an application written in C++ in a Linux environment. The app dynamically loads library (shared object) during runtime. (Application gets the user command and it will do the logic to dynamically load the required shared library.)Is there any way to prevent the application from crashing and exiting when a crash or segfault occurs in the shared library?I want my application to be active and report the crash to the user.
user2586553
build crash jenkins
When I do a Jenkins build it crashes and the console says:No such file: /var/lib/jenkins/jobs/milkcraft/builds/2013-07-15_07-54-56/logAny ideas? Here is the script:rm -r builds mkdir builds python runtime/recompile.py python runtime/reobfuscate.py cd reobf/minecraft zip -r -D -9 $WORKSPACE/builds/milkcraft_$BUILD_NUMBER * cd ../..(Yes, Minecraft modding)
modosansreves
windows-7 task-manager
When I right click on my task bar and click on Start Task Manager it gives me an error Windows cannot find”C:\windows\system32\taskmgr.exe” Makesure you have typed the name correctlyand try again.So I tried executing task manager from system32 directory, still it gives me the same error. Has my task manager gone corrupt ? If so how can I reinstall it?Thanks.Additional information for the case:running sfc /verifyonly resulted in Windows Resource Protection did not find any integrity violations. O
KronoS
windows task-manager priority affinity
What exactly is Priority and Affinity (found within Task Manager) and what are they used for:In what situations should/could they be used and what advantages are found while customizing these setting.
amiregelz
windows-8 process task-manager
I was looking through my Task Manager today and saw something called Runtime Broker running:I’ve never seen this in previous versions of Windows. What is it? What does it do?
Cameron Tinker
windows-7 64-bit task-manager visual-basic runtime-error
I really enjoy using DTaskManager as an alternative to Windows TaskManager, but recently I’ve been getting Runtime Error ‘5’ messages. It looks like DTaskManager was programmed in Visual Basic 6, but it is quite powerful. I’m running Windows 7 Enterprise x64 so I suspect that the error might be coming from a Visual Basic runtime problem. I’m not sure which registry keys to edit to fix the Runtime Error ‘5’ message.
Vic
c++ winapi mfc task-manager
I have this MFC program that when I kill it with task manager I get an exception on my program and then it crashes.I want to get the event from the task manager, when it is going to kill my process and close my program gracefully.I understand that there are few methods that the task manager is using in order to kill a process.1) From the applications tab, someone told me it is sending WM_CLOSE message to my application’s main visible window, And if my application is not going down after few seco
wonea
windows-xp task-manager resources handle
I’ve noticed that when browser (tested with Firefox and Chrome) has been running for a long time, it stops connecting sites. I found out with task manager that the count of handles for browser process is 90000+. When shutdown the browser handle count starts going down but stops at some point and only reasonable fast way to shutdown browser is to kill the process. Also “System” process has high handle count which goes down when browser is killed.Since I can see this phenomenon on two different br
Luiz Angelo
windows process task-manager
I know it seems counter-productive, but I was looking for a task manager that it’s more limited than the one that comes with Window. The reason is that some servers that I use (but not manage) have disable the Task Manager. I also have to support users who use these servers. I can relate to that, since the simple user can do more than he’s supposed to do. He could kill process that he’s not supposed to kill, for example. But this also has its problems since it’s not easy to kill unresponsive use
Saphyron
windows-7 virus task-manager trojan worm
Had a nasty virus. Got a trojan through a patch to a game I have played a lot (world of tanks). The trojan was named Win32: Patched-ZX. Which opened up for several rootkit(according to AV) and 3 worms (forgot name).Got them all deleted but ever since then my task manager won’t start. when I press ctrl+alt+del and select task manager it shows up as a icon in my small taskbar in lower right corner but nothing opens. after a few seconds it closes down and dissapers. Same thing is happening to my CC
Menae
windows-8 google-chrome task-manager avast
I can’t use Task Manager on Windows 8.Whichever way I open it (keyboard shortcuts, .exe in System32, taskbar right-click menu), it only stays open for second. It does not simply freeze and crash as within the second it stays open I can click the ‘More details’ button and it would begin to respond before it closes.I tried sfc, it reported finding problems it could not fix. I manually replaced all the problematic files in the CBS.log; this fixed other problems I’d had but Task Manager still wouldn
Joel Coehoorn
windows process task-manager
Why is it that ending a task in XP/Vista takes so much longer than ending the underlying process itself? WHat’s the relationship between a task and a process from an OS perspective?
Web site is in building