我正在尝试在Windows 7上安装AtmelStudio 7,但安装在一段时间后停止了。显示以下错误消息:
发生错误 AVR8设备支持
到目前为止我尝试了什么:
as-installer-*.exe SHELLCOMMAND=/NoWeb /NoRefresh /NoRestart
)确实会出现相同的错误消息。问题
有人知道如何安装AtmelStudio 7吗?
更新
我解决了安装问题如下:
错误表明IDE安装很可能是注册表项被搞乱了。
1)转到命令提示符并运行以下命令
wmic product where "vendor like 'Atmel%'" get Name, Version
这将列出作为机器一部分的产品,来自Atmel。如果它列出“Atmel Studio IDE 7.0”或“Atmel Studio开发环境”,则组件未正确卸载。
2)为了清理上述组件,请使用第三方实用程序(http://www.revouninstaller.com/revo_uninstaller_free_download.html)从系统中删除上述组件。
注意:为了让Revo Uninstaller列出上述组件,请转到Tools-> Options-> Show System组件并进行检查。
3)清理上述组件和注册表以验证清理成功后再次运行以下命令。
wmic product where "vendor like 'Atmel%'" get Name, Version
如果清理成功,则不应列出“Atmel Studio IDE 7.0”或“Atmel Studio开发环境”。
4)现在您可以安装Atmel Studio。
答案 0 :(得分:2)
卸载Atmel Studio 7.0.582后,我也遇到了错误。 不幸的是,它搞砸了注册表,因此我无法使用" wmic"程序(它永远不会有任何东西)。 经过几个小时的搜索,我发现了这个用于修复安装/卸载问题的Microsoft工具:
使用它很容易,上面描述的步骤非常相似:
之后,我能够成功安装AS 7.0.1006。
答案 1 :(得分:1)
我在运行win7的笔记本电脑上遇到了同样的故障
当我检查日志文件时发现以下错误,但我仍然无法修复它...
Property(S): INSTALLLEVEL = 1
Property(S): SOURCEDIR = C:\ProgramData\Package Cache\{C327F1B0-01E9-45BB-AE07-AD204C992A31}v7.0.922\
Property(S): SourcedirProduct = {C327F1B0-01E9-45BB-AE07-AD204C992A31}
Property(S): ProductToBeRegistered = 1
MSI (s) (58:48) [13:08:41:248]: Note: 1: 1708
MSI (s) (58:48) [13:08:41:249]: Note: 1: 2205 2: 3: Error
MSI (s) (58:48) [13:08:41:249]: Note: 1: 2228 2: 3: Error 4: SELECT Message FROM Error WHERE Error = 1708
MSI (s) (58:48) [13:08:41:249]: Note: 1: 2205 2: 3: Error
MSI (s) (58:48) [13:08:41:249]: Note: 1: 2228 2: 3: Error 4: SELECT Message FROM Error WHERE Error = 1709
MSI (s) (58:48) [13:08:41:249]: Product: AVR8 Device Support — Installation failed.
MSI (s) (58:48) [13:08:41:250]: Windows Installer installed the product. Product Name: AVR8 Device Support. Product Version: 7.0.922. Product Language: 1033. Manufacturer: Atmel. Installation success or error status: 1603.
MSI (s) (58:48) [13:08:41:255]: Deferring clean up of packages/files, if any exist
MSI (s) (58:48) [13:08:41:255]: MainEngineThread is returning 1603
MSI (s) (58:D4) [13:08:41:259]: RESTART MANAGER: Session closed.
MSI (s) (58:D4) [13:08:41:259]: No System Restore sequence number for this installation.
=== Logging stopped: 7/3/2016 13:08:41 ===
MSI (s) (58:D4) [13:08:41:264]: User policy value 'DisableRollback' is 0
MSI (s) (58:D4) [13:08:41:264]: Machine policy value 'DisableRollback' is 0
MSI (s) (58:D4) [13:08:41:264]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (58:D4) [13:08:41:267]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (s) (58:D4) [13:08:41:268]: Restoring environment variables
MSI (s) (58:D4) [13:08:41:269]: Destroying RemoteAPI object.
MSI (s) (58:50) [13:08:41:269]: Custom Action Manager thread ending.
MSI (c) (FC:64) [13:08:41:282]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
MSI (c) (FC:64) [13:08:41:283]: MainEngineThread is returning 1603
=== Verbose logging stopped: 7/3/2016 13:08:41 ===</code><br/>
也许这些资源可以帮助你
https://support.microsoft.com/en-us/kb/834484
http://www.avrfreaks.net/comment/1922756#comment-1922756
如果有人知道出了什么问题,请告诉我们!
谢谢!
答案 2 :(得分:1)
发生在我身上的另一个问题是将装置悬挂在
Atmel Studio开发环境应用
详细信息:初始化环境
有用的解决方案是杀死AtmelStudio.exe(* 32)进程,该进程显然在后台运行,作为安装过程的一部分。
以下链接是我找到解决方案的地方:
http://www.avrfreaks.net/comment/1918991#comment-1918991
最后经过一些看似可怕的步骤......!