
esas
MemberContent Type
Profiles
Forums
Events
Everything posted by esas
-
Hey! It's been a while since I used this stuff, so I don't remember everything about it. I'm posting the last file I made. You don't need all the extra files anymore, since they are al compiled into this new one. To run the script silent just run "UPC.exe SILENT" I think I have to start working on this again after reading the new posts.. UPC.rar
-
How To Put Windows Media Player In Windows Xp Setu
esas replied to jmri25's topic in Unattended Windows 2000/XP/2003
You should try searching. Here's a way to slipstream MP10: http://www.msfn.org/board/index.php?showtopic=35042&st=0 or this http://www.msfn.org/board/index.php?showtopic=35943 -
Yeah, that would be nice!
-
I've tried this, but it didn't seem to work. I made a SFX that ran before the Skype installer creating .Documents and Settings\USERNAME\Application Data\Skype\usernamefolder. No luck.
-
Hi! I've been looking at the source and made some changes. As you can see I've added a SILENT option. It can be used with or without the RESTART option, and it doesn't mather in whitch order you put the options. The reson the RESTART option didn't work before was a error in the shutdown line. I removed the " after the %computername% and it worked. You might want to put the UserprofileChecker.hlp in the UPC.rar. I wasn't using it untill I saw I had to in the source. Figured it build in with the UPC.exe or something. It still creates the logfile and launches the popup (If the SILENT option isn't used) even though there isn't duplicated user account. A little irritating. No the log only report that it has deleted the new account. Except for this the original account seems find.
-
Hey Felix! I've been testing UPC for some days now, and I have a few things to report.. 1. When a duplicated userfolder is detected and deleted the originally folder doesn't appear in "My Computer" 2. The Popup only says "Duplicated profile dected", with the buttons "Yes"and "No". This isn't even a question. I really liked your previously version with the help button, and the possibility to write my own popup. (I would also like to translate this to my norwegian XP by time) 3. The popup is being displayed no mather what. Even if there isn't a duplicated account. It also creates the logfile, even though it doesn't delete anything. 4. I can't get the RESTART option to work. I have to restart manually. Is it necessary to restart? Is is not enough to logof the user like in the first version? Just asking. 5. A SILENT option would be great. That way I won't have to answar yes during RunOnceEX. This wasn't a issue in the first version as I could edit the cmd-file myself. Can't do that now. That's all..... I also want to thank you for the work you have done so far. You are great!!
-
Hi! I'm not sure how this is going to help me add a user to "Skype Phone" . I don't think you understood me corectly. Isn't "User Account Script" just for adding windows account? Or am I not getting it?
-
Does anyone know if it's possible to add user to Skype automaticly during RunOnceEx?
-
Does anyone know if it's possible to add user to MSN Messenger automaticly during RunOnceEx?
-
Great work Felix! I'll test this during the next week.. You'll hear from me then..
-
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
Are you having problems Felix?? Anything I might help you with?? -
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
NICE!!!!! Looking forward to it...!! -
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
Hi! I've been trying out different soulutions the past few days, but i'm not there yet. gunsmokingman: tried your command-file. Did some modification so that I could run it as DetachedProgram. Also had to add "/D" to the attrib command. But it won't work. Can't figure out why. Works fine when I test it, but not during install... `Felix`: Thanks for your help so far. Got your program working. Don't know happened the first time I tried it. Must have been to tired or something. This was just what I was looking for. There's just one problem. When I do a install, the "Default Users" folder already exist. The installer then creates "Default Users.WINDOWS". My command file loads and unloads the NTUSER.DAT hive in "Default Users" (when it should be using "Default Users.WINDOWS". I tried renaming the old folder with DetachedProgram launched from winnt.sif. (used gunsmokingmans tips), but as I've allready said it didn't work. Any tips??? -
Prevent MSN Messenger 7 (beta) from popping up.
esas replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
Hi! 1. Apply all your settings in messenger. 2. export Appsettings under HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger 3. Run the regfile during install to apply your personal settings -
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
Unattended winxp SP2 -
auto reboot before complete setup list ! attached
esas replied to AjeeB's topic in Unattended Windows 2000/XP/2003
Hi! Use this java.exe /s /v/qn (I've renamed the installation file to "java.exe", becaus the originall name was just to long and stupid) -
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
hmm.. I't won't work. I must be doing something wrong. Would you mind giving me a detailed description on how to do this. I would be very thankful. Hope this isn't to much trouble. -
Rename old "Documents and Settings" during install
esas replied to esas's topic in Unattended Windows 2000/XP/2003
Thanks Felix! Looks like this is what i'm looking for. But can you tell me when this is going to be run..? And where to put the required 3rd party utilities for the batch to work. Didn't figure that out by myself. Thanks! -
Hi! Here's the situation: I've got a unattended Windows XP installation CD that installs everthing on c:, except the "Documents and Settings" folder. This is created on D: by this tring in winnt.sif. [GuiUNattended] ProfilesDir = "d:\Documents and Settings" My problem is when there already exist a "Documents and Settings" folder on D:with the same users as the ones on my installation CD . I then get foldername like User1.XP2600 (where XP2600 is the machine name) and All Users.WINDOWS. I tried to rename the old "Documents and Settings" folder to ""Documents and Settings.OLD" with "DetachedProgram" in winnt.sif, because this runs before the new "Documents and Settings" folder is created (At T-39). Am I right? It didn't work. Guess it's because I don't have the rights to this or something...?? DetachedProgram="%systemdrive%\install\batch.cmd" Batch.cmd: @echo off ren "D:/Documents and Settings" "Documents and Settings.OLD" My final goal is to copy all the stuff from the old user folders to the new ones. Can anyone help me??