Search found 169 matches

by IcarusLives
14 Apr 2021 11:41
Forum: DOS Batch Forum
Topic: Clobbered cmd.exe!
Replies: 7
Views: 10967

Re: Clobbered cmd.exe!

Compo wrote:
12 Apr 2021 19:05
Have you tries the basics, as administrator, before resorting to a System Restore?

Code: Select all

sfc.exe /ScanNow

Code: Select all

Dism.exe /Online /Cleanup-Image /CheckHealth

Code: Select all

Dism.exe /Online /Cleanup-Image /ScanHealth

Code: Select all

Dism.exe /Online /Cleanup-Image /RestoreHealth
He's unable to access cmd.exe
by IcarusLives
11 Dec 2020 20:58
Forum: DOS Batch Forum
Topic: Display .BMP files in RGB colors - WIN 10 ONLY
Replies: 5
Views: 7177

Re: Display .BMP files in RGB colors - WIN 10 ONLY

Stunning work! This is beautiful. Thank you for mentioning my thread as well! I will be inspecting your code shortly.
by IcarusLives
03 Nov 2020 22:33
Forum: DOS Batch Forum
Topic: Some holiday animations (from Vt100.net)
Replies: 6
Views: 5842

Re: Some holiday animations (from Vt100.net)

I have a question for @penpen!

Why add 0 to this? :)

Code: Select all

set /a "delay=1000-%~2+0"
I was inspecting your code, but I am curious if I am missing something here?
by IcarusLives
07 Aug 2020 12:14
Forum: DOS Batch Forum
Topic: Bézier curve animation symmetric fantasy art
Replies: 18
Views: 30597

Re: Bézier curve animation symmetric fantasy art

Edited: Fixed to be true to OP I created a windows 10 VT100 version of the non-symmetrical version Sorry for digging this up, but I hope you enjoy! https://gyazo.com/fd5d6d4590c2cc2306b27df4299e8569.gif @echo off & setlocal enabledelayedexpansion mode 100,100 ( for /f %%a in ('echo prompt $E^| cmd')...
by IcarusLives
23 Jul 2020 13:36
Forum: DOS Batch Forum
Topic: Problem with ELSE.
Replies: 2
Views: 3357

Re: Problem with ELSE.

Perhaps your problem is this line?

Code: Select all

chkdsk %Drive%: /F
It should be

Code: Select all

chkdsk %Drive%:\ /F
by IcarusLives
05 Jun 2020 12:12
Forum: DOS Batch Forum
Topic: Batch wont display anything on my new PC???
Replies: 5
Views: 6302

Re: Batch wont display anything on my new PC???

ShadowThief wrote:
05 Jun 2020 10:43
If it's just a black screen, blindly type color 07 and see if that fixes things
LOL Wow thank you so much. I feel like such an idiot. Yes this worked. Thank you so much!
by IcarusLives
05 Jun 2020 08:25
Forum: DOS Batch Forum
Topic: Batch wont display anything on my new PC???
Replies: 5
Views: 6302

Batch wont display anything on my new PC???

I have no idea why, but after I got my new PC, batch wont display anything for me? I've tried everything from messing with the fonts, and properties. The only thing i can thing is possibly my "nonactivated" version of win 10. Any ideas? INFO.BAT version 1.5 ------------------------------------------...
by IcarusLives
16 Aug 2019 12:51
Forum: DOS Batch Forum
Topic: Call bug using silent operator @
Replies: 2
Views: 6234

Re: Call bug using silent operator @

While this is a very interesting find, it is SUBSTANTIALLY slower than using REM @echo off echo %time% for /l %%a in (1,1,1000000) do rem echo %time% echo. echo %time% for /l %%a in (1,1,1000000) do call @ this is a comment echo %time% pause 14:49:04.92 14:49:06.18 14:49:06.18 14:50:37.22 Press any ...
by IcarusLives
12 Aug 2019 08:50
Forum: DOS Batch Forum
Topic: Button functions via VT100, and Mouse.exe
Replies: 3
Views: 23489

Button functions via VT100, and Mouse.exe

Hello! I have been working on some functions that allow you to click the console with a 3rd party called Mouse.exe MOUSE.EXE -> http://www.mediafire.com/file/96p9tqu4d500fli/bin.zip https://gyazo.com/c29b59950891ce7924518676342ed030.gif I thought this would be a fun project to limit user input. Over...
by IcarusLives
11 Aug 2019 13:08
Forum: DOS Batch Forum
Topic: Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences
Replies: 2
Views: 7022

Re: Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences

Absolutely beautiful execution! I love graphical scripts like this, and you're consistent! Very well done! Excellent use of math. Bravo, sir! :D :D :D
by IcarusLives
17 Jun 2019 13:37
Forum: DOS Batch Forum
Topic: Animated loading screen
Replies: 8
Views: 19311

Re: Animated loading screen

Generally whatever it is that is loading, you can prompt it within the code to do so. For example... @echo off for /l %%a in (1,1,100) do ( cls echo Currently working: %%a... ) echo done pause This "loading" would be quite fast though. If you're looking for something "PURELY" aesthetic, then that is...
by IcarusLives
29 May 2019 22:02
Forum: DOS Batch Forum
Topic: Text Files - Coloured Characters
Replies: 6
Views: 7506

Re: Text Files - Coloured Characters

-snip- I very much appreciate you using MY code as an example! How exciting :) OP, Here are some examples of coloring with VT100. Mind you, this is a WIN10 feature. The method below is using string substitution. You will notice VT100 colors very quickly. @echo off & setlocal enableDelayedExpansion ...
by IcarusLives
11 May 2019 10:11
Forum: DOS Batch Forum
Topic: Microsoft New Terminal - Thoughts???
Replies: 1
Views: 3503

Microsoft New Terminal - Thoughts???

https://youtu.be/KMudkRcwjCw

Above is the link to the video!

I'm curious about thoughts on the new terminal? I still have so many questions. It is said to release "winter" 2019
by IcarusLives
07 May 2019 22:07
Forum: DOS Batch Forum
Topic: Fire-Colored particle system
Replies: 6
Views: 6600

Fire-Colored particle system

Hello everyone, Here is a particle system! they change colors as they rise. Not much to be impressed about, just a fun visual. Enjoy! https://gyazo.com/eb85e26ab0ea2079abdde05b67600143.gif @echo off & setlocal enableDelayedExpansion ( for /f %%a in ('echo prompt $E^| cmd') do set "esc=%%a" ) & echo ...
by IcarusLives
07 May 2019 22:04
Forum: DOS Batch Forum
Topic: 3D points to 2D projection
Replies: 0
Views: 19260

3D points to 2D projection

Hello! I have been experimenting with 3D points, and I am seeking further knowledge! If anyone can lead me to some valuable threads or sites I would very much appreciate it! Thanks in advanced :) https://gyazo.com/840f9d75eff0f545aea7b69b9b5e0b15.gif @echo off & setlocal enableDelayedExpansion call ...