I'm wondering if it it is possible to build a logon script, for Windows XP & Vista, that will detect where the user is connected to a particular network (Defined by IP schema). If they are connected to a specific network, then it will display a message such as, "Please note your will not be able to access the XYZ Network Drive, or your company email"
feedback
|
|
Why do this with batch file gyrations when you can just link GPOs to site objects? The "bonus" being that if you add addt'l subnets or move subnets around you'll never have to edit your script. If you're looking at this being a user logon script that you want to apply only when users logon to specific computers then you'll need to look at using loopback group policy processing as well. | |||||||||||
feedback
|
|
We use something like this to determine users location based on their IP address. Basically, someone in Brisbane gets an IP address 172.21.x.x but in Sydney it's 172.22.x.x. this is in the logon script:
network.vbs :
Now you need to place some kind of a pop-up message in the right place. | |||||||||||
feedback
|