Jump to content

mls15000

Member
  • Posts

    49
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by mls15000

  1. I put a sleep command in my batch file for 90 seconds while the workstation service starts completely.

    Echo.
    Echo Waiting 90 seconds for the Workstation Service to start...
    Echo.

    Sleep 90

    Echo =======================================
    Echo Joining computer to mydomain Domain, please standby...
    Echo =======================================
    ECHO. >>%systemroot%\setuplog1.log

    netdom join %ComputerName% /domain:mydomain /userd:mydomain\user1 /passwordd:4password111

  2. I cant set it by variable. i have 52 offices worldwide that will use this image. A VB script is used to qwery the ip address to determine the subnet, then from that info each subnet has a 3 letter site code assigned to it. Then the site code is combined with the systems serial # and that is the computer name. We dont want to create different sif files on each server to specify the computer names either. We more than likely wont even use RIS, but its one of the avenues we are exploring.

  3. You can set it in the registry quite easily. In fact there's a recent thread in this forum in which Cluberti outlines the registry keys that control autologon. From your description of what is happening, it sounds as though your installation is not properly joining a domain during setup. Is this intentional or by design?

    I am trying this also, but not joining domain until after. I have scripts that run to rename the PC at first boot to a three letter site code and serial number, then reboot and then join the domain. I can't get it to skip past the welcome screen also. When I do an unattended setup over the network its fine, just fails wheile using RIS.

  4. Why would you launch it for each seperate component? You should cretae a custom transform to install only the components you want and the features you want all at once. You are using the office 2003 restore kit to create the transform file correct?

    I do mine from a batch file at first boot. Here is my syntax:

    start /wait x:\office2003\setuppro.exe TRANSFORMS=Unattended3.MST /qb-

  5. nevermind, i figured it out. I had to read and re read to figure it out. I made another xp deployment, then copied my $oem$ and i386 directory over the default on created. Changed the sif file to match my settings and seems to be working. Just need to figure out the nic drivers for newer systems.

  6. I have a complete unattended network install configured with all my scripts, apps, tweaks etc for my company. Would like to test it with RIS instead of using a normal network install. What would I have to do to this to make it work on the RIS server. I already have a RIS server and have a basic XP load on it, and it works great, just want to move my unattended image over to the RIS server. Thanks in advance.

  7. I just boot into PE and run an unattened install over the network.

    This is the batch file I call up...

    net use z: \\crp16237\windist

    diskpart /s z:\diskpart.txt

    format c: /q /fs:ntfs /v:System /y
    format D: /q /fs:ntfs /v:Data /y

    echo Starting XP install...

    set AnswerFile=\\CRP16237\windist\unattend2.txt
    set SetupFiles=\\CRP16237\windist\I386


    \\CRP16237\windist\I386\winnt32 /makelocalsource /tempdrive:C: /syspart:C: /s:%SetupFiles% /unattend:%AnswerFile%

    DiskPart.txt file..

    select disk 0
    Clean
    create partition primary size 8000
    assign letter C
    active
    select disk 0
    create partition extended
    create partition logical
    assign letter D

  8. When installing with winnt32.exe, the $OEM$ folder must be insde the i386 folder, ie. \i386\$oem$

    Wrong. My $OEM$ is beside my I386, not inside, and it copies fine. I set mine up like a RIS image, but decided not to use RIS. I boot with BartPE and launch a batch file that formats the drive and starts the install.

    Here is a snipit from a batch file that launched the install:

    set AnswerFile=\\CRP16237\windist\unattend.txt
    set SetupFiles=\\CRP16237\windist\I386

    \\CRP16237\windist\I386\winnt32 /makelocalsource /tempdrive:C: /syspart:C: /s:%SetupFiles% /unattend:%AnswerFile%

    And here is a snipit of my unattent.txt

    [Data]
       AutoPartition=1
       MsDosInitiated="0"
       UnattendedInstall="Yes"

    [Unattended]
       UnattendMode=FullUnattended
       OemSkipEula=Yes
       OemPreinstall=Yes
       TargetPath=\WINDOWS
       OemFilesPath=\\crp16237\windist\$oem$
       DriverSigningPolicy = "Ignore"
       NonDriverSigningPolicy = "Ignore"
       DriverSigningPolicy = "Ignore"
       OemPreinstall = "Yes"

  9. what will happen if i got only single drive

    c:\ only

    The install will fail with an error. Can't remember the exact error. I use a batch process with bartpe to run diskpart. Create 2 partitions, c&d, format quick with ntfs then run winnt32.exe.

    I also have a D folder in my $OEM$ folder. In the D folder is a folder called Documets and Settings. During the install process, the Documents and Settings folder get copied to the D drive automatically. I do this to lessen the chance of errors created.

  10. I am trying the same hing. I have a script that adds them during the firts boot process, after ofice istalls,and also tried setting up the icons using the transforms file, but it does not carry over to all users. It only shows for the user ID it is installed under, which is the default after the first startup. Once I join the computer to the domain, the office shortcuts are gone. I will really hate to do this to 2500 machines manually. I know I could add it to my domain logon script, but management wants to eliminate most of our script.

    Here is my vb script to add those shortcuts if you want to use it for your logon script, just add or remove whichever you need:

    Set objShell = WScript.CreateObject("WScript.Shell")
    Set colEnvironmentVariables = objShell.Environment("Volatile")

    strQLFolder = colEnvironmentVariables.Item("APPDATA") & _
    "\Microsoft\Internet Explorer\Quick Launch"

    Set objShortcut = objShell.CreateShortcut(strQLFolder & "\Word.lnk")
    objShortcut.TargetPath = "C:\Program Files\Microsoft Office\OFFICE11\Winword.exe"
    objShortcut.Save

    Set objShortcut = objShell.CreateShortcut(strQLFolder & "\Excel.lnk")
    objShortcut.TargetPath = "C:\Program Files\Microsoft Office\OFFICE11\Excel.exe"
    objShortcut.Save

    Set objShortcut = objShell.CreateShortcut(strQLFolder & "\Powerpoint.lnk")
    objShortcut.TargetPath = "C:\Program Files\Microsoft Office\OFFICE11\POWERPNT.EXE"
    objShortcut.Save

    Set objShortcut = objShell.CreateShortcut(strQLFolder & "\Outlook.lnk")
    objShortcut.TargetPath = "C:\Program Files\Microsoft Office\OFFICE11\OUTLOOK.EXE"
    objShortcut.Save

  11. Found a fix. Add this to your registry tweaks. Just tested it on my image and works great!

    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download]
    "CheckExeSignatures"="no"
    "RunInvalidSignatures"=dword:00000000
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
    "LowRiskFileTypes"=".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov
    ;.mp3;.m3u;.wav;"

  12. I did this to my unattended setup:

    [GuiUnattended]
       ProfilesDir = "D:\Documents and Settings"

    This is in my unattend.txt and moves all of the "my docs, music, pics etc folders to D:\Documentys and Setings.

    You will of course have to have a D drive first, I create this using diskpart.

    You have to make a folder called D under your $oem$ folder, and a "Documents and Settings" folder under the D folder.

    I use this in an enterprise enviroment and works great for reloads.

×
×
  • Create New...