Search found 13 matches

by YottaByte
03 Aug 2021 14:55
Forum: DOS Batch Forum
Topic: Is partition GPT or MBR?
Replies: 5
Views: 4773

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"...
by YottaByte
02 Aug 2021 08:27
Forum: DOS Batch Forum
Topic: Is partition GPT or MBR?
Replies: 5
Views: 4773

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...
by YottaByte
02 Aug 2021 05:59
Forum: DOS Batch Forum
Topic: Is partition GPT or MBR?
Replies: 5
Views: 4773

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...
by YottaByte
29 Jul 2021 06:37
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

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 ...
by YottaByte
28 Jul 2021 21:42
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

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...
by YottaByte
28 Jul 2021 15:54
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

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
by YottaByte
27 Jul 2021 16:14
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

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
by YottaByte
21 Jul 2021 16:26
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

Re: Utilities dealing with hosts files, WiFi, and system information

Hello everybody.

Some people have reported problems with the password in the compressed file (7zip). The link below directs to said file without password.

https://drive.google.com/file/d/1sQD2n4 ... sp=sharing

Eduardo
by YottaByte
13 Jul 2021 05:15
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

Re: Utilities dealing with hosts files, WiFi, and system information

Hi everybody.

The utility that displays System Information ("InfoSist") is now integrated into "EdiHosts".
Same link, same key.

Eduardo
by YottaByte
09 Jul 2021 16:12
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

Re: Utilities dealing with hosts files, WiFi, and system information

Hello everybody!
I have fixed small bugs and updated the download link.
If someone has downloaded the Utilities, I would like to know their opinion and if it has been useful to them.
Thanks in advance.

Eduardo
by YottaByte
03 Jul 2021 04:43
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

Re: Utilities

Hi Steffen. I'm sorry, please accept my apologies. I never asked for help here or anywhere else. The purpose of this post is just to make known what can be done with my very limited knowledge of Batch. I hope it will be useful to someone who deals with PC maintenance. Well, for example, the "EdiHost...
by YottaByte
02 Jul 2021 14:34
Forum: DOS Batch Forum
Topic: Utilities dealing with hosts files, WiFi, and system information
Replies: 15
Views: 7930

Utilities dealing with hosts files, WiFi, and system information

Utilities of a newbie. :D Hello everyone! Between 2016 and the present, I have developed some "utilities" in Batch and I would like to know the opinion of the DOSTips experts. I have extracted parts of code from here and various other places and adapted - and translated - them as required. As you wi...