Jump to content

coucou

Member
  • Posts

    880
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

Everything posted by coucou

  1. Probably yes. Regards Wooowww Great Is the first best news for 2011 I've tested allmost all the Win7 utilities in this site with more or less success. 7C is just doing the job coucou
  2. Nobody can help? I reformulate my questions. To install a program during windows installation, we copy that program (for exapmle) to DVD\sources\$OEM$ \$1\Install\ or DVD\sources\$OEM$\$$\Setup\scripts\. Then during Windows7 installation, our program it copied to c:\Install or to c:\Windows\Setup\scripts\.. and called by <FirstLogonCommands> <SynchronousCommand >. My question is, if i do not place my rogram in the DVD\sources\$OEM$\ path, what would be the call command to install it straight on from the DVD? Regards
  3. @myselfidem I tested yr script and here the result English: works French: glue at line 111 (see image) I noticed that the next case is always a same. Therefore you do not need it. $text = "[CLASS:ToolbarWindow32; TEXT:Quick Launch]" In fact yo'll need it if the text is different as in my above script Case $Lang = "fr-FR";French $text = "[CLASS:ToolbarWindow32; TEXT:Lancement rapide]" Case $Lang = "en-US"; English $text = "[CLASS:ToolbarWindow32; TEXT:Quick Launch]" Then $QUICKLAUNCH = ControlGetPos("[CLASS:Shell_TrayWnd]", "", $text) OItherwise if the case is allways thesame, it could be deleted for all languages $text = "[CLASS:ToolbarWindow32; TEXT:Quick Launch]" Then $QUICKLAUNCH = ControlGetPos("[CLASS:Shell_TrayWnd]", "", "[CLASS:ToolbarWindow32; TEXT:Quick Launch]") Now in both case yr script will freeze/glue or the process never close. Because the condition for yr script to works is "to disable the LangBar (Close)". The normal conditions in an Unattended install are taskbar unlocked and LangBar enabled. For those reasons, unless the probem it solved, I'll still use my HERE above script. Regards
  4. Sorry wazer, No much changing. English: The Quick Launch bar is created, doesn't move to the left it looks seraching (see image bellow) , "Show Text" and "Show title" are disapeard, Quick Launch Text (should NOT be displayed when '"Show Text" and "Show title"are disabled) see image bellow, French: freeze in line 75 WinWaitActive($title) NB: What do you mean about "YOu cannot already have attached a quick launch folder when using it" for this test the taskbar was locked, I think the problem came during the unattended installation. As far I remember the the taskbar is unlocked
  5. Tested doesn't works here the result English: The Quick Launch bar is created, doesn't move to the left, the toolbar become more width (2 lines), the tollbar icons i had in left side deleted, "Show Text" and "Show title" not disabled French: freeze in line 75 WinWaitActive($title) Is there a registry to disable "Show Text" and "Show title"? Regards
  6. Hi wazer, I didn't missed adding the quick launch to the left of the screen, it my second project hahaha In fact, I'm looking for the above AND how to disable "Show Text" and "Show title" (see the image bellow) by registry? Regarding the quick launch to the left of the screen adding may you let me know, where in yr script that process start and end ? Regards
  7. Hello, I'm looking for how to install Office 2010 from my Windows7 DVD when the path is DVD:\Office2010 (see image bellow) Do the following Autounattend.xml command is correct? <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>Office 2010</Description> <CommandLine>cmd /C start /wait %CDROM%\Office2010\office14.exe</CommandLine> </SynchronousCommand> </FirstLogonCommands> Regards
  8. TNX again myselfidem, BTW, this may interseting you CDVD-Switcher Windows 7 as well as the newest programs are GB sized, more than one DVD needed for an unattended installation. CDVD-Switcher enbable ejct/insert DVD during windows installation. Quick Launch Enable Automatic Tool is MultiLangual (English/French) Quick Launch toolbar enabler. Regards
  9. Hi all, Finally by a using a part of wazer rewriting the script, I got success enabling the Quick Launch toolbar in MultiLangual Windows English and French. Here my final Quick Launch tested working 1) You may copy all yr Quick Launch shortcuts to Windows7 DVD for Windows English to %CDROM%\sources\$OEM$\$Docs\Default User\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch for Windows French to %CDROM%\sources\$OEM$\$Docs\Default User\AppData\Roaming\Microsoft\Internet Explorer\Lancement rapide Therefore during the Windows 7 installation they will be copied to C:\Users\(UserName)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\ or Lancement rapide 2) here the script ;------------------------------------------------------------------ ; AutoIt Version: 3.3.0.0 ; Author: Andrew Calcutt, wazer ; Last Edited: 09/13/2009 ; Script Function: Adds Quick Launch Toolbar ; ;Modified by coucou 18/01/2011 ;------------------------------------------------------------------ Opt('TrayIconDebug', 1) sleep(10) ;Adding Reg Entries. RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSizeMove", "REG_DWORD", "1") RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSmallIcons", "REG_DWORD", "1") RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarGlomLevel", "REG_DWORD", "2") ;$Lang = RegRead("HKEY_CURRENT_USER\Control Panel\International", "sLanguage") $Lang = RegRead("HKEY_CURRENT_USER\Control Panel\Desktop", "PreferredUILanguages") Select ;Case $Lang = "FRA";French Case $Lang = "fr-FR";French $title = "Nouvelle barre doutils - Choisir un dossier" $path = "%AppData%\Microsoft\Internet Explorer\Lancement rapide\" $text = "[CLASS:ToolbarWindow32; TEXT:Lancement rapide]" ;Case $Lang = "ENU"; English Case $Lang = "en-US"; English $title = "New Toolbar - Choose a folder" $path = "%AppData%\Microsoft\Internet Explorer\Quick Launch\" $text = "[CLASS:ToolbarWindow32; TEXT:Quick Launch]" EndSelect ;Unlock Taskbar _ToggleTaskbarLock() ;Create Quicklaunch Toolbar _TaskToolbarWin7("Shell:Quick Launch") ;Get Quick Launch current postion While 1 Sleep(100) $QUICKLAUNCH = ControlGetPos("[CLASS:Shell_TrayWnd]", "", $text) If Not @error Then ExitLoop WEnd Func _TaskToolbarWin7($toolbardir) MouseClick("right", 0, @DesktopHeight) Send("{DOWN}{RIGHT}{UP}{ENTER}") WinWaitActive($title) sleep(1000) ControlSetText($title, "", "Edit1", $path) sleep(1000) ControlClick($title, "", "Button1") EndFunc ;==>_TaskToolbarWin7 Func _ToggleTaskbarLock() MouseClick("right", 0, @DesktopHeight) Send("{UP}{UP}{ENTER}") EndFunc ;==>_ToggleTaskbarLock As you can see here above, they are twice $Lang as well as twice Case $Lang In fact, If you're using a Single Windows Language, then you cas use this $Lang = RegRead("HKEY_CURRENT_USER\Control Panel\International", "sLanguage") Case $Lang = "FRA";French Case $Lang = "ENU"; English Otherwise, If you use a MultiLang Windows as myself, you may use $Lang = RegRead("HKEY_CURRENT_USER\Control Panel\Desktop", "PreferredUILanguages") Case $Lang = "fr-FR";French Case $Lang = "en-US"; English Enjoy QuickLaunch_EN-FR.zip
  10. I added a 1 hour idle timing to CDVD-Switcher script It means: if no action, exit and continue/finish Windows installation Enjoy
  11. HERE TheCDVD-Switcher script that i wrote Enjoy
  12. Hello, I've prepared a DVD with an unattended Windows 7 and start adding softwares, I feel quickly cramped. As Windows 7 as welle as the new softwares are GB sized, I was looking for buiding 2 DVDs, the first will contain Windows 7 (4GB), the second all other softwares. To pass from the first DVD to the second I needed a DVD switcher. I built CDVD-Switcher. is an AutoIt script, tested, working. Here how the CDVD-Switcher script will run. Copy CDVD-Switcher.exe to DVD1 (Windows7) %CDROM%\sources\$OEM$\$$\Setup\scripts\ folder Add in the Autounattend.xml file the here bellow command. it should be at the last one <Order>last</Order> <FirstLogonCommands> ... ... ... <SynchronousCommand wcm:action="add"> <Order>4</Order> <Description>Windows Post Install Wizard</Description> <CommandLine>cmd /C start /wait c:\Windows\Setup\scripts\CDVD-Switcher.exe</CommandLine> </SynchronousCommand> </FirstLogonCommands> The DVD2 (softwares) have to be configured as %CDROM%\Software\WPI\WPI.exe unless you modify the path in the script. That means, during Windows7 installation CDVD-Switcher.exe will be copied in C:\Windows\Setup\scripts\ folder, then launched from hard drive, testing if the DVD1 has %CDROM%\Software\WPI\WPI.exe file. As is not exists in DVD1 you have to insert DVD2. That's it Enjoy CDVD-Switcher.zip
  13. Thanks a lot myselfidem and maxXPsoft I'll give a try later Regards
  14. I correct the problem. Everything works just fine
  15. I'll give a try. But the exactly a same Autounattend.xml worked fine with Win7 French
  16. @alvinkhorfire, Again, i did not try removing any font, It's RT7-"Remove component" Languages. Windows itself it well install and run. The problem is when you try installing Office 2010 you'll get error 1907 consequently of missed fonts removed by RT7-"Remove component" Languages.
  17. Hi, I'm using WPI 8.1.0, and I spent all day with the next 2 WPI-config commands without success. prog[pn]=['Size Loader']; uid[pn]=['SizLoad']; ordr[pn]=[770]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Right-Click Tweaks']; configs[pn]=['Home, Corporate, HEN']; cmds[pn]=['"%cdrom%\\Software\\RightClick\\SizeLoader\\SizeLoader_Install.exe"']; desc[pn]=['Right click on the folder will display the folder size and how many files it contain.']; picf[pn]=['SizeLoader.JPG']; picw[pn]=['133']; pich[pn]=['109']; textl[pn]=['Bottom']; pn++; prog[pn]=['Win7 Codecs Package 2.7.1']; uid[pn]=['Win7codec271']; ordr[pn]=[190]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['MultiMedia']; configs[pn]=['Corporate, HEN']; cmds[pn]=['"%cdrom%\\Software\\Win7Codecs\\Win7codecs_Install.exe"']; desc[pn]=['<CENTER><B>Windows 7 Codecs Package 2.7.1</CENTER></B><BR><B>It does not contain a media player and it does not associate file-types.</B><BR>With this package installed you will be able to use any media player, limited only by the players\' capabilities, to play all movies and video clips. Streaming video is supported in several formats in all popular web browsers. Users of VCP have the ability to choose what is installed and where to install it using the public redistributable. After installation you can select to remove specific portions without removing the entire package. You can also re-add the removed items at any time.']; picf[pn]=['VistaCodecs.gif']; picw[pn]=['157']; pich[pn]=['108']; textl[pn]=['Bottom']; pn++; Both commands are launching an Autoit files. Although, the Autoit files were tested working without WPI, when I launch them through WPI, Size Loader return failed and Win7codecs return the image bellow. I'll appeciate any help Here bellow all used files config.js SizeLoader_Install.au3 Win7codecs_Install.au3
  18. Hi, I've prepared Win7 French tested it worked like acharm. Then I decide to prepare a Win7 English with an added French lagPack. I tested it, and at the end of the install i have a Browser Choice window (see image bellow). How can I disable that window with Autounattend.xml? <?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"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>720</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <DynamicUpdate> <Enable>false</Enable> <WillShowUI>OnError</WillShowUI> </DynamicUpdate> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ULTIMATE</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <FullName></FullName> <Organization></Organization> <ProductKey> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> <EnableFirewall>true</EnableFirewall> <EnableNetwork>true</EnableNetwork> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" 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"> <EnableLUA>false</EnableLUA> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" 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"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-IE-InternetExplorer" 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"> <Home_Page>http://www.free.fr/adsl/</Home_Page> <BlockPopups>yes</BlockPopups> <FavoritesOnTop>true</FavoritesOnTop> <FilterLevel>High</FilterLevel> <Help_Page>http://people.consolidated.net/veeger/</Help_Page> <DisableFirstRunWizard>true</DisableFirstRunWizard> <DisableWelcomePage>true</DisableWelcomePage> <PlaySound>false</PlaySound> <ShowInformationBar>true</ShowInformationBar> <SearchScopes> <Scope wcm:action="add"> <ScopeDefault>true</ScopeDefault> <ScopeDisplayName>Google</ScopeDisplayName> <ScopeKey>Search1</ScopeKey> <ScopeUrl>http://www.google.com/advanced_search?hl=fr</ScopeUrl> </Scope> </SearchScopes> <LockToolbars>true</LockToolbars> <ShowLeftAddressToolbar>true</ShowLeftAddressToolbar> <ShowMenuBar>true</ShowMenuBar> <SuggestedSitesEnabled>true</SuggestedSitesEnabled> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" 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"> <fAllowFullControl>false</fAllowFullControl> <fAllowToGetHelp>false</fAllowToGetHelp> </component> <component name="Microsoft-Windows-Security-SPP-UX" 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"> <SkipAutoActivation>true</SkipAutoActivation> </component> <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"> <ComputerName>Se7en</ComputerName> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey> <RegisteredOwner></RegisteredOwner> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>720</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> </component> </settings> <settings pass="oobeSystem"> <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>fr-FR</UILanguage> <UserLocale>fr-FR</UserLocale> <InputLocale>040c:0000040c</InputLocale> </component> <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"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>720</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <RegisteredOwner></RegisteredOwner> <TimeZone>Romance Standard Time</TimeZone> <AutoLogon> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>XXXXXX</Username> <Password> <Value></Value> </Password> </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>Kel's Win7 UberPacK v4</Description> <CommandLine>cmd /C start /wait c:\Install\Win7_UberPacK_v4.exe</CommandLine> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> <Description>Windows Malicious Software Removal Tool December 2010</Description> <CommandLine>cmd /C start /wait c:\Install\X86-all-windows-kb890830-v3.14_cd.exe /Q</CommandLine> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>3</Order> <Description>Windows Malicious Software Removal Tool December 2010</Description> <CommandLine>cmd /C start /wait c:\Install\X86-all-windows-kb890830-v3.14-delta.exe /Q</CommandLine> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>4</Order> <Description>Windows Post Install Wizard</Description> <CommandLine>cmd /C start /wait c:\Windows\Setup\scripts\WPI.cmd</CommandLine> </SynchronousCommand> </FirstLogonCommands> <Themes> <ThemeName>%WINDIR%\resources\Themes\aero.theme</ThemeName> <DefaultThemesOff>false</DefaultThemesOff> <DesktopBackground>%WINDIR%\web\wallpaper\Windows\img0.jpg</DesktopBackground> </Themes> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value></Value> </Password> <Group>Administrators</Group> <DisplayName>XXXXXX</DisplayName> <Name>XXXXXX</Name> </LocalAccount> </LocalAccounts> </UserAccounts> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <BluetoothTaskbarIconEnabled>true</BluetoothTaskbarIconEnabled> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> </component> <component name="Microsoft-Windows-Sidebar" 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"> <Gadget1>%PROGRAMFILES%\Windows Sidebar\Gadgets\Clock.Gadget</Gadget1> <Gadget2>%PROGRAMFILES%\Windows Sidebar\Gadgets\Calendar.Gadget</Gadget2> <Gadget3>%PROGRAMFILES%\Windows Sidebar\Gadgets\Weather.Gadget</Gadget3> </component> </settings> </unattend> Regards
  19. I disd not decide nothing. RT7 decide for me when I used the "Remove component" Languages. Consequently, I got Error 1907. Then, I googled that error and get the infos regardinf a missed fonts. So, I installed a pure Win7 and copy all the fonts. Then I installed aWin7 prepared with RT7 and "Remove component" Languages. and compared the C:\Windows\fonts directory Morality, do NOTsuppress any font That's it
  20. Thank you, My question was especially about <FullName>Full Name</FullName> <Organization>particulier</Organization> Then, if i must have, I'll have. Regards
  21. Hebrew.cab and French.cab I'll try installing a Windows 7 english. But if it doesn't bothering you, you can add english.cab too Regards
×
×
  • Create New...