Compare commits

..

No commits in common. "be56d043e517d68b1b67fc934fc4607a7ce462b9" and "a68c0e553d436101393f2904b165baa54fa3b13a" have entirely different histories.

2 changed files with 1 additions and 44 deletions

View file

@ -33,37 +33,5 @@ Get-Host | Select-Object Version
#### Windows Version #### Windows Version
```ps1 ```ps1
# In your Powershell # In your Powershell
(Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ProductName (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId
``` ```
Configure Ansible Access (WinRM Setup)
----------------------------------------
### configure WinRM Access
Configure WinRM with the ``ConfigureRemotingForAnsible.ps1`` Script as described in [docs.ansible.com/ansible/latest/user_guide/windows_setup.html#winrm-setup](https://docs.ansible.com/ansible/latest/user_guide/windows_setup.html#winrm-setup) in your WINDOWS PowerShell.
### configure ansible setup
+ add your host to the ``hosts.ini`` file.
+ add the following variables in the ``host_vars``:
```yaml
---
# host_vars/$hostname/vars.yml
ansible_connection: winrm
ansible_user: 'Windows_Admin_User'
ansible_password: 'Your_Windows_Admin_Password'
ansible_winrm_server_cert_validation: ignore
```
### validate access
After you installed the required deploy host python packages you can verify that the access is working by running the following ad-hoc command
```bash
ansible -m win_ping all
```
Ansible deploy host requirements
----------------------------------
```bash
pip install pywinrm
```

View file

@ -1,11 +0,0 @@
[defaults]
inventory = ./hosts.ini
retry_files_enabled = false
nocows = true
log_path = $HOME/.ansible/ansible.log
forks = 20
gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/.ansible/facts