Jump to content

gareththegod

Member
  • Posts

    113
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by gareththegod

  1. I have resolved my problem with the drives not formatting. I had <Extend>true</Extend> when I was setting the size causing it to not work. See below the fixed code: <DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Extend>false</Extend> <Order>1</Order> <Type>Primary</Type> <Size>100</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>System</Label> <Order>1</Order> <PartitionID>1</PartitionID> <TypeID>0x27</TypeID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>OS</Label> <Letter>C</Letter> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> </DiskConfiguration> Does any one know how to remove these screens??
  2. Hi all. I've been trying to get an unattended.xml to wipe all of the partition information on disk 0. Then create 2 partitions a 100MB System (boot files) (Label System) and the rest of the drive as C (label OS). I have created a drive that works formatting with one partition but I can't make it work. Another small problem is that it keeps asking me to pick the language at first start. I would like this to be English (United Kingdom). I'm using an all in one disk so it prompts for the OS version as well. Is it possible to remove this sometimes. Find attached my file that I'm having problems with. Gareth Unattend with 2 partitions.xml
  3. Steven4554 Thanks for the information. I thought the 976002 updated wouldn't be included. Gareth
  4. Steven4554 I was wondering where you get the download links from. I have noticed that you have not included a few updates and I wanted to add them to the download list. These are kb976002 (this is the EU update only), the 4 updates for Virtual PC and xp mode KB958559, KB977206, KB977632 and WindowsXPMode_en-us, and the Microsoft .NET Framework 4 Client Profile for Windows 7 (KB982670). Gareth
  5. I have tried to make a batch file that searches an extracted help file webpage rename it to a text. Then do a find and replace the links in the string. CMD file is called 2 in the attached zip file. @echo off Setlocal set NAME=ntcmds set FOLDER=cmds echo Deleting old folder if exists. IF EXIST %NAME% RD /S /Q %NAME% Echo Decompiling %NAME% Help file hh.exe -decompile .\%NAME%\ %WINDIR%\Help\%NAME%.chm Echo Moving all other files to %FOLDER% md %NAME%\%FOLDER% cd %NAME% move *.* %FOLDER% Move .\%FOLDER%\%NAME%.htm .\%NAME%.htm ren %NAME%.htm %NAME%.txt find "MS-ITS:%NAME%.chm::/" %NAME%.txt /c The last line of the code is what I want to find and replace. I Then removed it and added see below. I wanted to change the links in the webpage to see the wepages in the folder below it. for /f %%L in (%NAME%.txt) DO ( if "%%L"=="MS-ITS:%NAME%.chm::/" ( echo %FOLDER%\>>.\temp.TMP ) ELSE ( echo %%L>>.\temp.TMP ) ) copy /Y temp.TMP %NAME%.txt I used the code above to changed the find and replace to be what I want to replace etc. find = MS-ITS:%NAME%.chm::/ Replace with = %FOLDER%\ or cmds\ but prefer to use the varible But it doesn't work all that is in the temp file is the first few charaters from each line. I don't know much about the for command and would like help in understanding it.
  6. How do you make this Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments] "SaveZoneInformation"=dword:00000001 to this work. I know what is wrong but I can't fix it. How to you make a dword add to the registry as I can't find out anything about it. I think that its the bit after "SaveZoneInformation", All of my other reg settings are standard strings. test.inf [Version] signature="$CHICAGO$" [DefaultInstall] AddReg = Securitywarning, Add.Uninstall [DefaultUninstall] DelReg = Del.Registry [Securitywarning] HKCU,"%Current%\Policies\Attachments","SaveZoneInformation",0x00010001,01,00,00,00 [Add.Uninstall] HKLM,%Uninstall%,DisplayName,,"%AppDesc%" HKLM,%Uninstall%,UninstallString,,"rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132 %01%\%thisfile%" [Del.Registry] HKCU,"%Current%\Policies\Attachments","SaveZoneInformation",0x00010001,02,00,00,00 HKLM,"%Uninstall%" [Strings] ; Any variables you use need to be defined under [strings]. Current = "Software\Microsoft\Windows\CurrentVersion" RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx" Uninstall = "Software\Microsoft\Windows\CurrentVersion\Uninstall\%thisfile%" thisfile = "test.inf" AppDesc = " Disables Security Warning Box In SP2" [INFO] ; key below to run any thing in the runonceex without needing to restart ; rundll32.exe iernonce.dll,RunOnceExProcess ; The command will run the section called [XXXXX] in the FILENAME.INF file ; 128 tells setup to NOT restart if the inf needs to restart the pc ; rundll32 setupapi,InstallHinfSection XXXXX 128 .\FILENAME.INF
  7. sorry i mean something like this [version] signature="$CHICAGO$" ; Bulid=2600; <-- This is what I mean. Can this be used? ; Minorversion=2180; <-- This is what I mean. Can this be used? [DefaultInstall] AddReg = File, Add.Uninstall The two things that are commented out in the [version] I think that ive seen this in an inf file but I can't remember if this is correct or where I found it. Would gosh be able to help??
  8. I am trying to make an inf file that will only work on windows xp sp2 RTM build (2180) I know that its something that has to go under the version sections but I can't find out anything about it. [version] signature="$CHICAGO$" [DefaultInstall] AddReg = File, Add.Uninstall CopyFiles = Gotoinf [DefaultUninstall] DelReg = Del.Registry DelFiles = Gotoinf [File] ; changes .reg files to open not merge. HKCR,"%Reg%\shell",,,"edit" ; changes .cmd files to edit not open/run. HKCR,"%Cmd%\shell",,,"edit" ; changes .bat files to edit not open/run. HKCR,"%Bat%\shell",,,"edit" [Add.Uninstall] HKLM,%Uninstall%,DisplayName,,"%AppDesc%" HKLM,%Uninstall%,UninstallString,,"rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132 %17%\%thisfile%" [Del.Registry] ; changes .reg files to merge not open. HKCR,"%Reg%\shell",,,"" ; changes .cmd files to open/run not edit. HKCR,"%Cmd%\shell",,,"" ; changes .bat files to open/run not edit. HKCR,"%Bat%\shell",,,"" HKLM,"%Uninstall%" [DestinationDirs] Gotoinf = 17;windows\inf [Gotoinf] %thisfile% [STRINGS] Reg = regfile Cmd = cmdfile Bat = batfile Current = "Software\Microsoft\Windows\CurrentVersion" Explorer = "Software\Microsoft\Windows\CurrentVersion\Explorer" Uninstall = "Software\Microsoft\Windows\CurrentVersion\Uninstall\%thisfile%" thisfile = "change.inf" AppDesc = "Change File Associations reg, bat, cmd" I want to try a file so that it will only apply registry settings or install applications like the support tools. i think that it might be build= 2180 to go under version but i could be wrong.
  9. I use the runonceex to install updates to new pcs we get into work. I was just wondering if its possible to sliently install of the following with only restarting after the last update: 1. XP Network SP2 install. 2. NET Framework v1.1. 3. Microsoft Journal Viewer. 4. Qfecheck. 5. Open command prompt here powertoy. 6. 831240 HighMAT Support in CD Writing update. 7. qfecheck after restart settings (runonceex import to check that hotfixes have installed ok). here is my all.inf [version] signature="$Windows NT$" [DefaultInstall] ; Anything added here will get installed if choosing RIGHT CLICK -> INSTALL. AddReg = XPSP2, Restart [SP2+All.inf] AddReg = XPSP2, Apps, Critical, Recommended, Restart [All.inf] AddReg = Apps, Critical, Recommended, Restart [Apps.inf] AddReg = Apps, Restart [Critical.inf] AddReg = Critical, Restart [Recommended.inf] AddReg = Recommended, Restart [XPSP2] HKLM,"%RunOnceEx%\",Title,0,"Installing windows XP SP2." HKLM,"%RunOnceEx%\001",,,".windows XP SP2" HKLM,"%RunOnceEx%\001",1,,"%01%\XPSP2.exe /passive /Z /O" [Apps] HKLM,"%RunOnceEx%\",Title,0,"Installing Apps." HKLM,"%RunOnceEx%\apps001",,,".NET Framework v1.1" HKLM,"%RunOnceEx%\apps001",1,,"%01%\Apps\dotnetfx.exe" HKLM,"%RunOnceEx%\apps002",,,"Microsoft Journal Viewer" HKLM,"%RunOnceEx%\apps002",1,,"%01%\Apps\Journal.msi /QB HKLM,"%RunOnceEx%\apps003",,,"282784 Qfecheck.exe Verifies Hotfixes" HKLM,"%RunOnceEx%\apps003",1,,"%01%\Apps\Q282784.exe /Z /Q" HKLM,"%RunOnceEx%\apps004",,,"Open command prompt here powertoy" HKLM,"%RunOnceEx%\apps004",1,,"%01%\Apps\CmdHerePowertoySetup.exe /S /v/qn" HKLM,"%RunOnceEx%\apps005",,,"831240 HighMAT Support in CD Writing..." HKLM,"%RunOnceEx%\apps005",1,,"%01%\Apps\HMTCDWizard.exe" HKLM,"%RunOnceEx%\apps006",,,"qfecheck after restart settings" HKLM,"%RunOnceEx%\apps006",1,,"rundll32 setupapi,InstallHinfSection DefaultInstall 128 %01%\Apps\check.inf" [Critical] ; type 1 ; HKLM,"%RunOnceEx%\",Title,0,"Installing Critical Updates." ; HKLM,"%RunOnceEx%\critical001",,,"NAME GOES HERE" ; HKLM,"%RunOnceEx%\critical001",1,,"%01%\Critical\UPDATE.EXE /Z /O /U /Q" ; type 2 [Recommended] ; HKLM,"%RunOnceEx%\",Title,0,"Installing Recommended Updates." ; HKLM,"%RunOnceEx%\reco001",,,"NAME GOES HERE" ; HKLM,"%RunOnceEx%\reco001",1,,"%01%\Recommended\PROGRAM.EXE /Z /O /U /Q" [Restart] HKLM,"%RunOnceEx%\ZRestart001",,,"Restarting after install" HKLM,"%RunOnceEx%\ZRestart001",1,,"shutdown -r -t 99 -f" [Strings] ; Any variables you use need to be defined under [strings]. RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx" [INFO] ; key below to run any thing in the runonceex without needing to restart ; rundll32.exe iernonce.dll,RunOnceExProcess ; The command will run the section called [XXXXX] in the FILENAME.INF file ; 128 tells setup to NOT restart if the inf needs to restart the pc ; rundll32 setupapi,InstallHinfSection XXXXX 128 .\FILENAME.INF It will be called from run.cmd @ ECHO OFF ECHO Running XPSP2 and all updates not included (SP2+All.inf) ECHO And Restarting After 99 Seconds. rundll32 setupapi,InstallHinfSection SP2+All.inf 128 .\hotfixes\All.inf rundll32.exe iernonce.dll,RunOnceExProcess Exit The main thing that I don't know is would it work as sp2 makes its own mini setup. Does anyone know how too disable this mini setup after the restart I want it to use the firewall then I will disable it later. If I do need to change the setttings is there a way to make a digital signature for the Netfw.inf and repack the network install to use this. I know that this is technical. I can't test at mo as I don't know how or if its possible to disable the mini setup or make the digital signature. check.inf code if needed. [version] signature="$Windows NT$"; windows NT only [DefaultInstall] ; Anything added here will get installed if choosing RIGHT CLICK -> INSTALL. AddReg = Apps [Apps] HKLM,"%RunOnceEx%\zcheck001",,,"QFEcheck" HKLM,"%RunOnceEx%\zcheck001",1,,"qfecheck.exe /l:%30%\ /q" [Strings] ; Any variables you use need to be defined under [strings]. RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx" [INFO] ; key below to run any thing in the runonceex without needing to restart ; rundll32.exe iernonce.dll,RunOnceExProcess ; The command will run the section called [XXXXX] in the FILENAME.INF file ; 128 tells setup to NOT restart if the inf needs to restart the pc ; rundll32 setupapi,InstallHinfSection XXXXX 128 .\FILENAME.INF
  10. I haven't seen this posted anywhere on any of my usuall website that I check (bink.nu & msfn.org) Here is a link to download XP SP2 2179 from Versiontracker.com See link for details and direct download link. Main site link I hope you all enjoy this bit of info its 272.5MB word of warning the website is very slow at downloading. Ive got a 1mb ADSL line and is doing a very slow 6.2kbps (about 13 hours)
  11. Here is another update from another post. RTM = 4th August 2004 MSDN and M$ downloads - 5th August 2004 Found at OSNN.Net I cannot find other sites that confirm or deny this so don't quote me on the RTW. but would be nice if it was out then.
  12. would it be released as the monthly security updates/hotfixes next week. I read on the info for the lastest Cumulative for IE that some time this week you will get an upto to Windows update version 5 if you have automatic download set. Taken from the FAQ section here.
  13. I have just made my first multiboot cd and im getting one small problem with my cdshell.ini Here is my cdshell.ini boot: cls print "\n" print "Press Enter to boot from CD... \n" getkey 5 boot 0x80 if $lastKey == key[enter]; then goto time # When no key found... goto boot # Function to display time of day time: set hour = $timeHour set ampm = "am" if $timeHour > 12; then set hour = $timeHour - 12 if $timeHour > 12; then set ampm = "pm" set time = "$hour:$timeMinute$ampm" # Function to display date date: set month = "n/a" if $dateMonth == 1; then set month = "Jan." if $dateMonth == 2; then set month = "Feb." if $dateMonth == 3; then set month = "Mar." if $dateMonth == 4; then set month = "Apr." if $dateMonth == 5; then set month = "May." if $dateMonth == 6; then set month = "Jun." if $dateMonth == 7; then set month = "Jul." if $dateMonth == 8; then set month = "Aug." if $dateMonth == 9; then set month = "Sep." if $dateMonth == 10; then set month = "Oct." if $dateMonth == 11; then set month = "Nov." if $dateMonth == 12; then set month = "Dec." set date = "$month$dateDay,$dateYear" # Printing the Interface menu: cls print c "\n\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ<\c0B$time $date\cXX>ƒƒ \n\n" print c "\cXXBartPE and Windows XP PRO SP1.\n\n" print l "\cXXPress \c0BF1 \cXXfor Help" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n\n" print "1) Windows XP Professional SP1 Corporate \n" print "2) BartPE \n" print "3) BartPE /inram \n" print "Q) Quit to Command Prompt \n" print "R) Reboot \n" print "ESC) Boot 1st Harddisk \n" print c "\n" MainKey: getkey 20 boot 0x80 if $lastKey == key[1]; then goto XP_Pro if $lastKey == key[2]; then chain /BPE1.DAT if $lastKey == key[3]; then chain /BPE2.DAT if $lastKey == key[q]; then end if $lastKey == key[r]; then reboot if $lastKey == key[F1]; then goto Help if $lastKey == key[esc]; then boot 0x80 XP_Pro: cls print r "\n\cXXPress \c0BF1 \cXXfor Help \n" print c "\n\cXXMicrosoft Windows XP Professional SP1 Corporate \n" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "1) Regular \n" print "2) Unattended \n" print c "\n\n" print "Press any key to return to main menu... \n" XP_Pro_Key: if $lastKey == key[1]; then chain /PRO1.DAT if $lastKey == key[2]; then chain /PRO2.DAT if $lastKey == key[F1]; then goto Help goto menu Help: cls print c "\n\cXXMulti-Boot DVD Help \n" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "\n" print "Hit the key of your choice in the main menu -> \n" print "\n" print "\n" print "Install Types \n" print "ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "Regular - Install will prompt you for all information during setup. \n" print "Unattended - Install with no user prompts. \n" print "\n" print "\n" print "Press any key to return to main menu... \n" getkey goto menu end When I press 1 (install xp pro) after the cd boots. It should go to a sub menu like in the multiboot guide so that i can choose to install or go unattended. It always goes straight to install XP Pro. it shows the list but carrys on and starts installing xp. so i can't choose to do an unattended install. I think that there is something wrong with XP_Pro bit by it not say go to XP_Pro_Key. The guide doesn't have anything in it. The BartPE stuff work lovely. Edit: I think tha if I add the following just under he XP_Pro_Key bit getkey 20 goto menu can't check this as using a mac
  14. I have just made my first multiboot cd and im getting one small problem with my cdshell.ini Here is my cdshell.ini boot: cls print "\n" print "Press Enter to boot from CD... \n" getkey 5 boot 0x80 if $lastKey == key[enter]; then goto time # When no key found... goto boot # Function to display time of day time: set hour = $timeHour set ampm = "am" if $timeHour > 12; then set hour = $timeHour - 12 if $timeHour > 12; then set ampm = "pm" set time = "$hour:$timeMinute$ampm" # Function to display date date: set month = "n/a" if $dateMonth == 1; then set month = "Jan." if $dateMonth == 2; then set month = "Feb." if $dateMonth == 3; then set month = "Mar." if $dateMonth == 4; then set month = "Apr." if $dateMonth == 5; then set month = "May." if $dateMonth == 6; then set month = "Jun." if $dateMonth == 7; then set month = "Jul." if $dateMonth == 8; then set month = "Aug." if $dateMonth == 9; then set month = "Sep." if $dateMonth == 10; then set month = "Oct." if $dateMonth == 11; then set month = "Nov." if $dateMonth == 12; then set month = "Dec." set date = "$month$dateDay,$dateYear" # Printing the Interface menu: cls print c "\n\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ<\c0B$time $date\cXX>ƒƒ \n\n" print c "\cXXBartPE and Windows XP PRO SP1.\n\n" print l "\cXXPress \c0BF1 \cXXfor Help" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n\n" print "1) Windows XP Professional SP1 Corporate \n" print "2) BartPE \n" print "3) BartPE /inram \n" print "Q) Quit to Command Prompt \n" print "R) Reboot \n" print "ESC) Boot 1st Harddisk \n" print c "\n" MainKey: getkey 20 boot 0x80 if $lastKey == key[1]; then goto XP_Pro if $lastKey == key[2]; then chain /BPE1.DAT if $lastKey == key[3]; then chain /BPE2.DAT if $lastKey == key[q]; then end if $lastKey == key[r]; then reboot if $lastKey == key[F1]; then goto Help if $lastKey == key[esc]; then boot 0x80 XP_Pro: cls print r "\n\cXXPress \c0BF1 \cXXfor Help \n" print c "\n\cXXMicrosoft Windows XP Professional SP1 Corporate \n" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "1) Regular \n" print "2) Unattended \n" print c "\n\n" print "Press any key to return to main menu... \n" XP_Pro_Key: if $lastKey == key[1]; then chain /PRO1.DAT if $lastKey == key[2]; then chain /PRO2.DAT if $lastKey == key[F1]; then goto Help goto menu Help: cls print c "\n\cXXMulti-Boot DVD Help \n" print c "\cXXƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "\n" print "Hit the key of your choice in the main menu -> \n" print "\n" print "\n" print "Install Types \n" print "ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ \n" print "Regular - Install will prompt you for all information during setup. \n" print "Unattended - Install with no user prompts. \n" print "\n" print "\n" print "Press any key to return to main menu... \n" getkey goto menu end When I press 1 (install xp pro) after the cd boots. It should go to a sub menu like in the multiboot guide so that i can choose to install or go unattended. It always goes straight to install XP Pro. it shows the list but carrys on and starts installing xp. so i can't choose to do an unattended install. I think that there is something wrong with XP_Pro bit by it not say go to XP_Pro_Key. The guide doesn't have anything in it. The BartPE stuff work lovely. Edit: I think tha if I add the following just under he XP_Pro_Key bit getkey 20 goto menu can't check this as using a mac
  15. Ive acrobat pro mac or pc versions. in the file menu go to make new pdf -> from webpage then put link in. if you want all the site to download click get entire site. this will try to download all of the zip files as well but just ignore the message. I changed the bookmarks to how i wanted it and added the end bit saying that i made it with an approved commenting stamp.
  16. Edit Removed as site is being updated daily. I can't update pdf daily.
  17. the updates page its a bit old. It doesn't include the updates that is listed on the introduction page.
  18. nLite has also made it on Bink.nu site front page.
  19. nLite image file doesn't seem to use compression when making the iso file. When I make an image file for office 2003 its about 1.3 GB but when I run this following code it compresses the iso so that it will fit on a 650mb cd without having to over burn it. cdimage.exe -lOFFICE2003 -t07/07/2003,12:00:00 -h -n -m -o \ C:\office 2003.isoI think that its the -o switch that compresses/optimises the image. is it possible to change ths in the program? if I try to change it doesn't compress it but if i run it from the cmd it makes it about 3% smaller. just a thought.
  20. you can boot from a usb cd/dvd or firewire drive. I will give you a clue. microsoft xp bootable floppies put the drivers on the pc for that. then just run the machine install cd:\i386\winnt.exe unattend.txt file location. I can't tell you what the accual thing is because im using a mac at the moment. see the unattended.bat file when you use the setupmanager from the deploy.cab that is what you need to run. the only downside of this is you will have to put the floppies in each pc then run the command. you might be able to make a bootable cd with the floppy images on it + batch file to the usb drive letter. but I don't know how you would add the 7 disks 2 1 cd. could you use a custom windows 98se dos boot cd with drivers for usb support then burn that 2 cd and run them there?
  21. used version 4 last nite. got cd down to 295mb @nuhi I have a request. I was thinking about making my first AIO CD using nLite to reduce the size of the cd. But could this be added to the features of nLite to chose 2 or 3 folders of reduced xp and or add BartPE or WinPE then make 1 bootable cd that will let you choose to start ether on the install using something like Gosh's AIO part 2 so that we can change or put a custom diskemu.cmd in the folder. (like we do to the winnt.sif) Guessing this will be a few weeks work. but I will be happy to test it out. I would go for on my cd so that I can use it at work: 1) bartpe 2) XP PRO SP1 3) XP PRO SP1 unattended. I can't say that these would all fit on because it depends on what is removed.
  22. @nuhi well worth a try. Ive got a slipstreamed xpsp2rc1 at mo but didn't pay much attention to what it did replacing the other files.
  23. @nuhi that looks a very good program. I haven't tested it yet but i have a request (if it can be done) after removing programs like media player 8, whatever version of windows messenger, windows movie maker. Could it be possible to slip line/combine the newest versions from ms eg wmp9, win messenger 5, wmm 2 plus all of the other updates like MDAC 2.8 into the new win xp install. As we know MS has already put back SP2 until july (or later) as this will save alot of time so that we don't have to install them after through runonceex or guirunonce. etc. here is the file that I insall of of my apps and hotfixes when they are needed (all.inf is quit long). ;Made by Gareththegod to save time installing new pcs at work;also comes in handly for new installs. Updated version includes ;updates from 11/5/04 [version]signature="$Windows NT$" [DefaultInstall]; Anything added here will get installed if choosing RIGHT CLICK -> INSTALL.AddReg = Apps, Critical, Java, Recommended, Restart [Apps.inf]AddReg = Apps, Restart [Critical.inf]AddReg = Critical, Restart [Recommended.inf]AddReg = Recommended, Restart [Allnojava.inf]AddReg = Apps, Critical, Recommended, Restart [Apps]HKLM,"%RunOnceEx%\",Title,0,"Installing Apps."HKLM,"%RunOnceEx%\apps001",,,".NET Framework v1.1"HKLM,"%RunOnceEx%\apps001",1,,"%01%\Apps\dotnetfx.exe"HKLM,"%RunOnceEx%\apps002",,,"Microsoft Journal Viewer"HKLM,"%RunOnceEx%\apps002",1,,"%01%\Apps\Journal.msi /QBHKLM,"%RunOnceEx%\apps003",,,"Microsoft Directx 9.0b"HKLM,"%RunOnceEx%\apps003",1,,"%01%\Apps\DX9NTopk.exe"HKLM,"%RunOnceEx%\apps004",,,"282784 Qfecheck.exe Verifies Hotfixes"HKLM,"%RunOnceEx%\apps004",1,,"%01%\Apps\Q282784.exe /Z /Q"HKLM,"%RunOnceEx%\apps005",,,"Open command prompt here powertoy"HKLM,"%RunOnceEx%\apps005",1,,"%01%\Apps\CmdHerePowertoySetup.exe /S /v/qn"HKLM,"%RunOnceEx%\apps006",,,"Windows Messenger 4.7"HKLM,"%RunOnceEx%\apps006",1,,"%01%\Apps\MMSSETUP.exe /Q:A /R:N"HKLM,"%RunOnceEx%\apps007",,,"Movie Maker v2, Windows Media Player 9"HKLM,"%RunOnceEx%\apps007",1,,"%01%\Apps\WMP9_MM2_ENU.exe"HKLM,"%RunOnceEx%\apps008",,,"qfecheck after restart settings"HKLM,"%RunOnceEx%\apps008",1,,"rundll32 setupapi,InstallHinfSection DefaultInstall 128 %01%\Apps\check.inf" [Critical]; type 1HKLM,"%RunOnceEx%\",Title,0,"Installing Critical Updates."HKLM,"%RunOnceEx%\critical001",,,"823182 Vulnerability in Authentic.."HKLM,"%RunOnceEx%\critical001",1,,"%01%\Critical\Q823182.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical002",,,"824105 Flaw in NetBIOS"HKLM,"%RunOnceEx%\critical002",1,,"%01%\Critical\Q824105.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical003",,,"824141 Buffer Overrun in the ListBox"HKLM,"%RunOnceEx%\critical003",1,,"%01%\Critical\Q824141.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical004",,,"825119 Buffer Overrun in Windows Help"HKLM,"%RunOnceEx%\critical004",1,,"%01%\Critical\Q825119.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical005",,,"826939 Windows XP Update Rollup 1"HKLM,"%RunOnceEx%\critical005",1,,"%01%\Critical\Q826939.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical006",,,"828026 WMP URL Script"HKLM,"%RunOnceEx%\critical006",1,,"%01%\Critical\Q828026.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical007",,,"828035 Buffer Overrun in Messenger..."HKLM,"%RunOnceEx%\critical007",1,,"%01%\Critical\Q828035.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical008",,,"828741 Cumulative Update RPC/DCOM"HKLM,"%RunOnceEx%\critical008",1,,"%01%\Critical\Q828741.EXE /Z /O /U /Q"HKLM,"%RunOnceEx%\critical009",,,"835732 Security Update for Windows"HKLM,"%RunOnceEx%\critical009",1,,"%01%\Critical\Q835732.EXE /Z /O /U /Q"HKLM,"%RunOnceEx%\critical010",,,"837001 Vulnerability in Jet DB Engine"HKLM,"%RunOnceEx%\critical010",1,,"%01%\Critical\Q837001.EXE /Z /O /U /Q"HKLM,"%RunOnceEx%\critical011",,,"810217 FrontPage 2000 Server Exten"HKLM,"%RunOnceEx%\critical011",1,,"%01%\Critical\Q810217.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\critical012",,,"840374 Help & Support Center fix"HKLM,"%RunOnceEx%\critical012",1,,"%01%\Critical\Q840374.exe /Z /O /U /Q" ; type 2HKLM,"%RunOnceEx%\critical013",,,"814078 JScript 5.6 Security Patch "HKLM,"%RunOnceEx%\critical013",1,,"%01%\Critical\js56nen.exe /Q:A /R:N"; for 014 see [Java].HKLM,"%RunOnceEx%\critical015",,,"832894 Feb 2004, Cumulative Patch, IE6"HKLM,"%RunOnceEx%\critical015",1,,"%01%\Critical\Q832894.exe /Q:A /R:N"HKLM,"%RunOnceEx%\critical016",,,"837009 Apr 2004, Cumulative Patch, OE6"HKLM,"%RunOnceEx%\critical016",1,,"%01%\Critical\Q837009.exe /Q:A /R:N"HKLM,"%RunOnceEx%\critical017",,,"831167 Wininet retries POST"HKLM,"%RunOnceEx%\critical017",1,,"%01%\Critical\Q831167.exe /Q:A /R:N"HKLM,"%RunOnceEx%\critical018",,,"819639 A Flaw in Windows Media Player"HKLM,"%RunOnceEx%\critical018",1,,"%01%\Critical\Q819639.exe /Q:A /R:N"HKLM,"%RunOnceEx%\critical019",,,"832483 Buffer Overrun in MDAC Function"HKLM,"%RunOnceEx%\critical019",1,,"%01%\Critical\Q832483.exe" [Java]HKLM,"%RunOnceEx%\critical014",,,"816093 Microsoft JavaVM - Build 3810"HKLM,"%RunOnceEx%\critical014",1,,"%01%\Critical\msjavwu.exe /Q:A /R:N" [Recommended]HKLM,"%RunOnceEx%\",Title,0,"Installing Recommended Updates."HKLM,"%RunOnceEx%\reco001",,,"826942 Wireless Update Rollup"HKLM,"%RunOnceEx%\reco001",1,,"%01%\Recommended\Q826942.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco002",,,"831240 HighMAT Support in CD Writing..."HKLM,"%RunOnceEx%\reco002",1,,"%01%\Recommended\HMTCDWizard.exe"HKLM,"%RunOnceEx%\reco003",,,"820291 New "Set Program Access..."HKLM,"%RunOnceEx%\reco003",1,,"%01%\Recommended\Q820291.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco004",,,"822603 USB 1_1 and 2_0 Update"HKLM,"%RunOnceEx%\reco004",1,,"%01%\Recommended\Q822603.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco005",,,"817778 Advanced Networking Pack"HKLM,"%RunOnceEx%\reco005",1,,"%01%\Recommended\Q817778.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco006",,,"Q322011 You Cannot Preview a Fax in"HKLM,"%RunOnceEx%\reco006",1,,"%01%\Recommended\Q322011.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco007",,,"814995 Program Compatibility Fixes"HKLM,"%RunOnceEx%\reco007",1,,"%01%\Recommended\Q814995 /Z /O /U /Q"HKLM,"%RunOnceEx%\reco008",,,"Q327405 Windows XP Doc Update"HKLM,"%RunOnceEx%\reco008",1,,"%01%\Recommended\hu1002_pro.exe /Q:A /R:N"HKLM,"%RunOnceEx%\reco009",,,"Q327979 Game Stops Responding"HKLM,"%RunOnceEx%\reco009",1,,"%01%\Recommended\Q327979.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco010",,,"Q810243 DirectShow Playback Support"HKLM,"%RunOnceEx%\reco010",1,,"%01%\Recommended\Q810243.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco011",,,"821253 Update Windows Error Report"HKLM,"%RunOnceEx%\reco011",1,,"%01%\Recommended\Q821253.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco012",,,"833998 Shop For Music Online"HKLM,"%RunOnceEx%\reco012",1,,"%01%\Recommended\Q833998.exe /Z /O /U /Q"HKLM,"%RunOnceEx%\reco013",,,"837272 WMP 9 update"HKLM,"%RunOnceEx%\reco013",1,,"%01%\Recommended\Q837272.exe /Z /O /U /Q" [Restart]HKLM,"%RunOnceEx%\ZRestart001",,,"Restarting after install"HKLM,"%RunOnceEx%\ZRestart001",1,,"shutdown -r -t 99 -f" [strings]; Any variables you use need to be defined under [strings].RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx" [iNFO]; key below to run any thing in the runonceex without needing to restart; rundll32.exe iernonce.dll,RunOnceExProcess ; The command will run the section called [XXXXX] in the FILENAME.INF file ; 128 tells setup to NOT restart if the inf needs to restart the pc; rundll32 setupapi,InstallHinfSection XXXXX 128 .\FILENAME.INF
  24. I spent about a week perfecting this and I thought that I should share this. I have made a regtweaks/settings.inf. Some of these have been taken from Gosh's install4.inf on his website. The main being the list view, [delete] and [unreg] [version] signature="$CHICAGO$" [DefaultInstall] AddReg = ListView, other, visual, regtweaks.reg, Folder ;unregisters DLL files. UnregisterDlls = Unreg ;Deletes registry entries DelReg = Delete [ListView] ;This will set folder view to list view by default ;Probably want this run at 13 min mark or earlier HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\Streams","Settings",3,09,00,00,00,04,00,00,00,01,00,00,00,e0,a5,1f,0e,73,35,cf,11,ae,69,08,00,2b,2e,12,62,04,00,00, 00,27,00,00,00,43,00,00,00 [Folder] ;No common tasks HKCU,"%Explorer%\Advanced","Webview",0x00000000,0 HKCU,"%Current%\Policies\Explorer","ClassicShell",0x00010001,1 HKCU,"Software\Microsoft\Internet Explorer\Toolbar\ShellBrowser","ITBarLayout",,"-" [other] ; Turn off fast user switching HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon","AllowMultipleTSSessions",0x00010001,0 [visual] HKCU,"%Explorer%\VisualEffects","VisualFXSetting",0x00010001,3 HKCU,"%Explorer%\VisualEffects\AnimateMinMax","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\ComboBoxAnimation","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\CursorShadow","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\DragFullWindows","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\DropShadow","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\DropShadow","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\FontSmoothing","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\FontSmoothing","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListBoxSmoothScrolling","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewAlphaSelect","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewAlphaSelect","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewShadow","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewShadow","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewWatermark","DefaultApplied",0x00010001,1 HKCU,"%Explorer%\VisualEffects\ListviewWatermark","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\MenuAnimation","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\MenuAnimation","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\SelectionFade","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\SelectionFade","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\TaskbarAnimations","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\TaskbarAnimations","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\TooltipAnimation","DefaultApplied",0x00010001,0 HKCU,"%Explorer%\VisualEffects\TooltipAnimation","DefaultValue",0x00010001,1 HKCU,"%Explorer%\VisualEffects\WebView","DefaultApplied",0x00010001,1 [regtweaks.reg] ;This will add "Services" to the right-click menu of "My Computer" HKCR,"%Shell_Services%","SuppressionPolicy",0x00010001,0x4000003c HKCR,"%Shell_Services%",,0x00020000,Services HKCR,"%Shell_Services%\command",,0x00020000,"%windir%\system32\mmc.exe /s %SystemRoot%\system32\services.msc /s" ;Enable Classic search, full path in title bar and address bar. HKCU,"%Current%\Explorer\CabinetState","FullPath",0x00010001,1 HKCU,"%Current%\Explorer\CabinetState","FullPathAddress",0x00010001,1 HKCU,"%Current%\Explorer\CabinetState","Use Search Asst",,"no" HKCU,"%Current%\Explorer\CabinetState","Settings",1,0c,00,02,00,1b,01,e7,77,60,00,00,00 ;This lets you use the set command in the Recovery Console. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole","SetCommand",0x00010001,1 HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole","SecurityLevel",0x00010001,0 ;Disable Welcome Screen and uses Classic Logon HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon","LogonType",0x00010001,0 ;Change MenuShowDelay (Start Menu load speed) HKCU,"Control Panel\Desktop","MenuShowDelay",,"2" ;Disables Windows Tour bubble popup HKCU,"%Current%\Applets\Tour","RunCount",0x00010001,0 HKLM,"%Current%\Applets\Tour","RunCount",0x00010001,0 [delete] ;Deletes registry entries ;Speed up Network Browsing by removing Network Scheduled Tasks HKLM,"%Explorer%\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}" [Unreg] ;unregisters DLL files. 11,,zipfldr.dll,1 ;disables zip folders [STRINGS] Current = "Software\Microsoft\Windows\CurrentVersion" Explorer = "Software\Microsoft\Windows\CurrentVersion\Explorer" Remove = "Software\Microsoft\Windows\CurrentVersion\Uninstall" RunOnceEx = "Software\Microsoft\Windows\CurrentVersion\RunOnceEx" Shell_Services = "CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services" Visual = "Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" ; Following lines are just here for reference, you can delete them as needed. RENAME = "Software\Microsoft\Windows\CurrentVersion\RenameFiles" RUN = "Software\Microsoft\Windows\CurrentVersion\Run" ; key below to run any thing in the runonceex without needing to restart ; rundll32.exe iernonce.dll,RunOnceExProcess this is what is included in my cmdlines.txt [Commands] ".\i386.cmd" "rundll32 setupapi,InstallHinfSection DefaultInstall 128 .\settings.inf" just save the file as settings.inf in the $OEM$ folder and away you go. Just to note that this might not work I haven't had chance to fix it.
×
×
  • Create New...