Windows10资源管理器远程访问WebDAV文件
发表于|server-pc
|总字数:83|阅读时长:1分钟|浏览量:
Windows10资源管理器远程访问WebDAV文件
- 去服务里打开WebClient,改为自动启动
- 修改注册表使得WIN同时支持http和https:定位到
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters - 把BasicAuthLevel 值改成2,即同时支持http和https,默认只支持https,然后重启服务
- 然后映射网络驱动器即可


文章作者: 小鱼吃猫
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 小鱼吃猫!
相关推荐
2023-10-21
MapperStruct实现类为空
MapperStruct实现类为空问题描述:MapperStruct生成的实现了为空 按照在MapperStruct官网Installation – MapStruct中的方法配置后,生成的实现了是空的,如下: 1234567891011121314151617181920@Override public DeployHistory toEntity(DeployHistoryDto arg0) { if ( arg0 == null ) { return null; } DeployHistory deployHistory = new DeployHistory(); return deployHistory; } @Override public DeployHistoryDto toDto(DeployHistory arg0) { if ( arg0 == null ) { return null; ...
2023-08-04
ValueError too many dimensions 'str'
ValueError: too many dimensions ‘str’使用Bert进行训练时,报错如题。具体如下: 12345ValueError: too many dimensions 'str'The above exception was the direct cause of the following exception:ValueError: Unable to create tensor, you should probably activate truncation and/or padding with 'padding=True' 'truncation=True' to have batched tensors with the same length. Perhaps your features (`labels` in this case) have excessive nesting (inputs type `list` where type `int` is expected). 解...
2023-09-03
Microsoft Visual C++ 14.0 or greater is required
Microsoft Visual C++ 14.0 or greater is required报错内容123error: Microsoft Visual C++ 14.0 or greater is required.Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ 原因分析电脑没装C++ 14.0环境 解决方案可以按照他的提示,去 https://visualstudio.microsoft.com/visual-cpp-build-tools/里下载Visual Studio,打开后,只选择单个组件安装即可。
2023-10-09
Module ‘XXX‘ doesn‘t exist on the Hugging Face Hub
Module ‘accuracy’ doesn’t exist on the Hugging Face Hub either.问题:12Module 'accuracy' doesn't exist on the Hugging Face Hub either.Module 'f1' doesn't exist on the Hugging Face Hub either. 原因出现这个错误,主要在使用evaluate时,加载accuarcy,由于网络问题访问不到导致的。 1acc_metric = evaluate.load("accuracy") 解决方案 下载对应的py文件,然后从本地加载 1https://github.com/huggingface/datasets/tree/main/metrics 从本地加载评估模块 123from datasets import load_metricacc_metric = load_metric("./accuracy.py&quo...
2023-04-22
Java开发中解决Js的跨域问题
Java开发中解决Js的跨域问题主流方法有JSONP和CORS两种,这里记一下后者的方式,理论基础就是在请求的时候在http请求头中添加如下属性: 12//指定允许其他域名访问Access-Control-Allow-Origin:http://localhost:8989 如果后端用Java开发,在返回请求中可以添加如下属性 1.在跨域问题中,如果不操作cookie,只需要在后端代码中添加如下代码就可以12response.setHeader("Access-Control-Allow-Origin", "http://localhost:8989");//第二个参数的意思就是说是哪个地址访问,如果要通配全部,就使用*即可 虽然是加在了response中,但是HTTP是基于TCP(传输层协议)的应用层协议,每次请求的时候都会有“三次握手”的过程,所以添加在response中后,会在第一次请求中告知客户端可以请求。 如果是SpringMVC4.2以上版本的话,一个注解就可以搞定 1@CrossOrigin(origins=&quo...
2023-10-26
Unable to create a Configuration, because no Jakarta Bean Validation provider could be found
Unable to create a Configuration, because no Jakarta Bean Validation provider could be found错误内容: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found 原因:Validation数据校验的包没找到需要添加验证的依赖,添加 1234<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId></dependency>
公告

