【错误记录】Windows 系统 bat 脚本报错 ( 使用 pause 拦截窗口自动关闭 | 方便查看错误 )

简介: 【错误记录】Windows 系统 bat 脚本报错 ( 使用 pause 拦截窗口自动关闭 | 方便查看错误 )

文章目录

一、报错信息

二、解决方案





一、报错信息


使用 Java 语言生成了 Windows 系统中的 bat 批处理脚本 , 双击后命令行窗口一闪而过 , 命令没有达到执行效果 ;


image.png


命令行内容很简单 , 删除两个文件 :


del delete_file.txt
del 待删除文件.txt


单独指令这两个命令 , 是可以执行成功的 ;


执行该批处理文件 , 只能删除 " delete_file.txt " 文件 , 无法删除 " 待删除文件.txt " 文件 ;






二、解决方案


解决上述问题 , 需要先查看到错误 , 这里使用 pause 命令 , 让命令行窗口停在当前位置 , 不要马上消失 ;


del delete_file.txt
del 待删除文件.txt
pause

image.png

再次执行时 , 发现报错 , 中文名称是乱码 ;


image.png

目录
相关文章
|
2月前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
84 0
|
3月前
|
Python Windows
python之windows脚本启动bat
python之windows脚本启动bat
|
3月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
4月前
|
安全 Shell Windows
记windows自定义bat脚本自启动
【8月更文挑战第27天】在Windows系统中,可让自定义bat脚本自启动的方法有两种:一是利用“启动”文件夹,通过创建bat脚本的快捷方式并将其放置于该文件夹;二是使用任务计划程序,创建一个启动时触发的任务来运行bat脚本。需确保脚本正确安全,避免对系统产生不良影响。
308 0
|
4月前
|
Shell PHP Windows
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
|
4月前
|
Java 开发工具 Spring
【Azure Spring Cloud】使用azure-spring-boot-starter-storage来上传文件报错: java.net.UnknownHostException: xxxxxxxx.blob.core.windows.net: Name or service not known
【Azure Spring Cloud】使用azure-spring-boot-starter-storage来上传文件报错: java.net.UnknownHostException: xxxxxxxx.blob.core.windows.net: Name or service not known
|
4月前
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
|
4月前
|
开发框架 .NET API
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
175 0
|
5月前
|
Windows
【Windows】 Win10下报错:该文件没有与之关联的应用来执行该操作。请安装应用,若已经安装应用,请在“默认应用设置”页面中创建关联
【Windows】 Win10下报错:该文件没有与之关联的应用来执行该操作。请安装应用,若已经安装应用,请在“默认应用设置”页面中创建关联
693 1
|
API Windows
win32 api Windows窗口的创建
windows窗口的创建有以下几个步骤: 1、创建注册窗口类 2、创建窗口句柄 3、显示更新窗口 4、消息循环 1、创建注册窗口类 所谓创建窗口类就是定义一个WNDCLASS类对象,并将该对象进行初始化。
1475 0

相关课程

更多