I am looking for a script in Powershell, which list information about VSS shadow copy on Windows Server 2016. I need to detect if shadow copy on specific volumes is Enabled or Disabled.
In GUI (This PC > Right click on (C:) > Configure Shadow Copies) you can Disabled or Enabled each volume for shadow copy. You can see in attach images "Volume" and "Next Run time" ("Time" or "Disabled" status).
I looking for stript in powerhsell that list information which I can see in GUI?
I have tried vssadmin list volumes
or Get-CimInstance Win32_ShadowCopy
but I need detect if VSS on specific Volume is Enabled or Disabled.
Please, does anybody know this issue?
Thank you for you answers and your help!
I previously wrote a script to do just this and I found that I needed to use a combination of
vssadmin list shadowstorage
andGet-ScheduledTask
in order to pull all of the information I needed.Here's what I came up with previously (it was a rush job that I never went back to, so could do with a bit of a tidy up and some error checking, but it should set you on the right path):
This script outputs the following information as PSObjects that filtered with the
Where-Object
andSelect-Object
, etc...