You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
psutils is giving access errors on Win 7 32 and 64 bits all the way to windows 10
One fix is on banyan_base.py
try:
name=p.name() #<-- This will read the name
except Exception as e:
continue
#p_command = p.cmdline() #<-- This was original line
try:
#if any('backplane' in s for s in p_command): #<-- This was original line when received a list
if 'backplane.exe'== name: #<-- Since we stored the name on one variable no need to check a list
The text was updated successfully, but these errors were encountered:
MrYsLab
changed the title
fsutils is giving access errors on Win 7 32 and 64 bits all the way to windows 10
psutils is giving access errors on Win 7 32 and 64 bits all the way to windows 10
Jan 27, 2018
psutils is giving access errors on Win 7 32 and 64 bits all the way to windows 10
One fix is on banyan_base.py
try:
name=p.name() #<-- This will read the name
except Exception as e:
continue
#p_command = p.cmdline() #<-- This was original line
try:
#if any('backplane' in s for s in p_command): #<-- This was original line when received a list
if 'backplane.exe'== name: #<-- Since we stored the name on one variable no need to check a list
The text was updated successfully, but these errors were encountered: