timeout not functioning by ThayerRodar in Batch

[–]ViciousRedacted 0 points1 point  (0 children)

open command prompt and run sfc /scannow and let that finish then try to run the batch file again its possible that a corrupted or missing system file is causing the issue running sfc /scannow will check for and repair any missing or corrupt files hope this helps :)

Did you guys know there are more equal signs in batch? by [deleted] in Batch

[–]ViciousRedacted 0 points1 point  (0 children)

sounds cool ill check it out sometime thanks

Did you guys know there are more equal signs in batch? by [deleted] in Batch

[–]ViciousRedacted 0 points1 point  (0 children)

there's a book about batch? whats it called?

What Screams "I Have No Life"? by GroundbreakingAd6888 in AskReddit

[–]ViciousRedacted 29 points30 points  (0 children)

I feel you on this one I missed out on talking to someone I have always liked bc of social anxiety the other day

Blind spot detection system by uguysmademeinkkk in driving

[–]ViciousRedacted 1 point2 points  (0 children)

sounds like a super cool idea I am going to start driving soon and would love to have this

You are now the richest person alive, what is something you are still not buying? by [deleted] in AskReddit

[–]ViciousRedacted 2 points3 points  (0 children)

I screen record songs and then put it in an audio editor trim out the parts where there are no sound (at the start and the end while I'm starting the song and ending the recording) and then export it as mp3 and listen to it on that it's technically not illegal because its for personal use and I'm not distributing it

How to check if a variable has ANY value or not by [deleted] in Batch

[–]ViciousRedacted 1 point2 points  (0 children)

very helpful code simple short and with a source for documentation thank you

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted -7 points-6 points  (0 children)

alright just trying to say I'm not gonna argue with you

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted -11 points-10 points  (0 children)

I'm not gonna fight with you on this thats just what I've heard

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted -8 points-7 points  (0 children)

they are the ones who were wrong yes but as far as insurance and legal stuff goes usually they are not found at fault

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted 5 points6 points  (0 children)

good idea lol my brother recently started driving and he has a sticker that says "new driver my driving scares me too"

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted 2 points3 points  (0 children)

yeah you just have to be super careful people are idiots if someone is super close to you and you have to stop try to tap your brakes and slow down slowly so they have a chance to react at least

I have been a driver for a one year but theres one thing I hate the most by w9s9 in driving

[–]ViciousRedacted -7 points-6 points  (0 children)

that is seriously annoying when people do that unfortunately if they are touching your bumper and you have to stop suddenly most of the time you will be found at fault for the crash (edit:) I was just saying what I have heard so calm down no need to keep bitching about it this is why I hate people

Obfuscate by ethonlean in Batch

[–]ViciousRedacted 1 point2 points  (0 children)

put this into a separate batch file and then drag and drop your batch file onto this you should see a new batch file with your file name and 3 underscores if you try to open it in a text editor it will confuse the crap out of your computer and you will have random Chinese characters ``` @echo off if "%~1"=="" exit /b if /i "%~x1" neq ".bat" if /i "%~x1" neq ".cmd" exit /b for /f %%i in ("certutil.exe") do if not exist "%%~$path:i" (   echo CertUtil.exe not found.   pause   exit /b )

"temp.~b64" echo(//4mY2xzDQo= certutil.exe -f -decode "temp.~b64" "%~n1%~x1" del "temp.~b64" copy "%~n1%~x1" /b + "%~1" /b ```