Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Add-Ons hang after Sysprep of Windows 7

  • 2 个回答
  • 10 人有此问题
  • 3 次查看
  • 最后回复者为 iamwhoiam

more options

Building a Windows 7 image and pre-configuring FF 3.6.6 settings. I have two addons installed (IE Tab Plus 1.92.20100607 and Colorful Tabs 4.61). These addons work fine in the Administrator profile. After I run sysprep my plugins no longer work for any new user. If I go to Tools > Addons the two plugins are listed. If I attempt to click on options for either of the plugins the entire Add-ons menu hangs. I have checked to make sure these plugins are compatible with 3.6.6. As a work around, I found by temporarily disabling one of the plugins (does matter which one) allowing FF to restart. Upon restarting FF the remaining plugins will start working. I can re-enable the plugin I temporarily disabled and it will work as well. This seems to only happen after running Sysprep. I had exact problem before back in 3.5.x. The problem disappeared after upgrading FF to a higher version of 3.5.

Building a Windows 7 image and pre-configuring FF 3.6.6 settings. I have two addons installed (IE Tab Plus 1.92.20100607 and Colorful Tabs 4.61). These addons work fine in the Administrator profile. After I run sysprep my plugins no longer work for any new user. If I go to Tools > Addons the two plugins are listed. If I attempt to click on options for either of the plugins the entire Add-ons menu hangs. I have checked to make sure these plugins are compatible with 3.6.6. As a work around, I found by temporarily disabling one of the plugins (does matter which one) allowing FF to restart. Upon restarting FF the remaining plugins will start working. I can re-enable the plugin I temporarily disabled and it will work as well. This seems to only happen after running Sysprep. I had exact problem before back in 3.5.x. The problem disappeared after upgrading FF to a higher version of 3.5.

所有回复 (2)

more options

Correction: Does NOT matter which plugin you disable.

Also - here is a a screenshot of what the Addons menu looks after the sysprep and logged on as a fresh user (User has Admin rights)

more options

You need to use an answer file with sysprep that has the CopyProfile setting set to true. I have FF (latest non beta) with various plugins and they all work fine from a syspreped image.

It's also best to do this from a fresh install of Windows and press CTRL+SHIFT+F3 to enter audit mode and configure everything from the admin account there (don't use the sysprep windows that pops up).

My answer file below instructs Windows to copy the administrator account settings to the default user so that when new user accounts are made they inherit the custom settings.

If you're using 32-bit Windows then change all the amd64 strings to x86. Save this to C:\Windows\System32\sysprep\sysprep.xml, and then run sysprep from a command prompt. c:\windows\system32\sysprep\sysprep /generalize /shutdown /oobe /unattend:sysprep.xml



<unattend xmlns="urn:schemas-microsoft-com:unattend">

   <servicing></servicing>
   <settings pass="specialize">
       <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <CopyProfile>true</CopyProfile>
           <ShowWindowsLive>false</ShowWindowsLive>
       </component>
   </settings>
   <settings pass="generalize">
       <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <SkipRearm>1</SkipRearm>
       </component>
   </settings>
   <settings pass="oobeSystem">
       <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <OOBE>
               <HideEULAPage>true</HideEULAPage>
           </OOBE>
       </component>
   </settings>
   <cpi:offlineImage cpi:source="wim:/sources/install.wim#Windows 7 ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />

</unattend>