I am trying to write some digital forensics software in python, which means I need a way to access volume shadow copies on windows. I am following this article from SANS https://www.sans.org/blog/using-volume-shadow-copies-from-python, using the following block of code. import win32com.client def vss_list(self): wcd = win32com.client.Dispatch("WbemScripting.SWbemLocator") wmi = wcd.ConnectServer(".", "root\cimv2") obj [...] read more