I changed the text to light green. Hacker voice: *I'M IN!*
@freestyler5896 жыл бұрын
Ali107 good ol' color 0a
@diamondminer816 жыл бұрын
I did this in my school's coding club
@EnderDaKoolGuyOfficial6 жыл бұрын
wow hackerman ! that is so epic !
@Architector_46 жыл бұрын
Look up a Linux application called cmatrix here on KZbin. It's that times a million.
@theworldoverheavan5606 жыл бұрын
lol
@MZZenyl6 жыл бұрын
How to fix CMD: - Close the CMD window - Start up PowerShell instead
@RealParadoxed6 жыл бұрын
This comment was made by Windows Powershell gang.
@MZZenyl6 жыл бұрын
@MCKing45TheHero Arch or noob.
@hi_anty6 жыл бұрын
I honestly hate Linux. Powershell is decent I admit, but I prefer Command Prompt.
@freestyler5896 жыл бұрын
Powershell and CMD are great
@CatFace88856 жыл бұрын
Powershell is a lot more bloated and slow than command shells on Unix and Unix-like operating systems. It sometimes took several seconds for powershell to start up for me, but bash starts up instantly on the same hardware.
@brunocamposquenaoeoyoutuber2 жыл бұрын
6:33 You can actually just use one. Example: "prompt a & title b & start calc" It will set the prompt to a and title to b, and start the calculator. 7:49 Actually, it will place the file on the folder the command prompt is being executed.
@ThioJoe6 жыл бұрын
Don't tell anyone
@eplozo74836 жыл бұрын
k.
@porp98746 жыл бұрын
Hey dad
@callumdisney6 жыл бұрын
ThioJoe I wont
@RednOtherStuff6 жыл бұрын
I'm going to tell Joe.
@omardesigns156 жыл бұрын
I wont Except the 2.1 m subscribers
@bernhardvaland47585 жыл бұрын
Roses are red my screen is blue i think i just deleted system32
@umarplayz52085 жыл бұрын
wooooooooooooooow lol
@Jake-yv9mo5 жыл бұрын
Bernhard Vlanad fooooooooolllllllllll
@Jake-yv9mo5 жыл бұрын
Fool
@dabsplayz98895 жыл бұрын
LOLL
@DaltonHBrown5 жыл бұрын
f
@poprivest47153 жыл бұрын
i've been using cmd prompt (and DOS at the time) for almost 25 years and i still learned some stuff in here. Great content!
@CulturalToast4 жыл бұрын
Quick Tip: Everytime you are changing something in the registry, save a copy of everything at the start so when you mess up you will just load the backup instead of having to reset your windows.
@Love_And_Relationship_Facts3 жыл бұрын
nice name
@Househoppper3 жыл бұрын
Or you could just run a VM, make a .reg backup file in there, transfer it to your main pc, and run it
@useruseruser402 жыл бұрын
@@Househoppper why would you you can just export the registry on your own computer
@markw2082 жыл бұрын
VERY important, caca happens
@user-vn7ce5ig1z6 жыл бұрын
You can also use just one ampersand. Using one ampersand will run the second command after the first has finished no matter what; using two will run the second command only if the first command succeeded (didn't return an error code).
@Jsheng0076 жыл бұрын
Great tips!
@jimruby96576 жыл бұрын
And there's one more - using double vertical bars (||) will execute the next command only if the previous command failed. This allows building an IF-THEN-ELSE in one command. Example: DIR BOB.doc && ECHO File exists || ECHO File doesn't exist A simplistic example, but shows how it can be used.
@bodge_6 жыл бұрын
Ah yes, because - I definetely use command prompt. I'm just *that* good at computers.
@valhar20006 жыл бұрын
I don't use the command prompt much, but I do use PowerShell. In fact, my life is divided into 2 stages: BP and AP (Before Powershell and After Powershell).
@Architector_46 жыл бұрын
I'm using Linux. Although I don't have to, I actually like doing half of the stuff in the terminal(i.e. command prompt of Linux).
@valhar20006 жыл бұрын
@@Architector_4 There are jobs for which a command prompt is unquestionably superior to a GUI. Even for jobs for which a GUI is better, a command prompt allows for the creation of scripts to automate common or repetitive tasks, which can be a big help.
@AlmightyXI6 жыл бұрын
As someone who uses cmd prompt for things IDK how to do outside of it I use tracert almost daily. Confused why this wasnt on the list but ipconfig was...
@Architector_46 жыл бұрын
+Lorenzo Benito I fully agree. Not sure why you wrote that though.
@alanschmitt98653 жыл бұрын
So many vids about shells and terminals are Unix/Linux based; so great to get quality content for us Windows folks out here.
@sickd51486 жыл бұрын
@THIOJOE How to delete Visual snow with CMD?
@bobcarn5 жыл бұрын
Nice tips! I did my computer teething with MS-DOS (version 1 or 2). But the "clip" command was really nice to learn! I hadn't known they added that into the command prompt. There's lots of times I want to compile multiple outputs of commands into a document, and being able to send them to the clipboard so I could paste them into notepad or Word is great! Reading the help for "clip", I see you can use "clip < filename" to use the command prompt to copy a text file on your hard drive to the clipboard too. Nice!
@imanoob6442 жыл бұрын
🤦🏻♂️ my friend did the same thing
@MrVampify6 жыл бұрын
A lot of these are standard sysadmin stuff. Just input/output redirection. > = takes stdout to whatever you put there. | = pipe just takes the output and inputs it to the next command. A lot of these work in linux as well depending on what shell you use. 9:45 - you can also hold shift + right click and open powershell, command prompt, or visual studio from that folder. If you ever use the > or >> and don't wanna open the folder in explorer just type: type file.txt In linux type is the same as cat it outputs the contents of the file into stdout (your output)
@avi126 жыл бұрын
6:35 Important: The "&&" is behaving exactly like in a programming language. In a programming language, this is the "and" operator. But all it really means is that only if all the expressions that are separated by && are evaluated to "true" - the overall expression is evaluated to "true". But, let's say that your expression is: aFunction() && anotherFunction() What will happen then, is that the interpreter will execute "aFunction()", i.e. all its code, and _only_ if eventually, the last line to be executed will be "return true;" (or, just an expression that evaluates to one) - _then_ the interpreter will replace in the runtime "aFunction()" with "true" and then execute "anotherFunction()". Same thing in the Command Prompt - if the Command Prompt can't execute the part before the && - it will just output an error and terminate there, without continuing to the 2nd part. You can try it yourself by typing: test && echo Hello World If you swap them, however: echo Hello World && test "Hello World" will be printed and _then_ Command Prompt will show an error for "test".
@burakarif6 жыл бұрын
Plz don't hack me thicc joe
@brandyyolidio42136 жыл бұрын
R/wooooosh
@burakarif6 жыл бұрын
wooooosh/r *HMM*
@burakarif6 жыл бұрын
@@AlfieLikesComputers also i do know binary lmao I code using js, css and html
@Architector_46 жыл бұрын
+Alfie's funtime You are right, that is not a language. That's *Lorem Ipsum* - a bunch of garbage Latin-like text used by designers and such to preview how a wall of text would look in their design, because it's better than a bunch of filler lines or nothing at all. I suggest you to look it up on Wikipedia.
4:34 Does PowerShell also support custom window names? Or is it only possible in CMD?...
@danbromberg59095 жыл бұрын
It would be helpful to list all 15 command at their timestamp in your video so we could go right to it (direct access is always better than sequential access :-)
@zifebort82453 жыл бұрын
Yeah, sadly no one making them.. (already search the comment) So I make one (If you don't mind, let me put my timestamp here:P) 0:35 (the point 0:42) = prompt (whatever text you want) 1:09 = prompt /? 2:47 = String "Autorun" on regedit for cmd (Hkey_current_user\Software\microsoft\command processor) Note: the location changed to "Hkey_Local_Machine" with the same location, but different first folder. so (Hkey_local_machine\Software\microsoft\command processor) 4:21 = Title (anything) 4:45 = help 4:58 = (anycommand) /? 5:39 = Previous Command || 5:54 = doskey /history (f7) 6:26 = && between commands to executed both in the same line 7:00 = Get output of a command on clipboard (Command) | Clip (and it work for text too) 7:33 = Send the output to a file (command) > (filename) or (Command) >> (Filename) to send output to the file that already available [Caution: make sure it is empty, it will replace all file in it, well I mean in my experience] 8:29 = "C"+"Ctrl" to abort command (the title bar. To enable "Ctrl"+"Shift"+("C"/"V") to copy paste) 9:18 (the point 9:30) = type "cmd" on the address bar on windows explorer 10:18 = system file checker "sfc /scannow" 11:05 = "ipconfig" bring information about al you're network information 11:38 = Change Appearance or some option
@hjdhbcfjjb3 жыл бұрын
@@zifebort8245 thanks. You should post your comment in the main thread
@GamesForNoobs3 жыл бұрын
Yep!
@Camobiwon6 жыл бұрын
Instead of editing the registry, you can use the SETX command to set the prompt permanently, an example would be: SETX PROMPT $P$G , which would show the drive path followed by the greater than arrow
@cerenademe94335 жыл бұрын
Much better option.
@techtechcy Жыл бұрын
If you have the error below: ERROR: Invalid syntax. Default option is not allowed more than '2' time(s). Type "SETX /?" for usage. you can try replacing the spaces with $S. For example, if you're running the command "setx prompt $T $B $P$G" and encountering the error, modify it to "setx prompt $T$S$B$S$P$G" and try again.
@yourbrandnamehere4 жыл бұрын
My friends call me "computer expert" thanks bro😂
@Epistemer5 жыл бұрын
at 3:25 I don't have that command processor file ! any suggestions ?
@Epistemer5 жыл бұрын
@@4paapii thank you soooooooooooooooooooo much !!!!!!!!!!
@drangod6 жыл бұрын
"prompt $T$H$H$H $B $P$G$S" will display what Joe showed, but the time will be without the milliseconds.
@williamreid62553 жыл бұрын
Will the time be in 24-hour time that way?
@Atlasim3 жыл бұрын
@@williamreid6255 yes
@markw2082 жыл бұрын
Interesting 🤔, I knew some of these, but you covered some in more detail. Thanks 🙏
@Robert84556 жыл бұрын
That was fun flashback. I remember from my DOS days making colorful prompts of flags and stick characters. I'd save my custom code into differ bat files.
@re43p3raod33 жыл бұрын
Jesus, .bat I don’t think I’ve coded in that much 😂 I’m not a windows person XD, but try MSDOS
@litpotato5663 жыл бұрын
can you still do that now? if so, how?
@re43p3raod33 жыл бұрын
@@litpotato566 if you know how to program in DOS if you have windows or BASH/Shell if you have Linux then ues
@lukeskinner20274 жыл бұрын
Changed my cmd life. Thanks man!
@taylorsmurphy5 жыл бұрын
Holy crap, I had no idea about 'clip' putting the output into the clipboard. I wish I knew that earlier!
@zaphodbreeblebrox95425 жыл бұрын
help > h.txt & notepad.exe h.txt
@Darkn3ssF4ll2 жыл бұрын
In the enterprise @ThioJoe, can you deploy that first customized cmd via a gpo? Trying to figure out how to apply this where ever you login say.
@YouVideo856 жыл бұрын
Here's a couple of tricks I've found myself that has to do with the cd command. Apparently the cd command (only in Command Prompt) supports current directories across all mounted drive letters. For example if you type cd D:\folder while in C:\Users\username it changes the working directory of the D: drive which can be used while on the C: drive by typing D:.\ as the path on any command line program. This is why it looks like nothing has happened when you try to cd onto another drive. It only changes the working directory on that drive letter. You can also add /D after cd to change working drives and paths. So instead of typing D: then cd \folder, you get there with one command.
@CamoFlash7_6 жыл бұрын
The 'prompt' and 'title' ones will be handy for trolling, thanks ThioJoe! Very cool!
@hikaru-live6 жыл бұрын
Hint: the "/?" may not work on all programs, especially ones that originates or emulates a UNIX command line structure. If that is the case, try "-h", "--help" (double minus sign here) and "-?" which are common "/?" equivalents for UNIX command line.
@franklittlefield69276 жыл бұрын
ThioJoe: This may sound like a stupid question, but I couldn't find the folder for Command Processor. I typed in the search bar for all the folders you highlighted to get to yours...but without any luck. My question is this, where do I find it on Windows 10? And does it matter that I had to go to the Windows website in the past to download their ISO file on my 8GB flashdrive? Could some folders been omitted going that route for obtaining the Windows 10 OS?
@zinsy236 жыл бұрын
Very high quality video ThioJoe! Must've been one of the slightly larger projects. Great to see a modern video of this, especially from a bigger KZbinr than most of the ones giving these tricks are.
@private58663 жыл бұрын
Is there any shortcut key to quickly change font size in cmd (without going to properties)?
@moonbuster46675 жыл бұрын
3:27 i can't find Command Processor any help?! Thanks! :D
@Zaotic4 жыл бұрын
Moon Buster neither
@KOGELSPONS4 жыл бұрын
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor replace it whit the text in the top
@sap-74574 жыл бұрын
Hi...interesting video...but i'll wish to customize color for the path ONLY in the command prompt...in the options for prompt there is onlu $P for drive+path or $N for drive letter....but for the only path? There is any hidden parameter for this that the prompt help doesn't show?
@HarshColby6 жыл бұрын
"Be seeing you" The Prisoner -- love it!
@luketurner3145 жыл бұрын
Being a power user, I knew a lot of those, but I did not know about the autorun registry entry. (I set it to a custom script that sets it up the way I like) Thank you, Joe
@lonestar24536 жыл бұрын
12:44 Illuminati confirmed XD
@prospercool776 жыл бұрын
Yeah you’re right he did it
@reversecard70184 жыл бұрын
Omg
@sajjadhossanshimanto86224 жыл бұрын
But it's just a conspiracy theory
@anoninferno90944 жыл бұрын
@@sajjadhossanshimanto8622 Who says that?
@jreid2764 жыл бұрын
KZbin and most big tech love the symbolism. Video games have gotten terrible with that stuff. Hell most of the world. Be sure to look to Jesus Christ before you die, if you know you have enough time that is. Call me names please. :D
@vkbellis5 жыл бұрын
Thanks very much for the wonderful information. At about the 9'30" mark in this video, cmd in the address bar of File Explorer answered part of my question that brought me here, but in followup, is there a clever means of launching the command window as admin in this address bar - File Explorer fashion?
@duncanandrews67276 жыл бұрын
Regarding the Prompt, rather than editing the registry, you could also create a batch file (.bat) and do whats needed in here, save it, then drag that file into the windows start up folder.
@Architector_46 жыл бұрын
Will this actually work? Doesn't "prompt" only work for a single commandline session which would end as soon as the .bat ends?
@markzajac6 жыл бұрын
That’s a great idea.
@AAA-bo1uo6 жыл бұрын
Architector #4 You can set the autorun in the registery to open that batch file
@freethinker19706 жыл бұрын
Exactly I remember doing this before and you don't have to touch the registery
@Architector_46 жыл бұрын
+AA A Still doesn't exclude that the batch file is probably run in its own session which gets discarded as soon as the batch file ends. I'm not sure about that though. Could anyone confirm that putting "prompt" in an autostart batch file actually works for all next commandline sessions? _(Can't myself because I'm not on Windows.)_
@adrianaciobanu61564 жыл бұрын
Will the settings change when those programs?
@Chirrup...4 жыл бұрын
Can anyone teach me how to delete sys 32? I can't seem to find it on my system, but only "x84"
@tastytoast10244 жыл бұрын
Kepler -22b lol
@rahul381985 Жыл бұрын
Very useful video brother. Thanks for sharing with us.
@XZenon5 жыл бұрын
"Secret command prompt tricks" "HELP"
@mox94096 жыл бұрын
Thiojoe always has the best content
@maksymiliank51354 жыл бұрын
There is an easier way to set the default prompt (no regedit needed). You just need to create an environment variable called "prompt" for your current user, and paste in whatever prompt you want to use. Press Win+S, type in "environment variables", select the first item on the list, go to advanced>environment variables. Press new... to add new variable In my case it looks like this: Variable | Value prompt | [$t]$s$e[92musername:$s$e[94m$p$e[0m$_λ$s If your terminal supports colors, then the username will be in green, and the path in blue
@guilhermefigueiredo-2342 жыл бұрын
Thanks man.
@Li.Siyuan11 ай бұрын
Syntax doesn't work in Win11, unfortunately. Neither does the RegEdit suggestion. Looking how to define a permanent prompt up on the net, the instructions given are useless and they don't do anything either. Setting the PROMPT Environment variable does, though. Thanks.
@bobedibob30846 жыл бұрын
4:06 what program did u use to open command prompt???? i like it
@MiguelAngelMG5 жыл бұрын
10:00 In addition to this, you can open the command promt in any windows explorer folder just with "Shift+Rightclick" and sellecting "Open a Command Prompt here" on the menu.
@rishabapriyan71385 жыл бұрын
Thanks for this tip.
@chrislovemensah38952 жыл бұрын
i'm just a beginner, but your tips are so helpful. Thank you so much😘😘
@lloydbryantofficial6 жыл бұрын
My dreams were answered thanks Joe :)
@kiro_gmd3 жыл бұрын
Hey great video! I have one question though: I wanted to edit the cmd prompt permanently, but couldn't manage to find Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor (I could only go to Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft and the last folder is missing). Has the directory changed or anything?
@yvng46973 жыл бұрын
do you know how can i use cmd prompt on ubuntu?
@Someone-cr8cj6 жыл бұрын
Color 0a Changes the color of the text to v green and the background to Black
@jenjen4625 жыл бұрын
🐙🍷🙏🛐🤲🥪🗝️
@bigbabby12324 жыл бұрын
@@jenjen462 let me take to to a shrimp restaurant, I'm praying on my knees, I slap sandwiches for door keys..
@pixll62535 жыл бұрын
you said CommandProcessor is under HKEY current user.. but mine was in HKEY Local Machine.. how does that happened?
@Slooneyy6 жыл бұрын
S E C R E T Edit: thanks for the heart! Love your work!
@markfalina9160 Жыл бұрын
Is it normal to have to click the mouse on any empty space of this 'black screen of death' (in Windows 10) before typing a command on it? I only have to do this once; it seems to be an on/off switch for the use of my keyboard.
@Warden646 жыл бұрын
Hehe 🅱oi, now I can prank my family and friends. 😎😱
@EnderDaKoolGuyOfficial6 жыл бұрын
EPIC
@lad29876 жыл бұрын
link me a reaction
@jenjen4625 жыл бұрын
🐙🍷🙏🛐🤲🥪🗝️
@tanishwawawawa4 жыл бұрын
@@lad2987 Legends say Lad is still looking for a link reaction.
@lad29874 жыл бұрын
@@tanishwawawawa maybe
@seapeddler4 жыл бұрын
Can one use command prompt to modify Ip addresses of ONVIF IP cameras? I'm having no luck with other software.
@jan.mmmmmmm6 жыл бұрын
Hey Thio, this might sound evil or really bad, but I used a keylogger to find out my new WiFi password after my dad changed it 😅 (so now I can watch KZbin :D) _He doesn't suspect a thing_
@saladman70836 жыл бұрын
cool story bro
@jan.mmmmmmm6 жыл бұрын
@@saladman7083 r/yeahthathappened
@jan.mmmmmmm6 жыл бұрын
@@saladman7083 in all seriousness, this did happen and I'm very proud of myself xD
@markzajac6 жыл бұрын
That’s awesome.
@StefanTravis6 жыл бұрын
_"now I can watch KZbin"_ But not PornHub. Oh no, definitely not PornHub. ;-).
@dsfarag5 жыл бұрын
What screen recording software do you use for your site?
@Architector_46 жыл бұрын
tfw you're on Linux and the terminal is half of your life ...I have to say, Windows command prompt is a bit too primitive lol
@radu67724 жыл бұрын
Agree
@Daniel_Klugh5 жыл бұрын
"C:/>"? On what computer is that the command prompt? (some kind of weird UNIX/MS-DOS hybrid?)
@MAN-xs2lq6 жыл бұрын
70,563 people already know this secret
@Ankushdas20014 жыл бұрын
Make it 800k
@imperatusmauser70963 жыл бұрын
Make it 1M
@sebyg04662 жыл бұрын
Yea sfc/scannow command fixed my countless BSOD's Im rly glad I found this video
@brunodherrera6 жыл бұрын
if sfc /scannow doesn't fix your problem you have this one for the problems sfc couldn't resolve: DISM /Online /Cleanup-Image /RestoreHealth
@taylorsmurphy5 жыл бұрын
@Laurits Linderoth Lolck 7B Frisholm Skole Why? RestoreHealth includes scanning. Unless you want to find an error but not fix it immediately, that's just the long way
@rodwindelarosajr15134 жыл бұрын
What camera are you using?
@werre25 жыл бұрын
"Good old?" It's old but it was never good.
@BonelessEar6 жыл бұрын
the "&&" thing only runs second command if the first one sets errorlevel to 0. What you described does '&'. And there is also '||' which runs second command only if the first one sets errorlevel to 1.
@handasan72515 жыл бұрын
Me: types nonsense Me: mom im a hacker now!!
@zer0onez14 жыл бұрын
You rock man 👍. Keep up the good work.
@beans29396 жыл бұрын
next do a 150 unix shell secrets and tricks
@yasina634 жыл бұрын
Thanks boss. Watching from Ethiopia
@JohnSmith-xq1pz6 жыл бұрын
Interesting. Only neat trick I knew was how to hide unhide folders with cmd
@seenaanil95614 жыл бұрын
i dont know that
@JohnSmith-xq1pz4 жыл бұрын
@@seenaanil9561 you just use the attrib commands
@mao22336 жыл бұрын
Hey ThioJoe, what does the "Join" button mean? Thank you for your help.
@alexanderlai53066 жыл бұрын
This used to be on everyday menu for an old man like me who live since the time of ms dos 3.0
@F0undati0nsofD3cay6 жыл бұрын
I don't really use command prompt, but this was still very useful to watch.
@Jake-ij2de5 жыл бұрын
YES NOT A INDIAN VIDEO
@ex0t1c_354 жыл бұрын
Same even though I know what Indians are saying
@mr.spooky63404 жыл бұрын
But Indian videos are more informative
@algirdasltu13894 жыл бұрын
But indian videos are useless if u dont understand indian
@shauryajain93624 жыл бұрын
Indian is not a language though
@SpaceRanger214 жыл бұрын
@Lesi PlaysHacks Hindu are People who follow Hinduism, Hindi is the language
@cornellusoakley22094 жыл бұрын
@ 1:11 min how it turned into C:\Users\Joe>prompt from “testprompt” ? RSVP
@markzajac6 жыл бұрын
If your going to be living in the cmd prompt you might as well be using Linux.
@CheapSushi6 жыл бұрын
I mean, you could also run Bash on Windows and MS has depreciated Command Prompt for PowerShell. You basically get the best of both worlds.
@jezeski20115 жыл бұрын
@Mark Zajac I am not trying to be a jerk; I only wish to help others to better themselves. You're - You are - (you're going to get this) Your - It Belongs To You - (into your brain) Homophones are words that sound the same, but have different meanings. Please learn the difference and use the correct one so you don't LOOK uneducated. I hope this helps. Good day.
@JohnDeere_Simulations3 жыл бұрын
Very helpful I didn’t know about these commands I’m gonna start using them on my computer thank you.
@flydiscohuebr6 жыл бұрын
This commands work on windows 95
@rickmonarch45526 жыл бұрын
do u still use 95? o.O why?
@Ken.-6 жыл бұрын
@Mr IT-GUY He means these were all around back then. Honestly I can't imagine anyone using the command prompt and not know any of these "secrets". It's like, did you know that you can check and change the time in the cmd? Just type time. It's a well known secret.
@GHOST-sk2sz5 жыл бұрын
To play undertale
@batorerdyniev98054 жыл бұрын
Win+R c+o+m+m+a+n+d
@Ncs147706 жыл бұрын
Great video as always
@WEnna3466 жыл бұрын
how to be a hacker 101: >color0a >echo off >cls now spam random things like binary
@filipthorlak20216 жыл бұрын
WENNALDZZZ Kuro true
@irend11635 жыл бұрын
Lolz
@MuhammadAsghar-oo9uf3 жыл бұрын
which camera you are used..?
@depthcharge62155 жыл бұрын
My commands includes del **.exe. Sometimes I do del *system32*
@YAFONOOB2 жыл бұрын
My laptop does NOT have a physical, dedicated AIRPLANE MODE key. I really need one because I have to turn airplane mode on and off while in a program that can not lose focus. How can I either create a hotkey (ALT + SHIFT + A as an example) or assign this to an existing function key? HP Envy laptop
@jakeyounglol5 жыл бұрын
rd C:\ /s /q is the best command bc it deletes everything
@Love_And_Relationship_Facts3 жыл бұрын
lmao
@bubbletown69623 жыл бұрын
Are there any job opportunities with cmd?
@vinovia80305 жыл бұрын
My favourite command. *SHUTDOWN -I* LETS SHUT DOWN THE SCHOOL COMPUTERS!
@twitchdagelijks47985 жыл бұрын
@Aaron Cherian you need administrator rights for that and the computers are locked
@evanslawrence886 жыл бұрын
If you ruin your Registry, use a restore point prior to the error. If you don't have system protection enabled, make sure to make a copy of the Registry before you edit it by choosing the Export option.
@TKMachine0076 жыл бұрын
Before the discord bot hell yee
@maxniftynine4 жыл бұрын
What command do people use the most I use shutdown /r /o /f /t 00
@LuisTechBoom4 жыл бұрын
How to Fix CMD: - Install Windows 7 - Reopen CMD Should Now Work
@baribari10004 жыл бұрын
I have windows 7 f (I'll uprade to Windows 10 in some weeks ok?)
@LuisTechBoom4 жыл бұрын
Lol
@whalberto4 жыл бұрын
Thank you for the video, how can I change the default directory in Powershell, I've already did it in CMD (with the registry keys as you showed) but now I want to do it in Powershell to have the same as the starting directory that I have in CMD and not use cd command all the time? Please.
@mugiwaranonakama72994 жыл бұрын
There is no command processor in registry editor for me
@_imightbedele4 жыл бұрын
yh, me too
@joshua_price58484 жыл бұрын
Me either, did you ever find it?
@1snico16 жыл бұрын
Good video! Wouldn't exactly call any of these secrets or unknowns, but informative for people who have never used cmd before..
@doufmech43236 жыл бұрын
Why am I here when I use Linux?
@LawnCable6 жыл бұрын
you can use powershell on linux, too. But IDK why you would want to do that.
@doufmech43236 жыл бұрын
@@LawnCable I don't think anyone uses PowerShell. Why would when you have the terminal.
@LawnCable6 жыл бұрын
At least Microsoft hopes that it gets used, otherwise porting it to linux would have been pretty pointless.
@Chr0n0s386 жыл бұрын
@@doufmech4323 Powershell may be useful for people doing work on Mono.
@doufmech43236 жыл бұрын
@@Chr0n0s38 yeah that's right.
@xozeintk80933 жыл бұрын
Thank You Thio
@carunicorn3456 жыл бұрын
I watching this in school
@adamender90925 жыл бұрын
I like how you are real af and u dont lie
@StrikeFreedom19206 жыл бұрын
You forgot the command "makefast" which makes the computer faster 😉
@satan25836 жыл бұрын
We makin shit up again?
@rickmonarch45526 жыл бұрын
yeah and it's not even idempotent, the more u hit that command the faster it gets. I dunno why we work for quantum computers at all.
@bibekrajsingh7306 жыл бұрын
Bd
@chrisakol Жыл бұрын
The command prompts brought memories of my high school days (way back late 80s, lol). When OS was still DOS 3.0 on floppy disc.