https://github.com/andif888/ansible-role-win-psexec
ownloads and installs PsExec.exe and PsExec64.exe
https://github.com/andif888/ansible-role-win-psexec
ansible-role psexec windows
Last synced: 4 months ago
JSON representation
ownloads and installs PsExec.exe and PsExec64.exe
- Host: GitHub
- URL: https://github.com/andif888/ansible-role-win-psexec
- Owner: andif888
- Created: 2022-01-09T00:04:08.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T22:22:39.000Z (about 2 years ago)
- Last Synced: 2025-01-10T16:47:23.355Z (5 months ago)
- Topics: ansible-role, psexec, windows
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ansible-role-win-psexec
=========Downloads and installs PsExec.exe and PsExec64.exe
Role Variables
--------------The default values for the variables are set in defaults/main.yml:
```yaml
ps_tools_extract_path: '%windir%\Temp\pstools'
ps_tools_install_path: '%windir%\system32'
ps_tools_download_url: 'https://download.sysinternals.com/files/PSTools.zip'
ps_tools_filename_zip: 'PSTools.zip'
pstools_delete_extract_dir: true
```Example Playbook
----------------Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
```yaml
---
- hosts: windows
become: true
gather_facts: yes
vars:
pstools_delete_extract_dir: falseroles:
- ansible-role-win-psexec
```