batch file - Delphijustin industries https://delphijustin.biz Making use out of things! Wed, 13 Oct 2021 23:35:14 +0000 en-US hourly 1 https://wordpress.org/?v=6.2.9 https://delphijustin.biz/wp-content/uploads/2025/10/cropped-dongwa-192-32x32.png batch file - Delphijustin industries https://delphijustin.biz 32 32 Offline, online and reconnect tool https://delphijustin.biz/offline-online-and-reconnect-tool/?utm_source=rss&utm_medium=rss&utm_campaign=offline-online-and-reconnect-tool https://delphijustin.biz/offline-online-and-reconnect-tool/#respond Fri, 10 Sep 2021 00:50:22 +0000 https://delphijustin.biz/?p=3867 This tool checks the internet connection to see what Internet Provider your using. Good for VPNs and getting your server back online. You can use reconnect.bat file to help fix network problems or alert you when you lost connection or your ISP Name has changed. To make your batch detect first open your command prompt …

The post Offline, online and reconnect tool first appeared on Delphijustin industries.

]]>
This tool checks the internet connection to see what Internet Provider your using. Good for VPNs and getting your server back online. You can use reconnect.bat file to help fix network problems or alert you when you lost connection or your ISP Name has changed. To make your batch detect first open your command prompt and find the folder where you downloaded reconnect.exe then type the following:

reconnect.exe /info

It will then give you the set of parameters that will be passed to the batch file for that connection. With that being known you can open the batch file up in Notepad and follow the instructions there. Although ip-api.com limits the number of request to 45 per minute, it is still better than the older ones in the past.

All programs are virus free. Some antivirus software might say its "suspicious" or a "Potentionaly Unwanted Program". Some of them rate them on what there code looks like no matter if theres a definition in the virus database. If any of them are detected any Antivirus I will zip the software with the password "justin" j is lowercase

The post Offline, online and reconnect tool first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/offline-online-and-reconnect-tool/feed/ 0
How to make the computer talk from any batch file https://delphijustin.biz/how-to-make-the-computer-talk-from-any-batch-file/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-make-the-computer-talk-from-any-batch-file https://delphijustin.biz/how-to-make-the-computer-talk-from-any-batch-file/#comments Sun, 05 Sep 2021 23:23:56 +0000 https://delphijustin.biz/?p=3850 It is possible to make the computer talk by a batch file or any windows program. All is needed is a tiny VBScript file that use Microsoft Speech API OLE Object. Also all sentences passed to the command must be surrounded with quotes. Otherwise it will not sound the best. You may download, copy, modify …

The post How to make the computer talk from any batch file first appeared on Delphijustin industries.

]]>
It is possible to make the computer talk by a batch file or any windows program. All is needed is a tiny VBScript file that use Microsoft Speech API OLE Object. Also all sentences passed to the command must be surrounded with quotes. Otherwise it will not sound the best.

You may download, copy, modify the VBScript file.

' delphijustin Say v1.0
' Website https://delphijustin.biz
Set sentences = Wscript.Arguments
if sentences.Count=1 then
if sentences(0)="/?" then
Wscript.Echo "Usage: "&Wscript.ScriptName&" <messages>"
Wscript.Quit 0
end if
end if
set sapi = CreateObject("SAPI.SpVoice")
For Each sentence In sentences
  sapi.Speak sentence, 0
Next
if sentences.Count=0 then
sapi.Speak "I don't know what to say.", 0
end if

The post How to make the computer talk from any batch file first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/how-to-make-the-computer-talk-from-any-batch-file/feed/ 4