Link to home
Start Free TrialLog in
Avatar of cgru2
cgru2

asked on

Using logon script to save IE favourites, history, my documents, etc

Hi. I just need to know how to use roaming profiles to save users favorites, history, my documents etc.

I want to do this because some of my users are moving around the office and all these settings are currently saved locally on the workstation.

Basically at the moment my user.bat file includes only share drive mappings and printer mappings. Example below:

NeT Use I: \\OC-DC-01\InfoTech
Net use R: \\OC-DC-01\Conference
Net Use M: \\OC-DC-01\Management

adprintx.exe /cd \\OC-DC-01\OC-HP2600

Thanks


ASKER CERTIFIED SOLUTION
Avatar of sirbounty
sirbounty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cgru2
cgru2

ASKER

Well my users are all roaming users.

Whenever anyone logs in their PC all the network drives get mapped, as well as a drive which is their own drive eg: (W:) LisaSmith, (W:) ChrisG. Here they can save documents and files to be used on any other computer.

On the server side there is a network share where all these profiles are stored.
So does the above work for you?
Avatar of cgru2

ASKER

No .. it didnt
I'm confused then...what's the problem at this point?
Avatar of cgru2

ASKER

OK

So at the moment I've got my users created in AD. When a user logs on the machine, the Users.bat script is run. The script contains:

Net Use B: \\ServerName\ClientApps\
Net Use K: \\ServerName\Bookings
Net Use T: \\ServerName\Translations
adprintx.exe /cd "\\ServerName1\Samsung ML-2550 Series PCL 6"

And I also have a share drive ("Users Home Drives") on the server's D:\ drive, which contains all my users profile folders. Eg: SmithD, etc.

In these folders I've got another folder called "SmithD's Documents". In there I've got folders such as SmithD's Music, SmithD's Pictures, SmitD's Videos, etc.

What I want to do is I want the IE Favourites to get saved to that folder too.
So this should do it...no?

if not exist "\\ServerName\Users Home Drives\%username%\Favorites" md "\\ServerName\Users Home Drives\%username%\Favorites"
xcopy "%userprofile%\Favorites" "\\ServerName\Users Home Drives\%username%\Favorites"
if not exist "\\ServerName\Users Home Drives\%username%\History" md "\\ServerName\Users Home Drives\%username%\History"
xcopy "%userprofile%\History" "\\ServerName\Users Home Drives\%username%\History"
if not exist "\\ServerName\Users Home Drives\%username%\My Documents" md "\\ServerName\Users Home Drives\%username%\My Documents"
xcopy "%userprofile%\My Documents" "\\ServerName\Users Home Drives\%username%\My Documents"
Avatar of cgru2

ASKER

I've tried it. This is how my Users.bat looks like now:

Net Use B: \\OC-DC-01\ClientApps\
Net Use K: \\OC-DC-01\Bookings
Net Use T: \\OC-DC-01\Translations
Net USe N: \\OC-DC-01\Accounts      
Net USe H: \\OC-DC-01\Users\%UserName%
NeT Use I: \\OC-DC-01\InfoTech
Net use R: \\OC-DC-01\Conference
Net Use M: \\OC-DC-01\Management
Net Use X: \\OC-AS-02\DOSIBS
Net Use Z: \\OC-AS-02\OrbitsUpdate

adprintx.exe /cd "\\oc-dc-01\Samsung ML-2550 Series PCL 6"

if not exist "\\OC-DC-01\Users Home Drives\%username%\Favorites" md "\\OC-DC-01\Users Home Drives\%username%\Favorites"
xcopy "%userprofile%\Favorites" "\\OC-DC-01\Users Home Drives\%username%\Favorites"

It's still not creating a Favourites folder in the users share drive...
Avatar of cgru2

ASKER

Its worked. I replaced Users Home Drives with Users.

But it's got a error.

So now it created a Favorites folder and saves the favorites to it, but when I log in with that username a DOS prompt pops up and it asks me if I want to overwrite the URLs in Favorites.

C:\Documents and Settings\cristiang>xcopy "C:\Documents and Settings\cristiang\F
avorites" "\\OC-DC-01\Users\cristiang\Favorites"
Overwrite \\OC-DC-01\Users\cristiang\Favorites\MSN.com.url (Yes/No/All)? Y

C:\Documents and Settings\cristiang\Favorites\MSN.com.url
Overwrite \\OC-DC-01\Users\cristiang\Favorites\Radio Station Guide.url (Yes/No/A
ll)?Y

After I press "Y" for MSN.com.url and Radio Station Guide.url, the DOS disappears.

Now when I open IE and look in Favorites, the only thing there is MSN.com and Radio Station Guide (which I think are the default Favorites).
Hmm - what about placing some pauses and echos in there -what do you see?

Net Use B: \\OC-DC-01\ClientApps\
Net Use K: \\OC-DC-01\Bookings
Net Use T: \\OC-DC-01\Translations
Net USe N: \\OC-DC-01\Accounts      
Net USe H: \\OC-DC-01\Users\%UserName%
NeT Use I: \\OC-DC-01\InfoTech
Net use R: \\OC-DC-01\Conference
Net Use M: \\OC-DC-01\Management
Net Use X: \\OC-AS-02\DOSIBS
Net Use Z: \\OC-AS-02\OrbitsUpdate

adprintx.exe /cd "\\oc-dc-01\Samsung ML-2550 Series PCL 6"

if not exist "\\OC-DC-01\Users Home Drives\%username%\Favorites" (
  echo Folder does not exist...creating it...
  md "\\OC-DC-01\Users Home Drives\%username%\Favorites"
)
pause
@echo on
xcopy /s "%userprofile%\Favorites" "\\OC-DC-01\Users Home Drives\%username%\Favorites"
pause
Oh, okay - use a /y after xcopy to avoid that... :^)
Avatar of cgru2

ASKER

I also get this error with your solution ...

C:\Documents and Settings\olgab>xcopy /y "C:\Documents and Settings\olgab\Favori
tes" "\\OC-DC-01\Users\OlgaB\Favorites"
Does \\OC-DC-01\Users\OlgaB\Favorites specify a file name
or directory name on the target
(F = file, D = directory)?

Any ideeas?
use the /I parameter
Avatar of cgru2

ASKER

As in:

xcopy /ly "C:\Documents and Settings\olga.......

or?
No, each parameter is seperated...as in:

xcopy /s /y /i "%userprofile%\Favorites" "\\OC-DC-01\Users Home Drives\%username%\Favorites"