How to block access to Intranet Site from workstation logged in via RDP?
is vpn solution through external firewall or internal service?
is scripting vpn login available?
script disallow domain access local servers host file sharing/intranet sites/your discretion.
set-aduser
http://technet.microsoft.com/en-us/library/ee617215.aspx
example:
set-aduser -identity %username% -logonworkstations "officeworkstation"
(to limit access workstation while vpned in.)
on vpn disconnect:
set-aduser -identity %username% -logonworkstations null
(to allow access computers while user in office, null should default 'all computers'.)
Windows Server > Security
Comments
Post a Comment