From 751faa19a20617ff93ad3b43f96e34ed0ada0985 Mon Sep 17 00:00:00 2001 From: Wengier Date: Mon, 28 Jun 2021 03:07:26 -0400 Subject: [PATCH] update config ref --- CHANGELOG | 4 ++-- contrib/windows/installer/dosbox-x.reference.setup.conf | 1 + dosbox-x.reference.conf | 1 + dosbox-x.reference.full.conf | 1 + src/dosbox.cpp | 1 + 5 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 12721cf70..6beb8ab52 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,8 @@ 0.83.15 - Improved the network redirector functions for the Windows platform, so that you can for example list, - open, write, copy, and execute files in a network - path in the form \\COMPUTER\FOLDER directly when + open, write, copy, and execute files in UNC network + paths in the form \\COMPUTER\FOLDER directly when network redirector function is enabled and secure mode is disabled on Windows systems. (Wengier) - MOUNT command followed by a drive letter only will diff --git a/contrib/windows/installer/dosbox-x.reference.setup.conf b/contrib/windows/installer/dosbox-x.reference.setup.conf index 273b249a9..f1d5f1b09 100644 --- a/contrib/windows/installer/dosbox-x.reference.setup.conf +++ b/contrib/windows/installer/dosbox-x.reference.setup.conf @@ -1967,6 +1967,7 @@ timeout = 0 # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. +# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. #DOSBOX-X-ADV:# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the #DOSBOX-X-ADV:# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing diff --git a/dosbox-x.reference.conf b/dosbox-x.reference.conf index 30a78e0ca..348bc7fae 100644 --- a/dosbox-x.reference.conf +++ b/dosbox-x.reference.conf @@ -924,6 +924,7 @@ timeout = 0 # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. +# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. # minimum mcb free: Minimum free segment value to leave free. At startup, the DOS kernel will allocate memory # up to this point. This can be used to deal with EXEPACK issues or DOS programs that cannot diff --git a/dosbox-x.reference.full.conf b/dosbox-x.reference.full.conf index 1d2c886df..d2d615f1a 100644 --- a/dosbox-x.reference.full.conf +++ b/dosbox-x.reference.full.conf @@ -1911,6 +1911,7 @@ timeout = 0 # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. +# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. # minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the # minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing diff --git a/src/dosbox.cpp b/src/dosbox.cpp index a1898262e..cfa686a8e 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -3868,6 +3868,7 @@ void DOSBOX_SetupConfigSections(void) { Pbool = secprop->Add_bool("network redirector",Property::Changeable::WhenIdle,true); Pbool->Set_help("Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.\n" + "You can also directly access UNC network paths in the form \\MACHINE\\SHARE even if they are not mounted as drives on Windows systems.\n" "Set either \"ipx=true\" in [ipx] section or \"ne2000=true\" in [ne2000] section for a full network redirector environment."); Pbool->SetBasic(true);