├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure-pipelines.yml ├── binding.gyp ├── index.d.ts ├── index.js ├── package.json └── src ├── Policy.hh ├── PolicyWatcher.hh ├── linux └── PolicyWatcher.cc ├── macos ├── BooleanPolicy.cc ├── BooleanPolicy.hh ├── NumberPolicy.cc ├── NumberPolicy.hh ├── PolicyWatcher.cc ├── PreferencesPolicy.hh ├── StringPolicy.cc └── StringPolicy.hh ├── main.cc └── windows ├── BooleanPolicy.cc ├── BooleanPolicy.hh ├── NumberPolicy.cc ├── NumberPolicy.hh ├── PolicyWatcher.cc ├── RegistryPolicy.hh ├── StringPolicy.cc └── StringPolicy.hh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/package.json -------------------------------------------------------------------------------- /src/Policy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/Policy.hh -------------------------------------------------------------------------------- /src/PolicyWatcher.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/PolicyWatcher.hh -------------------------------------------------------------------------------- /src/linux/PolicyWatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/linux/PolicyWatcher.cc -------------------------------------------------------------------------------- /src/macos/BooleanPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/BooleanPolicy.cc -------------------------------------------------------------------------------- /src/macos/BooleanPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/BooleanPolicy.hh -------------------------------------------------------------------------------- /src/macos/NumberPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/NumberPolicy.cc -------------------------------------------------------------------------------- /src/macos/NumberPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/NumberPolicy.hh -------------------------------------------------------------------------------- /src/macos/PolicyWatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/PolicyWatcher.cc -------------------------------------------------------------------------------- /src/macos/PreferencesPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/PreferencesPolicy.hh -------------------------------------------------------------------------------- /src/macos/StringPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/StringPolicy.cc -------------------------------------------------------------------------------- /src/macos/StringPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/macos/StringPolicy.hh -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/windows/BooleanPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/BooleanPolicy.cc -------------------------------------------------------------------------------- /src/windows/BooleanPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/BooleanPolicy.hh -------------------------------------------------------------------------------- /src/windows/NumberPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/NumberPolicy.cc -------------------------------------------------------------------------------- /src/windows/NumberPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/NumberPolicy.hh -------------------------------------------------------------------------------- /src/windows/PolicyWatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/PolicyWatcher.cc -------------------------------------------------------------------------------- /src/windows/RegistryPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/RegistryPolicy.hh -------------------------------------------------------------------------------- /src/windows/StringPolicy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/StringPolicy.cc -------------------------------------------------------------------------------- /src/windows/StringPolicy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-policy-watcher/HEAD/src/windows/StringPolicy.hh --------------------------------------------------------------------------------