Hai guys.I am having a screensaver file in (scr)format. I want to install in
all the client machine which we have in our network. Can u all help me to do
that using Login script.can u just give me a sample script.
--
MuraliKrishnan
Entry level Network Engineer

Re: Screen Saver by JTW

JTW
Wed Apr 12 20:01:23 CDT 2006

You could do something as simple as a file copy. An example is here:

http://www.dx21.com/SCRIPTING/VBSCRIPT/ViewOItem.ASP?OID=68&VL=A

Re: Screen Saver by Gavin

Gavin
Wed Apr 12 20:12:19 CDT 2006

Well without creating an install for the screen saver, what you can do is
have the .scr file in a locaion on your network and simply copy that file to
the local %system32% folder... here is an example

Dim objFileSys

Set objFileSys = CreateObject("Scripting.FileSystemObject")

objFileSys.CopyFile "C:\Foldername\screensaver.scr", "C:\Windows\System32"

End

This is probably the easiest way without creating an install.


HTH
Gavin...


"MuraliKrishnan" <MuraliKrishnan@discussions.microsoft.com> wrote in message
news:67841675-10EB-4B32-8395-2E9DA9BD2420@microsoft.com...
> Hai guys.I am having a screensaver file in (scr)format. I want to install
> in
> all the client machine which we have in our network. Can u all help me to
> do
> that using Login script.can u just give me a sample script.
> --
> MuraliKrishnan
> Entry level Network Engineer