我在使用dos模拟器程序时遇到了问题。
exe和数据库路径如下:
VDos和其他我放在util文件夹中的文件,但是如果我的堆栈文件夹被移动到util文件夹中,则会出现一个错误“驱动程序数据可能是空的”。将数据库路径保持在现有位置的解决方案是什么?VDos和其他我放在util文件夹中的文件,但是如果我的堆栈文件夹被移动到util文件夹中,则会出现一个错误“驱动程序数据可能是空的”。将数据库路径保持在现有位置的解决方案是什么?谢谢
@ECHO OFF
rem This is essentialy the autoexec.bat of DOS.
rem Only one additional vDos specific command is available: USE.
rem At startup only z: (bootdisk/command.com) is known by DOS.
rem So first you assign one or more DOS driveletters to Windows directories.
rem Use <driveletter:> <Windows directory>
rem Files/directories that don't confirm to the DOS 8.3 filenaming are hidden (as it should).
rem To just use the vDos working directory as c:
USE C: C:\Util\
c:
cd CAMUS.EXE
CAMUS.EXE
rem switch from z: to c:
C:
exit发布于 2022-07-11 12:09:24
这是一个链接!
@ECHO OFF
rem This is essentialy the autoexec.bat of DOS.
rem Only one additional vDos specific command is available: USE.
rem At startup only z: (bootdisk/command.com) is known by DOS.
rem So first you assign one or more DOS driveletters to Windows directories.
rem Use <driveletter:> <Windows directory>
rem Files/directories that don't confirm to the DOS 8.3 filenaming are hidden (as it should).
rem To just use the vDos working directory as c:
USE C: C:\
c:
cd C:\UTIL
CAMUS.EXE
rem switch from z: to c:
C:
exithttps://stackoverflow.com/questions/72921619
复制相似问题