Jump to content

v3jqv6mhl9bn

Members
  • Posts

    116
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

2,362 profile views

v3jqv6mhl9bn's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Win Toolkit leaves a WinToolkit.txt file in the Windows folder on WIMs, which has the last selected WIM path. This file is wasteful and nothing should be left in the WIM that the user didn't explicitly put there.
  2. I've just put it off and am entering the key manually.
  3. No, but i'm not that worried about it now.
  4. I'm trying to use sysprep XP Pro SP3 to start at OOBE (I plan to image it later) I want to automate just the product key, when it asks for it here (after accepting license) This is my sysprep.inf ;SetupMgrTag [Unattended] InstallFilesPath=C:\sysprep\i386 [GuiUnattended] EncryptedAdminPassword=NO OEMSkipRegional=1 [UserData] ProductKey=11111-11111-11111-11111-11111 FullName="" OrgName="" [SetupMgr] DistFolder=C:\sysprep\i386 DistShare=windist [Identification] JoinWorkgroup=WORKGROUP [Networking] InstallDefaultComponents=Yes I have the entire contents of deploy.cab and this inf in C:\sysprep\ I want to use OOBE, not mini-setup, so I start sysprep by clicking on sysprep, checking don't regen SID's and hit reseal. The problem is that it makes me enter the key, even though it's in sysprep.inf. How do I get the key to be automatically entered?
  5. I have modded Firefox to run completely Aero Glass, but the desktop wallpaper and icons can make some areas of some sites look awful or unviewable. What I want to do is hide the desktop icons and change the wallpaper to all black while firefox has focus, and reverse the change when it loses focus OR terminates. I have a program that when run Hides the icons, and when run again shows them. I also have a Wallpaper changer that can change to any file. This is what I have so far (I know nothing of VBS) HideDesktopFF.vbs (Runs a batch file hidden) Dim a Set a = CreateObject("Wscript.Shell") a.Run "HideDesktopFF.bat",0 This batch file hides the icons and changes the wallpaper, and checks every minute if FF process is running. If it closes it shows icons and fixes wallpaper. This only does it if FF closes. I want it to also change between hidden and shown (with WP switch) every time FF gets/loses focus. HideDesktopFF.bat (Incomplete) goto hide :hide WALLPAPERCHANGER "%USERPROFILE%\Pictures\Black.jpg" HIDEDESKTOPICONS.exe goto checkIfRunning :checkIfRunning tasklist /FI "IMAGENAME eq firefox.exe" 2>NUL | find /I /N "firefox.exe">NUL if "%ERRORLEVEL%"=="1" goto showEnd sleep.exe 60 goto checkIfRunning REM Not used, should be used to switch when focus lost, then check for focus or end of process. :show HIDEDESKTOPICONS.exe WALLPAPERCHANGER "%USERPROFILE%\Pictures\Dark Energy.jpg" :showEnd HIDEDESKTOPICONS.exe WALLPAPERCHANGER "%USERPROFILE%\Pictures\Dark Energy.jpg" exit I know this is a sloppy and CPU wasting way to do this, does anyone have any way to make this work efficiently? I am also adjusting my wallpaper to be less bright to reduce the glare, so this may become unnecessary if I get things looking different.
  6. I reimaged with the key added, then removed the product key from the sysprep.xml, that got it working.
  7. I am using the default key, the one 7 customizer uses matched that link. I changed it to never and added the key to Microsoft-Windows-Shell-Setup but no luck
  8. The thing is that I am not using Windows images to deploy, but Acronis. I sysprep because I was having issues with "Acronis Universal Restore", and sysprepping solved my problem. This is just an annoyance I'm trying to solve.
  9. It is an autounattend.xml basically. I'm not using a working key, I am using the key 7 Customizer adds (which is the key windows uses for 30 day trial). I think first that <WillShowUI>onerror</WillShowUI> to <WillShowUI>never</WillShowUI> might do it but, I think this key is for when Win 7 DVD asks for key, and that I need to add it under Microsoft-Windows-Shell-Setup for OOBE. I am not sure of the format for that though.
  10. Here I have a unattend file I made using 7Customizer (I use it for sysprep). It's purpose is to hide all of OOBE and log into an account I made for myself. The PC's do not have any product keys entered, and I do not want to add any (yet). All of OOBE gets skipped except for a product key entry, which I skip. Is there any way to skip this? I noticed 7Customizer added a key, and I tried adding "Dummy" key of ALL 1's, but no go. This is it, my sysprep.xml. It succeeds in skipping all but the product key entry. <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SystemLocale>en-us</SystemLocale> <UserLocale>en-us</UserLocale> <UILanguage>en-US</UILanguage> <UILanguageFallback>en-us</UILanguageFallback> <InputLocale>0409:00000409</InputLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserData> <ProductKey> <Key>11111-11111-11111-11111-11111</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> <Organization>MyORG</Organization> <FullName></FullName> <AcceptEula>true</AcceptEula> </UserData> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Name></Name> <Group>Administrators</Group> <Password> <PlainText>true</PlainText> <Value></Value> </Password> </LocalAccount> </LocalAccounts> </UserAccounts> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> </component> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> <InputLocale>0409:00000409</InputLocale> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AutoLogon> <Enabled>true</Enabled> <Username></Username> <Password> <PlainText>true</PlainText> <Value></Value> </Password> <LogonCount>9999999</LogonCount> </AutoLogon> <TimeZone>Eastern Standard Time</TimeZone> <ComputerName>PCNAME</ComputerName> </component> </settings> </unattend>
  11. Thanks ricktendo for the updates. I saw on THS that you got the KB975167 via MSDN account. It's a shame MS keeps these updates stashed away. It looks like KB975167 just has a afd.sys update. The KB article says for XP Embedded. I don't know if i'll use this yet.
  12. I noticed you list KB978125 and KB972423. Also, where did you get KB975167? The request thing says no public hotfix available.
  13. Then it will probably end up in OnePiece's update pack. I am making a silent switchless pack with everything in OnePiece's Pack. I don't plan on releassing it, as I just wanted the option to uninstall each hotfix. I also updated jd976's .NET AIO for my own use, though I am having problems with switches on a specific hotfix that is recent for .NET 1.1. The other hotfix I asked for, KB973207, I think was listed by mistake. The KB article says its for XBOX Live, and just says its a server bug.
  14. I'm making a custom addon pack, the fixit I think doesn't patch any files, but the other hotfix I don't know since I cant find it.
×
×
  • Create New...