Skip to content

Commit

Permalink
Merge pull request #154 from REALSDEALS/REALSDEALS
Browse files Browse the repository at this point in the history
Add: IPCONFIG & TRACERT DESIGNATED
  • Loading branch information
REALSDEALS authored Oct 9, 2023
2 parents 1914951 + 0ccafcc commit 935f0de
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 36 deletions.
6 changes: 6 additions & 0 deletions Documentation/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog.md - pcHealth

## 9-10-2023 - @REALSDEALS

Added some new simple functions to the script.
- TRACERT to user provided URL. (Number 13 in the Tools menu.)
- IPCONFIG to display the IP address of the system. (Number 14 in the Tools menu.)

## 10-07-2023 - @REALSDEALS

Checked the script and reviewed it, it seems to be working fine.
Expand Down
3 changes: 2 additions & 1 deletion Documentation/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For now only the version names will be displayed, in the future there might be e
# Current Version(s)

Full Release - v1.5.9 (Stable)
Beta Release - v1.6.8-beta
Beta Release - v1.6.9-beta
Alpha Release - v0.3.0-alpha (PowerShell)

## Older Releases
Expand All @@ -31,6 +31,7 @@ Here you can see a overview of the older version.

### Beta Release(s)

- Beta Release - v1.6.9-beta
- Beta Release - v1.6.8-beta
- Beta Release - v1.6.7-beta
- Beta Release - v1.6.6-beta
Expand Down
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,19 @@ Otherwise I can keep no promise to that statement.
10. Short ping test. (Do I have internet?)
11. Continues ping test. (Does my internet stop at certain times?)
12. Starts the function 'TRACERT' and traces how many hops your system has to make before establishing an connection with the host. (Google)
13. Fetches updates for system programs, updates them too if needed.
14. Re-enables the drivers, it restarts the audio drivers. (Having issues with sound?)
15. Re-open the battery report. (Can't find my generated report anymore? Try opening it this way)
16. Re-open the CBS.log (DISM log, report from option 4.)
17. Get your Ninite! (Standard program downloader/updater; Chrome, Edge, VLC and 7Zip)
18. Check your Windows License Key.
19. BIOS password recovery.
20. Shutdown, reboot and/or logout from the system.
21. Open the other menu, it's called 'Programs'.
22. Returning to the previous menu, main-menu.
23. Close the script.
13. Starts the function 'TRACERT' and traces how many hops your system has to make before establishing an connection with the host. (URL User Provided)
14. Starts the function 'IPCONFIG' and shows you the IP address of your system.
15. Fetches updates for system programs, updates them too if needed.
16. Re-enables the drivers, it restarts the audio drivers. (Having issues with sound?)
17. Re-open the battery report. (Can't find my generated report anymore? Try opening it this way)
18. Re-open the CBS.log (DISM log, report from option 4.)
19. Get your Ninite! (Standard program downloader/updater; Chrome, Edge, VLC and 7Zip)
20. Check your Windows License Key.
21. BIOS password recovery.
22. Shutdown, reboot and/or logout from the system.
23. Open the other menu, it's called 'Programs'.
24. Returning to the previous menu, main-menu.
25. Close the script.


#### Programs menu:
Expand Down
63 changes: 39 additions & 24 deletions Scripts/CMD/pcHealth.bat
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if '%errorlevel%' NEQ '0' (
:--------------------------------------
:: MainCode
@echo off
title pcHealth - Check your PC's Health! - version 1.6.7-beta
title pcHealth - Check your PC's Health! - version 1.6.9-beta
cd /
color D
cls
Expand All @@ -42,7 +42,7 @@ echo Thanks for downloading and using pcHealth!
echo Please be sure that you are running this Batch file in Administrator mode.
echo.
echo Made by REALSDEALS - Licensed under GNU-3 (You are free to use, but not to change or to remove this line.)
echo You are now using version 1.6.7-beta
echo You are now using version 1.6.9-beta
echo.
echo %DATE%, %TIME%
echo.
Expand Down Expand Up @@ -82,17 +82,18 @@ echo Enter number 10 to start a short ping test.
echo Enter number 11 to start a continues ping test.
echo Enter number 12 to start a trace route to Google.
echo Enter number 13 to start a trace route to a designated place.
echo Enter number 14 to update system programs.
echo Enter number 15 to re-start the audio drivers of your system.
echo Enter number 16 to re-open the generated battery report file.
echo Enter number 17 to re-open the CBS.log (AKA DISM.log)
echo Enter number 18 to get your Ninite! Includes Edge, Chrome, VLC and 7Zip.
echo Enter number 19 to see your systems Windows License key.
echo Enter number 20 BIOS Password Recovery.
echo Enter number 21 to shutdown, reboot or log off from your PC/laptop.
echo Enter number 22 to open the programs menu.
echo Enter number 23 to return to the previous menu.
echo Enter number 24 to close this batch file.
echo Enter number 14 to check your IP adresses.
echo Enter number 15 to update system programs.
echo Enter number 16 to re-start the audio drivers of your system.
echo Enter number 17 to re-open the generated battery report file.
echo Enter number 18 to re-open the CBS.log (AKA DISM.log)
echo Enter number 19 to get your Ninite! Includes Edge, Chrome, VLC and 7Zip.
echo Enter number 20 to see your systems Windows License key.
echo Enter number 21 BIOS Password Recovery.
echo Enter number 22 to shutdown, reboot or log off from your PC/laptop.
echo Enter number 23 to open the programs menu.
echo Enter number 24 to return to the previous menu.
echo Enter number 25 to close this batch file.
echo ...........................................................
echo.

Expand All @@ -110,17 +111,18 @@ IF %B%==10 GOTO SHORTPING
IF %B%==11 GOTO CONTINUESPING
IF %B%==12 GOTO TRACEGOOGLE
IF %B%==13 GOTO TRACEDESIG
IF %B%==14 GOTO SYSUPDATE
IF %B%==15 GOTO AUDIORE
IF %B%==16 GOTO BATOPEN
IF %B%==17 GOTO OPENCBSLOG
IF %B%==18 GOTO NINITE
IF %B%==19 GOTO LICENSE
IF %B%==20 GOTO BIOSPW
IF %B%==21 GOTO RESHUT
IF %B%==22 GOTO PROGRAMS
IF %B%==23 GOTO MENU
IF %B%==24 GOTO CLOSE
IF %B%==14 GOTO IPCONFIG
IF %B%==15 GOTO SYSUPDATE
IF %B%==16 GOTO AUDIORE
IF %B%==17 GOTO BATOPEN
IF %B%==18 GOTO OPENCBSLOG
IF %B%==19 GOTO NINITE
IF %B%==20 GOTO LICENSE
IF %B%==21 GOTO BIOSPW
IF %B%==22 GOTO RESHUT
IF %B%==23 GOTO PROGRAMS
IF %B%==24 GOTO MENU
IF %B%==25 GOTO CLOSE

:PROGRAMS
cls
Expand Down Expand Up @@ -380,6 +382,19 @@ IF %OPEN%==1 (
IF %OPEN%==3 GOTO MENU
IF %OPEN%==4 GOTO CLOSE

:IPCONFIG
cls
color 0A
echo.
ipconfig /all
pause
echo.
SET /P PO=Enter number 1 to return to the previous sub-menu, enter number 2 to return to the main-menu or enter number 3 to exit the script. Enter:
IF %PO%==1 GOTO TOOLS
IF %PO%==2 GOTO MENU
IF %PO%==3 GOTO CLOSE


:EXECLOG
cls
color 0A
Expand Down

0 comments on commit 935f0de

Please sign in to comment.