Let's assume I have a textfile in some network path
EX: \cr-ampd-a01.abcd.loc\BulkFolder\textfile.txt
How to copy that file to my controller machine in ansible
Note: I can access it by (WIN+R and that path) then it pops up for credentials to access.
This is the sample code with win_copy
- name: copy from network to controller
  win_copy:
    src: \\cr-ampd-a01.abcd.loc\BulkFolder\textfile.txt
    dest: C:\Temp\OTW\Mastapps
    remote_src: yes
    become: yes
  vars:
    ansible_become_user: XXX\Uxxxxxx
    ansible_become_pass: PasswordHere
Error with this code is: Cannot copy src file as it does not exit
Another with net_get
  - name: copy from network to controller
    net_get:
      src: \\cr-ampd-a01.abcd.loc\BulkFolder\textfile.txt
      dest: C:\Temp\OTW\Mastapps
      ansible_network_os: "eos"
      remote_src: True
      become: True
    vars:
      ansible_become_user: XXX\Uxxxxxx
      ansible_become_pass: PasswordHere
Error here: ansible_network_os must be specified on this host
How can I achieve this?