New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-microsoft-vss

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-microsoft-vss

Native bindings to take advantage of Microsoft Windows Volume Shadow Copies.

latest
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

node-windows-vss

Native bindings to take advantage of Microsoft Windows Volume Shadow Copies.

Support

  • Node.js (tested on >= 8.x)

Installation

To take advantage of Windows Volume Shadow Copies, we've some Windows requirements:

  • The command must to be executed as administrator.
  • Remember to check LUA.
  • Shadow Copies Service must tu be enabled as automatic or default option.
> npm install node-windows-vss --save

API

takeSnapshot(volume, callback)

It takes a snapshot from a specified volume. Returns a callback with (Error err, String snapshotPath)

const WindowsVss = require('node-windows-vss')

WindowsVss.takeSnapshot("C:", (err, res) => {
	if (err) return console.log(err)
	return console.log('res', res)
})

Keywords

microsoft

FAQs

Package last updated on 22 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts