├── .rubocop.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── contents ├── winrmcp.rb └── winrmexe.rb └── plugin.yaml /.rubocop.yml: -------------------------------------------------------------------------------- 1 | Metrics/LineLength: 2 | Max: 120 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /contents/winrmcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/contents/winrmcp.rb -------------------------------------------------------------------------------- /contents/winrmexe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/contents/winrmexe.rb -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/rd-winrm-plugin/HEAD/plugin.yaml --------------------------------------------------------------------------------