Jump to content

KYPUMPER

Member
  • Posts

    19
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by KYPUMPER

  1. Hello,

    I have not posted much, but I have enjoyed all the information about making unattended Windows CD's here.

    I was annoyed at renaming the KBXXXXXX.exe files to update my svpack.inf file

    I wrote a little perl script to auto rename files once you download them. I know most of you

    already probably had a solution to this. I am just starting perl so if you find any better to the solutions or suggestions

    feel free to comment. Hope this may help some one.

    kypumper

    #!C:\PERL -w
    ############################################################################
    #### Written by kypumper feel free to modify or comment ####################
    #### email suggestions to kyumper+msfn@gmail.com ###########################
    ############################################################################
    $i=0,

    #############################################################################
    ### uncomment the chdir function if you want to specify a dir where you hotfix files are located otherwise run this ###
    ### script in the same dir as your hotfix files. ############
    #############################################################################
    #chdir ("New Ones") || die "cannot change dir: ($!)";
    @oldfiles = glob "Windows*.*";


    ##############################################################################
    ### This Loop matches files that match "KB and have digits that follow" ######
    ### then extracts just that part of the filename so the oldfiles array can ##
    ### be renamed with the newfiles array. ######################################
    ##############################################################################
    foreach (@oldfiles) {
    $_ =~ /(KB[\d]+)/;
    $newfiles[$i] = "$1.exe";

    ##### Testing to see if file exists ########
    if (-e $newfiles[$i]) {
    warn "Can't rename $oldfiles[$i] to $newfiles[$i] exists \n"; }


    ##### Renaming File and printing a success indication ###########
    elsif (rename $oldfiles[$i], $newfiles[$i]) {
    print "Renaming $oldfiles[$i] to $newfiles[$i] \n";
    }

    ##### Warning if program cannot rename files ######
    else { warn "rename $oldfiles[$i] to $newfiles[$i] failed: ($!) \n";
    }


    ### Increments thru the arrays ######
    $i++;
    ### End of foreach loop #############
    }


    #### Warns if No Files were parsed ############
    $match=@newfiles;
    if ($match < 1) {
    print"No Files Matched to parse! \n";
    }

  2. I have my hot fixes all installing except the 2 that will not load in svcpack.inf and now for some reason Q828026 is not installing, has anyoe else had this problem. so now when I run Windows update after installation I have 4 to install instead of 2 not a major problem because it is already so much better than before installing the hot fixes. I will post my svc.inf file later tonight see if you can see any typos or anything that might prevent that one from loading. I have them all in order

  3. Hello

    I have been making unnatend cd's with WIN XP Pro using the guides at MSFN, I was waondering do you use the same winnt.sif file for Win 2000. I have been studying for MCP Win 2K it never mentions a winnt.sif file it only mentions the unnatend.txt which is created from the setup manager like XP. A Quick clarification would be greatly appreciated.

  4. I was having the same problem until I used greenmachine method worked fine on my moterboard, but when I tried on another computer that had hpt374 raid controller problem came back I will try to incorporate those drives into my XPCD using Greenmachine method also.

  5. I am getting an invalid error on line 51 at the startup looks like the [GUIRUNONCE]

    can someone help me with the syntax error thanks sorry for being such a noob great site here.

    ;SetupMgrTag[Data]    AutoPartition=0    MsDosInitiated="0"    UnattendedInstall="Yes"
    [unattended]UnattendMode=FullUnattendedOemSkipEula=YesOemPreinstall=YesUnattendSwitch="yes"TargetPath=\WINDOWSFileSystem=*        DriverSigningPolicy=IgnoreOemPnPDriversPath="Drivers\000_chipset;Drivers\001_network;Drivers\002_raid\hpt3xx;Drivers\003_graphics;Drivers\004_sound;Drivers\005_modem"    
    [GuiUnattended]    AdminPassword=*    EncryptedAdminPassword=NO    OEMSkipRegional=1    TimeZone=35    OemSkipWelcome=1
    [userData]    ProductID=*****-*****-*****-*****-*****    FullName="Default"    OrgName=""    ComputerName=default
    [branding]BrandIEUsingUnattended=Yes
    [url]Home_Page=http://www.google.com
    [identification]    JoinWorkgroup=WORKGROUP
    [Networking]    InstallDefaultComponents=Yes
    [shell]DefaultStartPanelOff = YesDefaultThemesOff = Yes
    [GuiRunOnce]%systemdrive%\install\start.cmd
  6. I am getting an invalid error on line 13 at the startup it worked until I added:

    OemPnPDriversPath="Drivers\000_chipset;Drivers\001_network;Drivers\002_raid\hpt3xx;Drivers\003_graphics;Drivers\004_sound;Drivers\005_modem"

    can someone help me with the syntax error thanks sorry for being such a noob great site here.

    ;SetupMgrTag

    [Data]

    AutoPartition=0

    MsDosInitiated="0"

    UnattendedInstall="Yes"

    [unattended]

    UnattendMode=FullUnattended

    OemSkipEula=Yes

    OemPreinstall=Yes

    UnattendSwitch="yes"

    TargetPath=\WINDOWS

    FileSystem=*

    DriverSigningPolicy=Ignore

    OemPnPDriversPath="Drivers\000_chipset;Drivers\001_network;Drivers\002_raid\hpt3xx;Drivers\003_graphics;Drivers\004_sound;Drivers\005_modem"

    [GuiUnattended]

    AdminPassword=*

    EncryptedAdminPassword=NO

    OEMSkipRegional=1

    TimeZone=35

    OemSkipWelcome=1

    [userData]

    ProductID=*****-*****-*****-*****-*****

    FullName="Default"

    OrgName=""

    ComputerName=default

    [branding]

    BrandIEUsingUnattended=Yes

    Home_Page=http://www.google.com

    [identification]

    JoinWorkgroup=WORKGROUP

    [Networking]

    InstallDefaultComponents=Yes

    [shell]

    DefaultStartPanelOff = Yes

    DefaultThemesOff = Yes

    [GuiRunOnce]

    %systemdrive%\install\start.cmd

×
×
  • Create New...