Changes between Version 6 and Version 7 of Windows RDP Config Settings


Ignore:
Timestamp:
11/27/23 07:51:10 (12 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows RDP Config Settings

    v6 v7  
    22
    33== Python 3 Script to Keep VPN Link Up ==
     4
     5{{{
     6Set windows environment variables as follows (Computer --> Properties --> Advanced System Properties --> Environment Variables --> System Variables)
     7
     8    VPN = SCOM
     9    VPNUSER = [​login@scom.ca]
     10    VPNPASS = [password]
     11    VPNIP = [assigned ip address to check]
     12    VPN_HEART_BEAT = [0] off, [1] event, [2] event & email logging
     13    VPN_TIME_OUT = [seconds] (default 600)
     14
     15}}}
     16
    417
    518{{{
     
    89102RAS_USERNAME = os.getenv('VPNUSER')
    90103RAS_PASSWORD = os.getenv('VPNPASS')
     104VPN_HEART_BEAT = [0] off, [1] event, [2] event & email logging
     105VPN_TIME_OUT = [seconds] (default 600)
     106
    91107
    92108