Ansible에서 Windows RDP 다중 세션 사용

동기 부여



Windows의 발판 서버에서 여러 세션을 하고 싶은 상황이 있었습니다.
유저 작성이나의 흐름으로 실행하면 좋을까.

환경


  • local
  • macOS 10.15.3
  • ansible 2.9.6 (Python 3.7.5)

  • remote
  • GCE instance
  • Windows Server 2016 Datacenter


  • 방법



    레지스트리를 편집합니다.

    multi-rdp-sessions/tasks/main.yml
    - name: "Allow Multiple RDP Sessions"
      win_regedit:
        path: HKLM:\System\CurrentControlSet\Control\Terminal Server
        name: fSingleSessionPerUser
        data: 0
        type: dword
        state: present
    

    참고


  • 매뉴얼로 실시하는 경우
  • HOW TO ALLOW MULTIPLE RDP SESSIONS FOR THE SINGLE USER IN WINDOWS?

  • 원래 이 방법을 할 수 없는지 검토하고 있었습니다만, 지금까지 로컬 그룹 폴리시를 편집하는 ansible module 은 대단히
  • 원격 데스크톱에서 2 세션을 활성화하는 방법 – Windows Server 2012 R2

  • Remote Desktop Gateway server가 설정되어 있다면?
  • win_rds_settings – Manage main settings of a Remote Desktop Gateway server

  • 좋은 웹페이지 즐겨찾기