PSExec as a Helper in Troubleshooting
What
Microsoft PsTools includes PsExec, a remote command-line tool that can help troubleshoot a Windows device when the FileWave Client is not responding through normal FileWave channels.
When/Why
Use PsExec when you need an interactive command prompt on a Windows client to inspect services, logs, processes, network state, or user sessions. The examples below focus on FileWave Client troubleshooting, but the same approach is useful for other Windows service issues.
How
Assumptions for the examples below:
1) You downloaded PsTools and unzipped it.
2) You launched Command Prompt as a domain admin or another account with the needed rights on the remote device.
3) You changed into the directory where PsTools is located.
Connect to the remote computer by name in an interactive PsExec shell:
psexec64 \\computername -h cmd
You should end up in a shell like the one below. Type exit to leave the remote shell.
From that shell, you can run normal Windows command-line tools on the remote device. These examples are useful when a Windows client is not reporting correctly.
- Check the FileWave Client service:
- Stop the FileWave Client service:
sc stop filewavewinclient
- Start the FileWave Client service:
sc start filewavewinclient
- If the service will not start or stop, identify and stop the process directly:
- Find the FileWave Client process.
- Kill the process by PID.
-
taskkill /PID 16264 /F -
The same pattern can help with a stuck Windows Update agent. When Windows Update hangs and the service will not stop,
tasklist /svc | findstr wuauservidentifies the process that owns the service. A reboot can also clear the condition, but it interrupts whoever is using the device.
-
- Check the FileWave Client log for entries from today:
-
type c:\programdata\filewave\fwclient\fwcld.log | findstr mm-dd - Replace
mm-ddwith today's month and day, such as05-16.
-
- Get the IP address of the workstation:
-
ipconfig
-
- Restart the device immediately. This interrupts any active user session, so check before running it on a device in use.
-
shutdown -r -t 0 -f
-
- Check whether other users are logged in:
- Get the last boot time:





No comments to display
No comments to display