itgeek Posted June 1, 2011 Posted June 1, 2011 Hi I want to be able to open a webpage only once, when a user log in for the first time. Is this possible? I want to be able to display an ICT Support Help and support page for new members of staff? Thanks
Edu-IT Posted June 1, 2011 Posted June 1, 2011 I don't think this would be easily achievable. How would you keep track of the logins to determine what is the 1st logon? Put together a welcome email that is sent to them instead with a link?
Jamo Posted June 1, 2011 Posted June 1, 2011 Logon script which writes a small hidden temp file to the users home drive when it has completed? If this file is then found again the script exits. @echo off if exist "N:\firstlogon.tmp" ( exit ) else ( start iexplore [url]www.website.com[/url] echo %username% >> "N:\FirstLogon.tmp" exit ) I haven't tested the above but if you save it to a .bat file and run it twice (assuming you have N drive mapped!!) it should first open IE and then do nothing the next time it is run. Hope that helps 1
rocknrollstar Posted June 2, 2011 Posted June 2, 2011 Could you put a short cut in the startup folder?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now