How to Recover PATH Variable After Deleting it Accidentally

path environment variable - system properties

The PATH is a variable that Windows uses to locate needed executables, especially from the command line. Unfortunately, there are situations where users accidentally delete the PATH variable. This can happen when users inadvertently overwrite the PATH data rather than appending them.

There are also cases where some buggy applications or installers have wiped out the entire PATH environment variable data. This article explains the different ways to recover the PATH variable that was accidentally erased.Read more

How to Check if a Program (.EXE or .DLL) is 32-bit or 64-bit

find out if exe is 32-bit or 64-bit

Software developers compile separate executable files (.EXE or .DLL) for 32-bit (x86) and 64-bit (x64) systems. The 64-bit version of the program is usually denoted by suffixing 64 or x64 with the filename — e.g., sigcheck.exe vs. sigcheck64.exe. In some cases, the bitness notation may be missing, and you may be wondering if the executable is 32-bit or 64-bit.

This article discusses various methods to determine if a program or executable file is 32-bit or 64-bit in Windows.

Note that some vendors may combine the 32-bit and 64-bit executables into one 32-bit self-extractor file that would detect the platform, extract, and run the correct EXE for the current platform.Read more

Find Which Program is Constantly Reading or Writing to Disk

Does your hard drive LED in the computer’s chassis show non-stop disk input or output activity? If the I/O operations occur at an alarming rate, sometimes even at 100% disk usage, find the process and stop it from running, especially if you’re using Solid State Drive. If you’re wondering which process is thrashing your hard drive continuously, here is how to find the offending program.

Read more

Find Which Program is Using Your Webcam Currently

Does your webcam indicator LED get turned on automatically without you doing anything? Are you’re worried if you’re being spied upon by some malware? Or, are you seeing the error “Your webcam is currently being used by another application” when using Skype or other messaging application?

The built-in Camera app may throw the error 0xa00f4243 saying

Close other apps

It looks like another app is using the camera already.

If you need it, here’s the error code:
0xA00F4243<CameraReservedByAnotherApp> (0xC00D3704)

Here is a neat way to find which program is using your webcam or microphone.

RELATED: What is Device Census and Why is It Using My Webcam?Read more

How to Find Which Process has Locked a File in Windows

Find Which Process Has Locked a File

When you attempt to delete a file or folder which is in use by a process, the File In Use dialog appears showing the name of the program that has locked the file.

However, there are cases where the “File In Use” dialog doesn’t show the name of the process that has a lock on the file you’re trying to delete. In some cases, the dialog will show “the action can’t be completed because the file is open in another process“.

Find Which Process Has Locked a File

For investigating processes and locked files, Windows Sysinternals Process Explorer is probably the first option that comes to mind for most users. However, there are two built-in solutions to display the current open files list along with corresponding process names.Read more

Track Process Creation and Exit Time Using Process Monitor

Summary: This post tells you how to track process creation and exit events using the Process Monitor utility.

My previous post, List Running Processes, helps you track down currently running processes. And the article Command Prompt Opens and Closes immediately tells you if a last run program window was a scheduled task or not.Read more