环境配置_解决win10安装office 出现“the setup controller has encountered a......”而且找不见Office Setup Controller文件

本文介绍了解决Win10上Office2007安装时出现SetupError问题的方法。通过删除特定目录下的OfficeSetupController文件夹,可以有效避免安装错误。文章详细解释了如何定位并删除该文件夹,帮助用户顺利完成Office2007的安装。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Setup Error
the setup controller has encountered a problem during install. Please review the log files for further informatin on the error.


    在给学院老师修理电脑的时候,win10上office 2007安装好后会出现上边所描述的“Setup Error”错误,网上找到了两种方法,不过都不能用,后来终于解决了!解决方法其实非常简单,如下:

修改目录的方法

针对Office 2010就直接将
C:\Program Files\Common Files\Microsoft Shared\OFFICE14\Office Setup Controller目录改名或者删除

针对Office 2007,那就是
C:\Program Files\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller目录改名或者删除

    不要着急,通过上边的方法你会发现,你根本就找不到你想要删除或者改名的文件夹,那是因为标红目录名可能为Program Files(x86),再按照后边的路径进去找,就能找到相应的文件;但是!你改名后发现还是会出现同样的问题,可当你删除这个文件夹的时候,就不会出现这个问题了,所以直接删除是最好的选择,因为重命名没用。

Program Files:64位操作操作系统中存放系统文件(即通常的C:\Program Files和C:\Windows\System32)

Program Files(x86):存放32位同名系统文件(C:\Program Files (x86)和C:\Windows\SysWoW64)

(如下,本人是将Program Files(x86)下的Office Setup Controller文件夹进行改名解决了此问题)

C:\Program Files (x86)\Common Files\microsoft shared\OFFICE12\delOffice Setup Controller
--------------------- 
作者:admin_maxin 
来源:优快云 
原文:https://blog.youkuaiyun.com/admin_maxin/article/details/54096247 
版权声明:本文为博主原创文章,转载请附上博文链接!

### STM32H7 FDCAN Peripheral Configuration Tutorial For configuring the Flexible Data-rate Controller Area Network (FDCAN) on an STM32H7 microcontroller, such as the stm32h743xi model, one can follow a structured approach using STM32CubeMX to simplify and automate much of this process. #### Using STM32CubeMX for Initialization Code Generation STM32CubeMX is a graphical tool that allows users to initialize and configure peripherals including FDCAN. By selecting the appropriate pins for FDCAN operation within STM32CubeMX, it becomes straightforward to generate initialization code tailored specifically for these configurations[^1]. To begin with, after launching STM32CubeMX and creating a new project targeting the specific STM32H7 series device like `stm32h743xi`, proceed by enabling the FDCAN module from the list of available peripherals. Once enabled, choose the desired parameters through intuitive menus provided by STM32CubeMX which include setting up bit timing settings, message RAM configuration among others relevant options related to FDCAN functionality. After completing all necessary selections concerning how FDCAN should operate according to application requirements, generating the corresponding initialization C source files along with header files ensures everything needed for starting communication over CAN bus networks has been properly set up without manual coding effort involved at this stage. Here's an example snippet showing part of what might be included automatically when initializing FDCAN: ```c /* USER CODE BEGIN FDcan_MspInit 0 */ /* USER CODE END FDcan_MspInit 0 */ /* Enable Low Power Mode for Device Peripherals */ HAL_PWREx_EnableVddIO2(); /* Configure GPIO pin : PC9 */ GPIO_InitStruct.Pin = GPIO_PIN_9; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; GPIO_InitStruct.Alternate = GPIO_AF9_FDCAN2; HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); /* Enable peripheral clock of FDCAN */ __HAL_RCC_FDCAN_CLK_ENABLE(); /* USER CODE BEGIN FDcan_MspInit 1 */ /* USER CODE END FDcan_MspInit 1 */ ``` This piece demonstrates typical actions performed during setup: configuring associated GPIOs correctly alongside activating power supply lines required before actually bringing online any instance(s) of FDCAN hardware blocks present inside selected MCU chip models supporting them natively via dedicated interfaces designed into silicon architecture itself. --related questions-- 1. What are some common pitfalls encountered while configuring FDCAN on STM32 devices? 2. How does changing the bit rate affect performance in applications utilizing FDCAN? 3. Can multiple instances of FDCAN coexist peacefully within single projects running on STM32 platforms? 4. Are there differences between classic CAN and newer FDCAN implementations worth noting for developers transitioning their designs? 5. In what scenarios would someone prefer using FDCAN over traditional CAN protocols supported by earlier generations of STMicroelectronics' ARM Cortex-M based processors families?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值