Search found 21 matches
- 14 May 2025 11:52
- Forum: DOS Batch Forum
- Topic: Simple script to reboot and automatically enter BIOS/UEFI
- Replies: 2
- Views: 9
Re: Simple script to reboot and automatically enter BIOS/UEFI
Hola, Antonio. Voy a tener en cuenta tu sugerencia, gracias. Soy de Argentina. Por cierto, me gusta el folclore mexicano, como suenan esos guitarrones y las trompetas. Esta es mi ciudad: https://www.google.com.ar/maps/@-32.4844621,-58.2345476,15.42z?entry=ttu&g_ep=EgoyMDI1MDUxMS4wIKXMDSoASAFQAw%3D%3...
- 14 May 2025 09:18
- Forum: DOS Batch Forum
- Topic: Simple script to reboot and automatically enter BIOS/UEFI
- Replies: 2
- Views: 9
Simple script to reboot and automatically enter BIOS/UEFI
Hi everyone. Download link for the folder with the scripts in Spanish and English: https://drive.google.com/file/d/1-Yagj-Bl3ssoG_OqVxelqzKtCv_LRy2g/view?usp=sharing :: ___________________________________________ :: :: EntBIOS 1.0.1 :: MarcSoft (R) :: Copyright (C) 2025 Eduardo A. Marclay :: _______...
- 11 May 2025 20:50
- Forum: DOS Batch Forum
- Topic: Accessing the Control Panel.
- Replies: 8
- Views: 210
Re: Accessing the Control Panel.
Good morning, everyone.
Corrected and re-uploaded at the same link.
Thanks again, Steffen.
Eduardo
Corrected and re-uploaded at the same link.
Thanks again, Steffen.
Eduardo
- 11 May 2025 14:49
- Forum: DOS Batch Forum
- Topic: Accessing the Control Panel.
- Replies: 8
- Views: 210
Re: Accessing the Control Panel.
Done, thanks a lot, Steffen!
The link below includes both versions, Spanish and English.
https://drive.google.com/file/d/1mZXyCf ... sp=sharing
Eduardo
The link below includes both versions, Spanish and English.
https://drive.google.com/file/d/1mZXyCf ... sp=sharing
Eduardo
- 11 May 2025 12:23
- Forum: DOS Batch Forum
- Topic: Accessing the Control Panel.
- Replies: 8
- Views: 210
Re: Accessing the Control Panel.
Your script works perfectly, Steffen!
But I don't know how to implement it in my script (PanTrol). Something like: "Put your script here."
I tried several ways but without success. I'll keep trying.
But I don't know how to implement it in my script (PanTrol). Something like: "Put your script here."
I tried several ways but without success. I'll keep trying.
- 11 May 2025 06:24
- Forum: DOS Batch Forum
- Topic: Accessing the Control Panel.
- Replies: 8
- Views: 210
Re: Accessing the Control Panel.
Hallo Steffen. Vielen Dank für Ihre Zeit. I just hope that the script really directs to the right interfaces That's precisely what I want to know. One SETLOCAL is enough (SETLOCAL EnableExtensions EnableDelayedExpansion) Okay, I'll change that. Users may consider it being rude if they are not able t...
- 10 May 2025 17:53
- Forum: DOS Batch Forum
- Topic: Utilities that do everything.
- Replies: 0
- Views: 57
Utilities that do everything.
Hello everyone.
Here's the link to my famous
Utilities, improved, optimized and with new features.
Enjoy!
https://drive.google.com/file/d/1khMVRA ... sp=sharing
Eduardo.
Here's the link to my famous

Enjoy!
https://drive.google.com/file/d/1khMVRA ... sp=sharing
Eduardo.
- 10 May 2025 05:41
- Forum: DOS Batch Forum
- Topic: Accessing the Control Panel.
- Replies: 8
- Views: 210
Accessing the Control Panel.
Hello everyone. I'd like to know if this script works correctly on Windows 10 PCs in English. It's about accessing the Control Panel. Thanks! In the following code, I've commented out the lines "start /min ConsoleNoClose.exe /ALL" and "start /min ConsoleNoClose.exe /RH" that belong to the execution ...
- 03 Aug 2021 14:55
- Forum: DOS Batch Forum
- Topic: Is partition GPT or MBR?
- Replies: 5
- Views: 6954
Re: Is partition GPT or MBR?
Using WMIC it looked like this: @ECHO OFF CLS SETLOCAL EnableExtensions SETLOCAL EnableDelayedExpansion MODE CON COLS=52 LINES=8 TITLE TipoPart COLOR 9B WMIC PARTITION WHERE "BootPartition='True'" GET TYPE /VALUE >"%~dp0Disk.txt" FIND "GPT" "%~dp0Disk.txt" >NUL IF "%ERRORLEVEL%"=="0" (SET "Part=GPT"...
- 02 Aug 2021 08:27
- Forum: DOS Batch Forum
- Topic: Is partition GPT or MBR?
- Replies: 5
- Views: 6954
Re: Is partition GPT or MBR?
If you don't mind a powershell solution, you could utilize something like this: %WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe /command "get-disk | where BootFromDisk -eq "True" | select PartitionStyle" On my system, I can also capture some information about GPT from wmic: wmic partition w...
- 02 Aug 2021 05:59
- Forum: DOS Batch Forum
- Topic: Is partition GPT or MBR?
- Replies: 5
- Views: 6954
Is partition GPT or MBR?
Hello everybody. To know what type of partition the system disk has, I did this batch: @ECHO OFF CLS DISKPART /s diskpart.txt >disk.txt FIND "*" "C:\Users\Eduar\Documents\Bloc de notas\BATs\disk.txt" >NUL IF %ERRORLEVEL% == 0 (SET "Part=Particion GPT") ELSE (SET "Part=Particion MBR") ECHO %Part% PAU...
- 29 Jul 2021 06:37
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 14207
Re: Utilities dealing with hosts files, WiFi, and system information
I make these utilities as entertainment, it is my "game". This is an important information because it tells a lot about the aim of your utilities. Until now my asumption was that your goal is to develop tools which are helpful to gather information for a user. In this case you should write it from ...
- 28 Jul 2021 21:42
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 14207
Re: Utilities dealing with hosts files, WiFi, and system information
Still no one has complained about the "lie". I don't think waiting a second is a big problem, besides, whoever bothers can remove or comment those few lines of code. Also the "lie" is cute, right? :D For a utility script, it's just fluff. Fluff like that is more acceptable in games. Given an animat...
- 28 Jul 2021 15:54
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 14207
Re: Utilities dealing with hosts files, WiFi, and system information
Still no one has complained about the "lie". I don't think waiting a second is a big problem, besides, whoever bothers can remove or comment those few lines of code.
Also the "lie" is cute, right?
Also the "lie" is cute, right?

- 27 Jul 2021 16:14
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 14207
Re: Utilities dealing with hosts files, WiFi, and system information
Hi everybody.
Added "Boot Mode" to "VerClave" utility with Steffen code.
Thanks Steffen.
Same link without password.
Eduardo
Added "Boot Mode" to "VerClave" utility with Steffen code.
Thanks Steffen.
Same link without password.
Eduardo