system-restore
v1.0.4
Published
Create Windows System Restore Points using NodeJS.
Downloads
3
Maintainers
Readme
node-system-restore
Create a restore point on your Windows machine using NodeJS.
About the Project
This project uses a C# executable (WinRestorator.exe) to create System Restore points on Windows machines. The inspiration for this project is to provide a scriptable alternative to PowerShell for creating restore points on Windows machines.
Getting Started
If you decide that you are interested in contributing, please clone the repository and have a look around. Get to know the code, and how it was implemented. Constructive criticism is always desired, and meaningful contributions are greatly appreciated.
Brief Overview of npm
Scripts
{
"clean": "rimraf coverage bin tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"package": "node ./build-scripts/package.js",
"build-n-package": "npm run build && npm run package"
}
clean
- Clear directories that have artifacts.build
- Compile the TypeScript code.watch
- Watch*.tsc
files for changes, and recompile.lint
- Lint the TypeScript source.pretest
- Lints the TypeScrpt source.test
- Runs all unit tests.test-only
- Runs all unit tests.test:watch
- Watches all unit tests in spec folder.package
- Callsnexe
on the source by utilizing thepackage.js
file. GeneratesSystemResore.exe
.build-n-package
- Builds and packages the source.
How to Use system-restore
as a Module
The system-restore
module export a single function called
createRestorePoint
. You can imoprt it using the following
example as a baseline.
const { createRestorePoint } = require('system-restore');
createRestorePoint
Information
/**
* Creates a system restore point.
*
* @param restorePointName The name of the restore point.
* @param restorePointType The type of restore point to create
*/
createRestorePoint(restorePointName: string, restorePointType: string): boolean
Values for Restore Point Type
- APPLICATION_INSTALL
- APPLICATION_UNINSTALL
- DEVICE_DRIVER_INSTALL
- MODIFY_SETTINGS
- CANCELLED_OPERATION
How to Use SystemRestore.exe
SystemRestore.exe is the EXE that is published when the
package
script is called. This is achieved using the nexe
package, and includes the NodeJS runtime in the EXE.
Overall, the parameters for SystemRestore.exe are the same
as the system-restore
module. The parameters can be passed
into SystemRestore.exe using the following command line arguments.
--restorePointName
{String} The name of the restore point.
--restorePointType
{String} The type of restore point to create.
SystemRestore.exe --restorePointName="Hello, world!" --restorePointType=APPLICATION_INSTALL
Values for Restore Point Type
- APPLICATION_INSTALL
- APPLICATION_UNINSTALL
- DEVICE_DRIVER_INSTALL
- MODIFY_SETTINGS
- CANCELLED_OPERATION
Where to Find SystemRestore.exe
You can find the SystemRestore.exe artifact attached to the tags that correlate to the version numbers when the artifacts were generated. Go to the repository tags and find the SystemRestore.exe artifact attached to a tag.
A Note about Pull Requests
All pull requests will be thoughtfully considered, but not all pull requests will be accepted. This does not mean your idea/code/content was not good. It just means it is not right for the project.
A Note about Respect
All contributors in this repository are expected to demonstrate basic human kindness/respect/decency. It is NEVER ok to show disrespect to another individual in this workspace. Disrespect is a very broad term. In the simplest sense, if what you are going to say to someone, or contribute to the code does not add value, or is not conducive to the health of the project, or it is demeaning to an individual, you will be asked to refrain from contributing to the project going forward.
Questions/Comments/Concerns
Please use the issue trakcer to ask any questions, or to opine about something regarding the project.
Thank You
Thank you for checking out this repository. Your time and energy is greatly valued.