Re: Common Desktop Icons for multiple users
- From: "ptwilliams" <ptw2001@xxxxxxxxxxx>
- Date: Thu, 26 May 2005 22:20:09 +0100
The only way through GPO, by default, would be to use logon and/ or startup
scripts.
' An example of using environment variables when copying files.
' In this script a shortcut 'shortcut.lnk' is copied to the desktop
' of the %username% user profile.
set objFso=createObject("scripting.fileSystemObject")
set objWShell=wScript.createObject("WScript.Shell")
usrName=objWShell.expandEnvironmentStrings("%USERNAME%")
strFileToCopy="shortcut.lnk"
strFolder="C:\Documents and Settings\"&usrName&"\Desktop"
if objFso.folderExists(strFolder) then
objFso.copyFile strFileToCopy,strFolder&"\",true
end if
--
Paul Williams
Microsoft MVP - Windows Server - Directory Services
http://www.msresource.net | http://forums.msresource.net
.
- Follow-Ups:
- Re: Common Desktop Icons for multiple users
- From: Eric W. Holzapfel
- Re: Common Desktop Icons for multiple users
- References:
- Common Desktop Icons for multiple users
- From: Eric W. Holzapfel
- Common Desktop Icons for multiple users
- Prev by Date: Common Desktop Icons for multiple users
- Next by Date: Re: Force Delete User
- Previous by thread: Common Desktop Icons for multiple users
- Next by thread: Re: Common Desktop Icons for multiple users
- Index(es):
Relevant Pages
|