lvfengfree b92e1119ae fix: 修复菜单为空问题 - 移除后端过滤home路由的错误逻辑
- 修复RouteService中错误过滤home路由的问题
- 后端现在正确返回所有用户有权限的路由
- 添加设备管理相关功能(列表、在线监控、电源管理、远程监控)
- 添加详细的修复文档和重启脚本
- 更新权限配置脚本

问题根源:后端代码中有逻辑会过滤掉home路由,导致前端收到空数组,无法生成菜单
解决方案:移除过滤home路由的逻辑,让后端返回所有有权限的路由
2026-03-01 09:50:19 +08:00

39 lines
1.4 KiB
Plaintext
Raw Blame History

Copyright (C) 2008 Intel Corporation
Intel(R) Active Management Technology (Intel(R) AMT):
A short description of the CimWinRMClient, which uses
Microsoft WinRM* Client for WS-Management communication with Intel(r) AMT.
How to Configure WinRM
----------------------
1. Install WinRM on your management console.
2. Follow the instructions in the WS-ManagementCPP Readme.txt,
in the relevant section.
How to Compile a sample to use the WinRMWSManClient
---------------------------------------------------
1. Open the sample "*.vcxproj" in Microsoft Visual Studio 2019*.
2. Add the CimWinRMClient.lib to the linker's "Additional Dependencies".
3. Add the following path to C/C++->Additional Include Directories list:
SDK\Windows\Common\WS-Management\CPP\CimWinRMClient
4. Open the *sample.cpp file. In the constructor change the line
CimOpenWsmanClient wsmanClient(<28>);
To:
CimWinRMClient wsmanClient(<28>);
5. Remove the following parameters from the constructor:
- Proxy IP/ Hostname
- Proxy username
- Proxy password
- Connecting from remote / local
- Certificate name
- Certificate OID
6. Add the following line to the code: #include "CimWinRMClient.h"
7. Build the solution.
A resultant "*.exe" file should be created, using the CimWinRMClient.
-------------------------------------------------------------------
* Other names and brands may be claimed as the property of others.