Search found 13 matches
- 03 Aug 2021 14:55
- Forum: DOS Batch Forum
- Topic: Is partition GPT or MBR?
- Replies: 5
- Views: 6153
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: 6153
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: 6153
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: 10857
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: 10857
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: 10857
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: 10857
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
- 21 Jul 2021 16:26
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
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
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
- 13 Jul 2021 05:15
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
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
The utility that displays System Information ("InfoSist") is now integrated into "EdiHosts".
Same link, same key.
Eduardo
- 09 Jul 2021 16:12
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
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
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
- 03 Jul 2021 05:39
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
- 03 Jul 2021 04:43
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
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...
- 02 Jul 2021 14:34
- Forum: DOS Batch Forum
- Topic: Utilities dealing with hosts files, WiFi, and system information
- Replies: 15
- Views: 10857
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...