Windows Thread, Profiles in Technical; I wonder if anyone can help. One of our servers died, which incidentally had lots of applications installed on it.
...
-
27th March 2008, 06:55 PM #1
- Rep Power
- 0
Profiles
I wonder if anyone can help. One of our servers died, which incidentally had lots of applications installed on it.
I managed to get all the apps back onto another server, no problem. However, all users share the same desktop, start menu and so on (different for each year group and staff members). The problem is, that during logging on a script is run to connect to the apps server, obviously I've changed the name from the server that died to the new one but the programs on the start menu are now dead links.
Windows seems to store some info in the profile and I can fix it by deleting a users profile and when they log on, the profile is recreated and the links works.
What I don't want to do, is have to go through 800+ profiles and delete everything but their favourites (I've been told by the head of IT that the favourites have to stay). Does anyone have a quick fix (if there is one) or an idea of how I can delete everything in a users profile directory apart from the favourites folder?
Hope I've made sense.
Thanks.
-
-
IDG Tech News
-
27th March 2008, 07:09 PM #2 Get a script to copy the favorites somewhere first, then delete all contents then copy it back. Not sure how well that would work though.
You can also give the server the alias of the old server as well as the setting in registry that allows it to be referenced as that through a share.
Ps get your teeth into DFS it will save you this trouble in the future.
-
-
27th March 2008, 07:35 PM #3 I needed to do something similar last summer and ended up using a bash script on Cygwin. All the power of bash, with the prettiness of DOS 
Basically I walked down the profile tree, yanked out each favourites folder and moved it to the appropriate new location. If you tell me something about your environment I'll cook you something up.
-
Thanks to powdarrmonkey from:
Obinice (27th March 2008)
-
27th March 2008, 07:37 PM #4 The other thing we've done in the past is created a DNS record pointing the old name at the new server. This means that if something is going to \\server1 for example it still works as the \\server1 and \\newserver both resolve to the IP address of the new server. Saved us loads of time here in similar circumstances.
You do need to edit the registry on the box to stop strict name checking - can't remember the key but it's easily googled.
-
-
27th March 2008, 07:37 PM #5
- Rep Power
- 0
I thought I'd have to do that. Thanks anyway.
Just a quick question, don't want to sound totally dumb. I was thinking of a server alias or something like that, question is, how do I go about it? Do I have to do something in DNS?
-
-
27th March 2008, 07:41 PM #6 
Originally Posted by
Obinice
I thought I'd have to do that. Thanks anyway.
Just a quick question, don't want to sound totally dumb. I was thinking of a server alias or something like that, question is, how do I go about it? Do I have to do something in DNS?
This may help
Renaming a Windows 2003 Server - Server Networking
-
Thanks to jcollings from:
Obinice (27th March 2008)
-
27th March 2008, 07:44 PM #7 You certainly could. I scripted it because at the time we also moved lots of profiley stuff into the user's home directories, and then mapped the appropriately, like Favourites, App data, etc. So that they're loaded on demand instead of being pulled across during login.
Kinda depends how worried you are about it happening again I guess.
-
-
27th March 2008, 07:57 PM #8 You could add a few lines to delete the existing shortcuts a few lins before the script creates them.
What logon script is it? vbs?
-
-
27th March 2008, 08:25 PM #9
- Rep Power
- 0
Thanks for the help, I will try to sort this out in the morning.
-
-
27th March 2008, 08:26 PM #10
- Rep Power
- 0
What would you need to know?
-
-
27th March 2008, 09:17 PM #11 I guess you want to copy out the favorites folder from each profile so you can delete everything else and give them a new one?
For a share called 'profiles' where each user has one folder in the root, something like this will move all the favorites to 'someshare' and rename it to include the original profile name:
Code:
for a in `ls`; do mv //server/profiles/$a/Favorites //server/someshare/$a_favs; done
Assume a user jbloggs: it gets a directory listing of the profiles share into the variable $a, walks down into each profile, and moves the favorites folder to \\server\someshare, renaming it in the process to "$a_favs" (eg, jbloggs_favs).
Just make sure you have permission to move stuff throughout the tree before you start, and watch the spelling of favorites. Have you ever used cygwin?
-
SHARE: 
Similar Threads
-
By wesleyw in forum Virtual Learning Platforms
Replies: 0
Last Post: 26th November 2007, 11:56 AM
-
By ben_hampshire in forum Wireless Networks
Replies: 3
Last Post: 8th May 2007, 02:27 PM
-
By faza in forum Wireless Networks
Replies: 31
Last Post: 23rd December 2006, 01:22 AM
-
By colin in forum Learning Network Manager
Replies: 1
Last Post: 6th April 2006, 02:23 PM
-
By Ric_ in forum General EduGeek News/Announcements
Replies: 5
Last Post: 18th June 2005, 03:00 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules