[ActiveDir] IE popup via GPO?

2005-10-04 Thread Harding, Devon










Is it possible to create a GPO to have an IE window (going
to a specific site) popup on all clients machine at a specific time?

 

Devon Harding

Windows Systems Engineer

Southern Wine & Spirits
- BSG

954-602-2469

 










__This message and any attachments are solely for the intended recipientand may contain confidential or privileged information.  If you are notthe intended recipient, any disclosure, copying, use or distribution ofthe information included in the message and any attachments isprohibited.  If you have received this communication in error, pleasenotify us by reply e-mail and immediately and permanently delete thismessage and any attachments.  Thank You.





Re: [ActiveDir] IE popup via GPO?

2005-10-04 Thread Za Vue




I think this is asking too much of GPO.

-Z.V.

Harding, Devon wrote:

  
  
  

  
  
  Is it possible to create
a GPO to have an IE window (going
to a specific site) popup on all clients machine at a specific time?
   
  Devon
Harding
  Windows Systems
Engineer
  Southern Wine
& Spirits
- BSG
  954-602-2469
   
  
  
  __
This message and any attachments are solely for the intended recipient
and may contain confidential or privileged information. If you are not
the intended recipient, any disclosure, copying, use or distribution of
the information included in the message and any attachments is
prohibited. If you have received this communication in error, please
notify us by reply e-mail and immediately and permanently delete this
message and any attachments. Thank You.
  




List info   : http://www.activedir.org/List.aspx
List FAQ: http://www.activedir.org/ListFAQ.aspx
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/


Re: [ActiveDir] IE popup via GPO?

2005-10-04 Thread Kamlesh Parmar
What you need is a script which can be run from group policy 
or to create a task and copy it to many comps..

1) use WMI scripts 



WMI Script examples (you can use this script in group policy)

http://www.microsoft.com/technet/scriptcenter/scripts/os/tasks/default.mspx

or tool like WinAT, which will allows you to schedule task on multiple computers.

 WinAT is available in NT/2000 resource kit.

2) to create a task on one machine and copy it to many machines
on single machine, schedule a task with command line option 
 
cmd /c start http://myintranetsiteurl
and save it as say mypopup

Now you will see that, this task is saved as  c:\windows\Tasks\mypopup.job

now create a list of computers in a txt file with each computername on single line
say computers.txt

and run following command from the same machine

for /F %A in (computers.txt) do copy c:\windows\tasks\mypopup.job \\%A\admin$\tasks

once you are through, just check on some machines it is actually scheduled.

again, when you are ready to remove them just run 
for /F %A in (computers.txt) do del  \\%A\admin$\tasks\mypopup.job

This is quick way to do it..
(by the way, Task Scheduler service shud be running on all comps and
for copying the job file you should be logged in with admin user for
all comps)


I hope this helps...

--
Kamlesh
~~~
"Fortune and Love befriend the bold"
~~~

On 10/4/05, Harding, Devon <[EMAIL PROTECTED]> wrote:

















Is it possible to create a GPO to have an IE window (going
to a specific site) popup on all clients machine at a specific time?

 

Devon
 Harding

Windows Systems Engineer

Southern Wine & Spirits
- BSG

954-602-2469

 










__This message and any attachments are solely for the intended recipientand may contain confidential or privileged information.  If you are notthe intended recipient, any disclosure, copying, use or distribution of
the information included in the message and any attachments isprohibited.  If you have received this communication in error, pleasenotify us by reply e-mail and immediately and permanently delete thismessage and any attachments.  Thank You.




--