Re: [Freedos-user] Realtek RTL8211 PCIe Gigabit LAN card

2016-03-29 Thread Don Flowers
Hey Louis, The primary link is the Realtek site I downloaded all these and by trial and error found the right combination of LSL, NET.CFG RTGEODI ODIPKT11 and IPXODI. http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=5&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false#RTL8111B/R

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Hans-Christian Koch
Hey guys! >> Nevermind my answer. This may work directly from prompt but not from >> within my program. I guess I need to do it in command.com. So can you > >recommend any good documentation on how to compile freecom and maybe which source? > > Is this program something you wrote or somebody els

Re: [Freedos-user] FreeDos booting from a USB stick

2016-03-29 Thread Jerome E. Shidel Jr.
Hello, > On Mar 29, 2016, at 1:26 PM, Thomsen Thomsen wrote: > > Hello. I managed to create a bootable USB key running FreeDos using Rufus > (http://www.howtogeek.com/136987/how-to-create-a-bootable-dos-usb-drive/). It > works well and boots fine. I even managed to move files to the USB key. I

Re: [Freedos-user] Realtek RTL8211 PCIe Gigabit LAN card

2016-03-29 Thread Louis Santillan
If the driver link appears to be legitimate, could you post it please? On Sat, Mar 26, 2016 at 3:57 PM, Don Flowers wrote: > So I have this Acer E5-571 with a Realtek RTL8211 NIC cardi and have never > been able to configure. Over the past week I have been on a download binge > trying to find in

[Freedos-user] Preview 15, The Final Preview.

2016-03-29 Thread Jerome E. Shidel Jr.
Hello All, Well I finally had a little bit of spare time and incorporated the enhancements I mentioned. I foresee no further changes or enhancements. Technically, preview 15 should be called Beta or RC 1. However, I just finished the modifications and hammered on the latest version. So, I am j

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Rugxulo
Hi, On Tue, Mar 29, 2016 at 12:14 PM, Hans-Christian Koch wrote: > > Nevermind my answer. This may work directly from prompt but not from within > my program. I guess I need to do it in command.com. So can you recommend any > good documentation on how to compile freecom and maybe which source? I

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Ralf Quint
On 3/29/2016 9:41 AM, Hans-Christian Koch wrote: Hey Louis! Thanks for your quick answer which helped me alot! Actually I just copied deltree.com to my C: directory and put in my autoexec.bat alias rd=C:\deltree.com /y Now when I do “rd C:\directory\directory2” it deletes the specified dir

Re: [Freedos-user] FreeDos booting from a USB stick

2016-03-29 Thread Rugxulo
Hi, On Tue, Mar 29, 2016 at 12:26 PM, Thomsen Thomsen wrote: > > Hello. I managed to create a bootable USB key running FreeDos using Rufus > It works well and boots fine. I even managed to move files to the USB key. Good to know that it works for you (too). > I wanted to install some of the pro

[Freedos-user] FreeDos booting from a USB stick

2016-03-29 Thread Thomsen Thomsen
Hello. I managed to create a bootable USB key running FreeDos using Rufus (http://www.howtogeek.com/136987/how-to-create-a-bootable-dos-usb-drive/). It works well and boots fine. I even managed to move files to the USB key. I wanted to install some of the programs from http://www.freedos.org/softwa

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Hans-Christian Koch
Nevermind my answer. This may work directly from prompt but not from within my program. I guess I need to do it in command.com. So can you recommend any good documentation on how to compile freecom and maybe which source? --

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Hans-Christian Koch
Hey Louis! Thanks for your quick answer which helped me alot! Actually I just copied deltree.com to my C: directory and put in my autoexec.bat alias rd=C:\deltree.com /y Now when I do “rd C:\directory\directory2” it deletes the specified directory. I know it’s a pretty dirty solution

Re: [Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Louis Santillan
del C:\directory\*.* rd C:\directory Even that will fail, I think, if there are some hidden files/folders. Start with that and you can build it into an alias command in freecom. alias myrd="del %1%\*.* ; rd %1%" I believe that's the right syntax. -L On Tuesday, March 29, 2016, Hans-Christian K

[Freedos-user] Catch "rd" order before command.com processing

2016-03-29 Thread Hans-Christian Koch
Hey all! Once again I am trying to run some old programs under Linux emulation DOSEMU which is making use of FREEDOS. In one of them you have the option to delete directories, it does it like this: del C:\directory\*.rec del C:\directory\*.dat del C:\directory\eti.bin rd C:\directory As