Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. You can use Dism with /Apply-Unattend: http://technet.microsoft.com/fr-ch/library/dd744522(en-us,WS.10).aspx
  2. If you want you can try to mount your images and add the original file wscsvc.dll inside: %Windir%\System32\wscsvc.dll Or to keep wscsvc component with rt7Lite. The best way I think! Help: http://en.wikipedia.org/wiki/Windows_Action_Center http://www.win7dll.info/wscsvc_dll.html http://www.blackviper.com/2010/12/17/black-vipers-windows-7-service-pack-1-service-configurations/
  3. I see inside your Lastsession.inf file, that you have deleted the wscsvc component!
  4. If you want add a right click shortcut for a program ON THE DESKTOP, with a reg file you can make like this. Example for Cpu-z Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\Cpu-z] @="Cpu-z" "Icon"="C:\\Program Files\\CPUID\\cpu-z\\cpuz.exe,-0" "Position"="Bottom" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\Cpu-z\command] @="C:\\Program Files\\CPUID\\cpu-z\\cpuz.exe" Another example I've made for TuneUp Uilities 2011 Windows Registry Editor Version 5.00 ; TuneUp Utilities 2011 Right click on "MY COMPUTER" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\TuneUp Utilities] @="TuneUp Utilities 2011" "Icon"="C:\\Program Files\\TuneUp Utilities 2011\\Integrator.exe,-0" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\TuneUp Utilities\Command] @="C:\\Program Files\\TuneUp Utilities 2011\\Integrator.exe" ; Add right click on the "DESKTOP" to launch TuneUp Utilities [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\TuneUp Utilities] @="TuneUp Utilities 2011" "Icon"="C:\\Program Files\\TuneUp Utilities 2011\\Integrator.exe,-0" "Position"="Bottom" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\TuneUp Utilities\command] @="C:\\Program Files\\TuneUp Utilities 2011\\Integrator.exe" You can also download some Tweaks-FR here: http://www.mediafire.com/?kns27djwvkrj2
  5. About your "Autounattend.xml" you can find help here, to make some changes needed: http://www.msfn.org/board/topic/150289-oobe-suppressed-fully-set/ Where did you downloaded the Persian language SP1 for your Windows 7 SP1?
  6. Are you customizing Windows 7 Ultimate SP0 or SP1? You can try to set your msu updates inside D:\Updates Inside your Dism.log
  7. You have customized Windows 7 SP0 or SP1? Could you attach your Autounattend.xml file, please!
  8. If you do like my explaination above for the config.xml and the command, the installation will be successfull. I've tested the two methods: with SFX file and using ruonceex without any problem (Office Standard 2007). Adapt the batch for your needs and select the path where is located the config.xml file: $OEM$\$1\Install\Office\{All files Office 2007}\ENTERPRISE.WW\CONFIG.XML REG ADD %KEY%\025 /VE /D "Office ENTERPRISE 2007" /f REG ADD %KEY%\025 /V 1 /D "%systemdrive%\Install\Office\SETUP.EXE /config %systemdrive%\Install\Office\Enterprise.WW\CONFIG.XML" /f inside the config.xml file {path for silent installation}: <Command Path="%WINDIR%\system32\msiexec.exe" Args="/i %systemdrive%\Install\Office\Enterprise.WW\EnterpriseWW.msi" QuietArg="/qn" ChainPosition="after" Execute="install" /> Config.xml file in the 2007 Office system Help for Office Entreprise 2007 (SFX file creation): http://www.msfn.org/...n-object-error/ (post #10) Take care with the components you don't want install and check if the <OptionState ID = are correct! Config.xml file OptionState Id values You can keep the line inside config.xml to have an installation log file(look inside %temp% folder) and attach this one to see the errors: <Logging Type="standard" Path="%temp%" Template="Microsoft Office Enterprise Setup(*).txt" />
  9. You can see that the first line isn't the same: your Office product is Enterprise. Inside your config.xml, you must change the first line. And use the original untouched config.xml (or a copy) to make changes : <Configuration Product="Pro"> to <Configuration Product="Enterprise"> If you want create an SFX file for Office; you can find help here: http://www.msfn.org/...te/page__st__40 (post 54) Example with my config.xml file for Office 2007 Standard: config.xml <Configuration Product="Standardr"> <Display Level="none" CompletionNotice="no" SuppressModal="Yes" AcceptEula="Yes" /> <Logging Type="standard" Path="%temp%" Template="Microsoft Office Standard Setup(*).txt" /> <PIDKEY Value="XXXXXXXXXXXXXXXXXXXXXXXXX" /> <USERNAME Value="Full Name" /> <USERINITIALS Value="AA" /> <COMPANYNAME Value="particulier" /> <INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> <!-- <LIS CACHEACTION="CacheOnly" /> --> <SOURCELIST Value="%sytemdrive%\Install\Office" /> <DistributionPoint Location="%systemdrive%\Install\Office" /> <SetupUpdates CheckForSUpdates="Yes" SUpdateLocation="%systemdrive%\Install\Office\updates" /> <!-- <OptionState Id="OptionID" State="absent" Children="force" /> --> <Setting Id="Reboot" Value="NEVER" /> <Command Path="%WINDIR%\system32\msiexec.exe" Args="/i %systemdrive%\Install\Office\STANDARDR.WW\STANDARDRWW.MSI" QuietArg="/qn" ChainPosition="after" Execute="install" /> </Configuration> ----------------------------------------------------------- RunOnceEX REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx SET KEY=HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY%\025 /VE /D "Office Standard 2007" /f REG ADD %KEY%\025 /V 1 /D "%systemdrive%\Install\Office\SETUP.EXE /config %systemdrive%\Install\Office\STANDARDR.WW\CONFIG.XML" /f
  10. Could you attach your original untouched config.xml, please!
  11. If I see your image, it seems you have already upgraded Windows XP to SP3. Maybe you can find help here about config.xml and RunOnceEx: http://www.msfn.org/board/topic/140068-a-visual-guide-to-7customizer/page__pid__961227__st__20#entry961227 (post #28) Example for Office 2010: http://www.msfn.org/board/topic/143665-how-to-unnatended-office-2010-and-make-it-lite/page__st__40 (post #42)
  12. Could you please, paste or attach the informations about your winRE.wim. imagex /info <path to the file>\winRE.wim Informations about Windows RE: Customizing the Windows RE Experience Walkthrough: Create a Windows RE Image Example inside my computer x64 winRE.wim (only One index):
  13. I've updated RT Se7en Lite 1.7.0 RC French guide http://www.mediafire.com/?z6v9uj6x97tg8 Cheers
  14. maxXPsoft was talking about IE Settings: Windows 7 Editions: http://en.wikipedia.org/wiki/Windows_7_editions
  15. Like you said, at the download page: http://www.rt7lite.com/requirements.html
  16. Of course! I was only talking about the SetupComplete.cmd like shown above! But anyway it's not an issue and YES keep the SetupComplete.cmd!
  17. Yes, I think you can delete this SetupComplete.cmd!
  18. I see if we customize Windows 7 with RT Se7en Lite, the file RT7LitePILaunch.exe is inside the install.wim Image (%Mount_Folder%\Windows\System32\RT7LitePILaunch.exe), even if we don't use RT Post Install to install applications silently! And inside: %Mount_Folder%\ Windows\setup\scripts, a batch file SetupComplete.cmd is created by RT Se7en Lite: regsvr32 /s %systemroot%\system32\quartz.dll regsvr32 /s %systemroot%\syswow64\quartz.dll @echo off Exit Maybe the file RT7LiteLaunch.exe is corrupted inside your Windows 7 customized?
  19. I don't understand why you have installed AIK for Vista and not WAIK for Windows 7 needed using RT Se7en Lite?
  20. That happens to me sometimes. Rebuild the iso file and test again!
  21. I think the problem is when you have installed RT Se7en Lite the first time and trying to customize your Windows 7. The name is RT7LitePILaunch.exe and this program is inside %SystemDrive%\Program Files\Rocker Teams\RT 7 Lite (x86)\RT7LitePILaunch.exe I think it's better to install first WAIK for Windows 7 before using RT Se7en Lite to have an successful installation and customize Windows 7! *Edit: You can mount your image install.wim customized, and inside the mounted folder you will maybe see: %Mounted_Folder%\Windows\System32\RT7PILaunch.exe But I think this program is used to install silently your programs added with RT Se7en Lite and located inside: %Mounted_Folder%\Windows\setup\scripts\
  22. It's seems the problem is with RTLauncher.exe (Post Install Wizard) include with RT Se7en Lite to install your programs silently, or a name like this, I don't remember! Do you install programs with RT Se7en Lite?
  23. Yes, I see there is two different information: at the first page of this topic and another on the RT Se7en Lite link! You can use RT Se7en Lite under Windows Vista SP1 or SP2 if you install WAIK for Wimdows 7. I always used RT Se7en Lite with WAIK for Windows 7 installed on my computer! The best way is to try do not install WAIK for Windows 7 with an Operating System Windows 7 and tell us. Thanks!
  24. @vinifera If you read carefully, you can see that WAIK for Windows 7 is needed with Windows Vista SP1 or SP2, and for with Windows 7 Host Operating Systems ! http://www.rt7lite.com/requirements.html
  25. The two files desktop.ini on the desktop are normally hidden! You don't need to delete them! Maybe you can tell us what is pilauncher.exe and the silent commands you have used?
×
×
  • Create New...