skip to Main Content

My goal is to use ansible to turn off this “windows feature” that can be found on a windows machine by searching “Turn Windows features on or off” and going down to SMB 1.0/CIFS File Sharing Support.

Something is wrong with my code and I cannot get the setting disabled, please help.

CODE:

- name: Turn off SMB
  hosts: myhosts
  become_method: runas

  vars:
    ansible_become_password: mysecurepasswordthatsnot123

  tasks:
   - win_shell: Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
    become: yes
    become_user: user

What is wrong with my play?? Error has to do with non interactive mode??

2

Answers


  1. Chosen as BEST ANSWER

    not sure about win_shell.. but ansible doc suggests to use win_optional_feature. Have you tried this way?

    also, there is a sample play available at this link for windows features using win_command.. check it out.

    i am sure you would have seen this blog


  2. not sure about win_shell.. but ansible doc suggests to use win_optional_feature. Have you tried this way?

    also, there is a sample play available at this link for windows features using win_command.. check it out.

    i am sure you would have seen this blog

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search