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
I'm trying to get VSS Application-Consistent snapshotting to dev and test working and have had real troubles with finding a good guide, but I'm working my way thru the powershell in the SSMS tooling to get this working for us.
I am having trouble requesting that the backup be mounted to a mount point and I noticed that in the ValidateDriveLetter function it tests if you have passed in a drive letter, and it also tests if that is instead a mount point, but the code only runs:
if ($False -eq (Test-Path -Path $DriveLetter))
To my understanding of powershell, this will only run on the current computer and not the remote computer that we check from the ComputerName being passed in?
This has stopped us from running this scripting on a remote server.
Thanks
The text was updated successfully, but these errors were encountered:
Hey Andrew, thanks for posting here about the issue you encountered with mount points on remote computers. The good news is that this is an issue that's been identified previously and the code has already been written to fix it. We'll be releasing an updated version soon which contains the fix.
Hey guys,
I'm trying to get VSS Application-Consistent snapshotting to dev and test working and have had real troubles with finding a good guide, but I'm working my way thru the powershell in the SSMS tooling to get this working for us.
I am having trouble requesting that the backup be mounted to a mount point and I noticed that in the ValidateDriveLetter function it tests if you have passed in a drive letter, and it also tests if that is instead a mount point, but the code only runs:
if ($False -eq (Test-Path -Path $DriveLetter))
To my understanding of powershell, this will only run on the current computer and not the remote computer that we check from the ComputerName being passed in?
This has stopped us from running this scripting on a remote server.
Thanks
The text was updated successfully, but these errors were encountered: