Anderz Posted September 22, 2004 Posted September 22, 2004 UnattendMode=DefaultHideorUnattendMode=FullUnattendedWhat is the best. I have noticed that most users use FullUnattended. I use DefaultHide and doesn't have see all those stupid screens (like the "enter product id" screen for instance).Is fullunattended recommended or better in any way?
Nilfred Posted September 22, 2004 Posted September 22, 2004 I use DefaultHide too, because I like to stop at:[UserData] FullName="" OrgName="" ...for fulfillment purposes.Then that is the same.
prathapml Posted September 22, 2004 Posted September 22, 2004 FullUnattended is better.If user-name and org-name is all you want to be asked for, then just don't use those lines (commenting them out), and make it full-unattended:[UserData]; FullName=""; OrgName=""It will stop and ask you when there's anything (like this) missing.
Anderz Posted September 22, 2004 Author Posted September 22, 2004 @prathapmlDoesn't DefaultHide do the same thing? In FullUnattended all the screens are shown, right? In DefaultHide everything is hidden, except when something is commented out like you describe...I think defaulthide makes the installation extremely smooth....
oioldman Posted September 22, 2004 Posted September 22, 2004 FullUnattended doesn't show any screens either in same way DefaultHide doesn't show them.
Stinger12348 Posted September 22, 2004 Posted September 22, 2004 I would think in this case DefaultHide would be better, cause you probably won't get an error type of message when you blank out a line, but not positive, going to test it now.
TheDr!ll Posted September 22, 2004 Posted September 22, 2004 UnattendMode=DefaultHideorUnattendMode=FullUnattendedWhat is the best. I have noticed that most users use FullUnattended. I use DefaultHide and doesn't have see all those stupid screens (like the "enter product id" screen for instance).Is fullunattended recommended or better in any way? Hi there, I use full unattended install with my username and org..but use this vbs script to change the names of the users and org changeownerorg.vbs
prathapml Posted September 22, 2004 Posted September 22, 2004 Yes, using a VBS to change your user details after install is not a bad idea either. You can place the VBS in the startup folder, so that it will necessarily run.'Change Registered Owner/Organization'Change Computer Name'Made for Windows XPOption ExplicitSet ws = WScript.CreateObject("WScript.Shell")Dim ws, t, p1, p2, p3, p4, p5, n, g, j, h, f, k, cn, cg, cjDim itemtypep1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\"p2 = "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ComputerName\ComputerName\"p3 = "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters\"p4 = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName\"p5 = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\"n = ws.RegRead(p1 & "RegisteredOwner")g = ws.RegRead(p1 & "RegisteredOrganization")j = ws.RegRead(p2 & "ComputerName")h = ws.RegRead(p3 & "NV Hostname")f = ws.RegRead(p4 & "ComputerName")k = ws.RegRead(p5 & "NV Hostname")t = "Identifications Changer Utility"cn = InputBox("Type new Owner name and click OK", t, n)If cn <> "" Thenws.RegWrite p1 & "RegisteredOwner", cnEnd Ifcg = InputBox("Type new Organization name and click OK.", t, g)If cg <> "" Thenws.RegWrite p1 & "RegisteredOrganization", cgEnd Ifcj = InputBox("To change your workgroup, carry out these steps in the right order: Control Panel >> System Properties >> Computer Name >> Change (bottom button) >> Member of - Workgroup To change only Computer name (for LAN), which will take effect after a re-start; type the new name below and click OK.", t, j)If cj <> "" Thenws.RegWrite p2 & "ComputerName", cjws.RegWrite p3 & "NV Hostname", cjws.RegWrite p4 & "ComputerName", cjws.RegWrite p5 & "NV Hostname", cjEnd IfCopy/Paste the code above into notepad, and save as "change.VBS". The above will allow you to change Registered user, organization, and computer-name, all in 3 automatic steps!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now