Hello! I have also tried to create a backup script in PowerShell to avoid dependencies on vscsc and dosdev: https://github.com/FrigoCoder/Mirror Unfortunately I ran into an issue. PowerShell only allows ClientAccessible context, whereas VSCSC uses Backup context, which is exactly what we would need. $s1 = (gwmi -List Win32_ShadowCopy).Create($drive, "Backup") If you try to create a shadow copy with Backup context, the result object has a dummy ShadowId full of zeroes, and a ReturnValue of 5 which...
Hello! I have also tried to create a backup script in PowerShell to avoid dependencies on vscsc and dosdev: https://github.com/FrigoCoder/Mirror Unfortunately I ran into an issue. PowerShell only allows ClientAccessible context, whereas VSCSC uses Backup context, which is exactly what we would need. $s1 = (gwmi -List Win32_ShadowCopy).Create($drive, "Backup") If you try to create a shadow copy with Backup context, the result object has a dummy ShadowId full of zeroes, and a ReturnValue of 5 which...