40 Windows Commands you NEED to know (in 10 Minutes)

NetworkChuck
30 Sept 202210:54

Summary

TLDRThis video swiftly covers the top 40 essential Windows command prompt commands in just 10 minutes. It includes IP configuration, DNS troubleshooting, system diagnostics, task management, and network analysis commands. The tutorial also demonstrates how to optimize battery life, manage file associations, and even troubleshoot potential computer 'hauntings.' Additionally, it features commands to improve your system's health and manage network routes. The presenter highlights the importance of security, showcasing BitDefender's capabilities, and wraps up with a neat trick to reboot directly into BIOS. The video is packed with useful tips for both beginners and advanced users.

Takeaways

  • πŸ’» Launch Windows Command Prompt by searching 'cmd' in the start menu or using the Windows Key S, and run it as administrator for full functionality.
  • πŸ” Use 'ipconfig' to view IP address information, and 'ipconfig /all' for more detailed network configuration, including MAC and DNS server addresses.
  • πŸ“‘ To filter information from 'ipconfig /all', pipe the output to 'find' or 'findstr' with the desired keyword to narrow down the results.
  • πŸ”„ Utilize 'ipconfig /release' and 'ipconfig /renew' to change the IP address, with the option to specify an interface to avoid affecting all interfaces.
  • πŸ—Ί Troubleshoot DNS issues using 'ipconfig /displaydns', and copy the output to the clipboard for easier analysis with the 'clip' command.
  • 🚫 Flush DNS cache with 'ipconfig /flushdns' to remove old or stale DNS entries that may cause connectivity issues.
  • πŸ”¬ For advanced DNS troubleshooting, use 'nslookup' to query DNS records and test different DNS servers for more accurate results.
  • 🧹 Clean the command prompt screen with the 'cls' command to declutter the workspace.
  • πŸ› οΈ Check for power or energy issues with 'powercfg /energy' and get a detailed report on battery status with 'powercfg /batteryreport'.
  • πŸ” View file type associations with 'assoc' and change them with the 'ftype' command to customize which programs open specific file types.
  • πŸ›‘ Use 'chkdsk' with the '/f' and '/r' options to check and repair disk errors, potentially fixing performance issues on a 'haunted' computer.

Q & A

  • How do you launch the Windows command prompt as an administrator?

    -You can launch the Windows command prompt as an administrator by either hitting Windows Key S or clicking the start menu icon, searching for 'cmd', right-clicking on 'Command Prompt', and selecting 'Run as administrator'.

  • What command do you use to find your computer's IP address?

    -You use the 'ipconfig' command to find your computer's IP address.

  • How can you get detailed information about your network configuration, including DNS server and MAC address?

    -You can use the 'ipconfig /all' command to get detailed information about your network configuration, including DNS server and MAC address.

  • How can you filter the output of a command to show only specific information, such as DNS server?

    -You can filter the output by using the pipe symbol (|) and 'findstr'. For example, 'ipconfig /all | findstr DNS' will show only the DNS server information.

  • What command would you use to release and renew your IP address?

    -You would use 'ipconfig /release' to release the IP address and 'ipconfig /renew' to renew it.

  • How do you flush the DNS resolver cache on your computer?

    -You use the command 'ipconfig /flushdns' to flush the DNS resolver cache.

  • Which command can copy the output of a command to the clipboard?

    -The command 'clip' can copy the output of another command to the clipboard. For example, 'ipconfig /displaydns | clip' will copy the DNS display output to the clipboard.

  • What command can be used to check the IP address of a website using DNS servers?

    -You can use the 'nslookup' command followed by the website address. For example, 'nslookup networkchuck.com'.

  • How do you clear the screen in the command prompt?

    -You can clear the screen in the command prompt using the 'cls' command.

  • What command can generate a detailed power configuration report?

    -The 'powercfg /energy' command generates a detailed power configuration report.

  • How can you check the health of your computer's battery?

    -You can check the health of your battery using the 'powercfg /batteryreport' command.

  • What command can be used to check which file types are associated with which programs?

    -The 'assoc' command can be used to check file type associations with programs.

  • Which command checks and repairs disk errors?

    -The 'chkdsk' command checks and repairs disk errors. Using 'chkdsk /f' will fix any errors it finds.

  • How do you use the System File Checker to repair system files?

    -You use the 'sfc /scannow' command to check and repair system files.

  • What is the purpose of the 'dism' command?

    -The 'dism' (Deployment Image Servicing and Management) command is used to repair and prepare Windows images, including checking the health of the system image with 'dism /online /cleanup-image /scanhealth' and restoring health with 'dism /online /cleanup-image /restorehealth'.

  • Which command can list all running tasks and their process IDs?

    -The 'tasklist' command lists all running tasks and their process IDs (PIDs).

  • How do you terminate a specific process by its PID?

    -You use the 'taskkill' command with the '/F' and '/PID' options. For example, 'taskkill /F /PID [PID number]'.

  • What command can generate a detailed wireless network report?

    -The 'netsh wlan show wlanreport' command generates a detailed wireless network report.

  • How can you disable and re-enable the Windows Defender firewall using commands?

    -You can disable the Windows Defender firewall using 'netsh advfirewall set allprofiles state off' and re-enable it with 'netsh advfirewall set allprofiles state on'.

  • What command can you use to continuously ping a server or website?

    -You can use 'ping -t [website or IP address]' to continuously ping a server or website.

  • How can you trace the path to a website, and what is the purpose of the '-d' switch in this context?

    -You can use the 'tracert' command to trace the path to a website. The '-d' switch prevents the command from resolving IP addresses to hostnames, making the trace faster.

  • What does the 'netstat' command do, and what information can it provide?

    -The 'netstat' command provides information about network connections, including active connections, listening ports, and associated PIDs. Using 'netstat -ano' provides detailed information with PIDs.

  • How can you display the routing table of your computer?

    -You can display the routing table using the 'route print' command.

  • How do you add a specific route to the routing table?

    -You use the 'route add' command followed by the network destination, subnet mask, and gateway. For example, 'route add 192.168.40.0 mask 255.255.255.0 192.168.1.1'.

  • What command can you use to restart your computer and boot into the system BIOS?

    -You can use 'shutdown /r /fw' to restart your computer and boot into the system BIOS.

Outlines

00:00

πŸ” Exploring Essential Windows Command Prompt Commands

The script begins by introducing the top 40 Windows command prompt commands, explaining how to launch the command prompt as an administrator. It covers commands like `ipconfig` for viewing IP information, `ipconfig /all` for detailed network information, `ipconfig /release` and `ipconfig /renew` for managing IP addresses, and `ipconfig /displaydns` and `ipconfig /flushdns` for DNS troubleshooting. The segment emphasizes filtering command outputs with `findstr`, copying outputs to the clipboard using `clip`, and using `NSlookup` for DNS queries. It also touches on clearing the screen with `cls`, finding MAC addresses with `getmac`, and checking power and battery status with `powercfg` commands.

05:00

πŸ› οΈ Advanced Troubleshooting and System Maintenance Commands

This section covers further troubleshooting and maintenance commands. It includes `chkdsk` for checking disk integrity and repairing errors, `sfc /scannow` for scanning and fixing system files, and `dism` for managing and repairing system images. It also discusses handling USB-related issues with `tasklist` and `taskkill`, and introduces the powerful `netsh` command for managing network settings, such as generating a wireless report and showing interfaces. Additionally, it mentions using `ping` for network connectivity checks and `tracert` for tracing the path to a website.

10:02

πŸ–₯️ Managing Network Connections and System Commands

This final section dives into commands for managing network connections and system configurations. It highlights `netstat` for viewing active connections and open ports, and `route print` for displaying the routing table, with options to add and delete routes. The section also introduces the versatile `shutdown` command, which can restart the computer directly into BIOS settings, making it easier to adjust system configurations. The script concludes with a reminder to subscribe and engage with the content.

Mindmap

Keywords

πŸ’‘Windows Command Prompt

Windows Command Prompt is a command-line interface for the Windows operating system that allows users to interact with their computer through commands. It is a powerful tool for managing and troubleshooting various aspects of the system. In the video, the Command Prompt is used to execute a series of commands for network configuration, system diagnostics, and more, showcasing its versatility and importance in the theme of mastering Windows commands.

πŸ’‘IP Address

An IP address is a numerical label assigned to devices connected to a computer network that uses the Internet Protocol for communication, such as a computer or smartphone. In the script, the presenter uses the command 'IP config' to find out the computer's IP address, which is crucial for understanding network connectivity and is a fundamental concept in networking.

πŸ’‘DNS Server

DNS stands for Domain Name System, which is the system that translates human-friendly domain names (like 'networkchuck.com') into IP addresses that computers use to identify each other on the network. The script mentions troubleshooting DNS issues, emphasizing the importance of DNS in resolving website addresses and its role in internet connectivity.

πŸ’‘Netsh

Netsh is a command-line tool for configuring the network settings on Windows systems. It is a powerful utility that can perform a wide range of network-related tasks, as demonstrated in the script where the presenter uses 'netsh' to show wireless reports and manage network interfaces, highlighting its capability to provide detailed network diagnostics and control.

πŸ’‘Ping

Ping is a network administration software utility used to test the connectivity between computers on a network. In the video, 'ping' is used to check the response from 'networkchuck.coffee', illustrating its function in verifying the availability of a server or website and its relevance to network troubleshooting.

πŸ’‘Tracert

Tracert, short for Trace Route, is a command used to display the path and measure the transit delay of packets across an Internet Protocol (IP) network. The script mentions using 'tracert' to trace the path to a website, indicating its use in diagnosing network issues by showing the route packets take to reach a destination.

πŸ’‘Netstat

Netstat is a command-line tool that displays active network connections and open ports on a computer. It is used in the script to show what's connected to the user's computer and to identify open ports, which is essential for understanding network security and performance.

πŸ’‘Tasklist and Taskkill

Tasklist and Taskkill are command-line utilities used to display and terminate running processes on a Windows system. In the video, 'tasklist' is used to find a process related to a script, and 'taskkill' is then used to terminate it, demonstrating their role in managing and troubleshooting processes that may affect system performance.

πŸ’‘System File Checker (SFC)

The System File Checker is a utility in Windows that allows users to scan for and restore corrupted system files. The script mentions using 'sfc /scannow' to check and fix system files, emphasizing its importance in maintaining system integrity and performance.

πŸ’‘Deployment Image Servicing and Management (DISM)

DISM is a command-line tool that is used for servicing Windows images, such as repairing corrupted system files or making changes to the operating system. In the script, DISM is highlighted as a tool for fixing system images, showcasing its advanced capabilities in system repair and maintenance.

πŸ’‘BitDefender

BitDefender is a cybersecurity software solution that provides various protective measures for computers, such as firewall management, online threat prevention, and privacy protection. The script mentions BitDefender as the sponsor's product, illustrating its role in enhancing computer security beyond the built-in Windows Defender.

Highlights

Launch Windows Command Prompt as administrator for full access.

Use 'ipconfig' to find your IP address.

Use 'ipconfig /all' for detailed network information, including MAC address and DNS server.

Filter command outputs with 'findstr' to focus on specific information.

Renew your IP address with 'ipconfig /release' and 'ipconfig /renew'.

Display DNS cache with 'ipconfig /displaydns' and copy to clipboard with '| clip'.

Flush DNS cache using 'ipconfig /flushdns' to remove stale entries.

Troubleshoot DNS issues using 'nslookup' to query different DNS servers.

Clear the command prompt screen with 'cls'.

Find your MAC address using 'getmac /v'.

Generate a power report with 'powercfg /energy' and a battery report with 'powercfg /batteryreport'.

List file associations with 'assoc' and change them if needed.

Check and repair disk errors using 'chkdsk /f' and 'chkdsk /r'.

Use 'sfc /scannow' to check and repair system files.

Deploy and manage system images with 'DISM'.

List and kill tasks with 'tasklist' and 'taskkill'.

Generate detailed wireless reports with 'netsh wlan show wlanreport'.

Ping continuously with 'ping -t' for ongoing connectivity checks.

Trace the route to a server with 'tracert' and speed it up with 'tracert -d'.

Monitor network connections and open ports with 'netstat -a'.

Print and modify routing tables with 'route print' and 'route add'.

Shut down or restart the computer using 'shutdown' command with various switches.

Restart the computer into BIOS using the 'shutdown /r /fw' command.

Transcripts

play00:00

Here are the top 40 Windows command prompt commands you need to know.

play00:03

And we're gonna do this in 10 minutes. So first,

play00:06

let's launch our Windows command prompt.

play00:08

Either hit Windows Key S or click the start menu icon and search for cmd. Right?

play00:12

Click that and put that sucker in a beast mode. Run as administrator.

play00:15

Here's our playground. Let's go. What's your computer's IP address?

play00:18

Make you find out with IP can fit. Bam. All your IP information right there,

play00:22

but not everything. Where's your Mac address? Where's your DNS server?

play00:25

For that we need IP config slash all. This will give us all the goodies.

play00:28

Now that's way too much information.

play00:30

We gotta filter it and we can do it with this command.

play00:32

Save command as before IP config slash All this time we'll do a pipe and type in

play00:37

find STR R or find string and we'll tell it what we're looking for.

play00:40

Maybe we wanna see DNS and that's all we wanna see and that's all we get.

play00:44

Love it. And by the way, you can use fine string on any command. It's awesome.

play00:48

Maybe your computer needs a new IP address.

play00:50

We can do that with IP config and we'll first do release to let it go.

play00:55

And then we'll type in renew reaching out to our DHCP server and getting a fresh

play00:59

new IP address.

play01:00

Keeping in mind that will refresh every single interface on your computer.

play01:03

If you don't wanna do that, then specify the interface just after your command.

play01:07

Now DNS can be a problem. In fact, it's always dns. It's never in the network.

play01:11

Remember that. So let's troubleshoot DNS first.

play01:13

We'll see what your computer knows. IP config for slash display dns.

play01:17

Basically all the websites it knows about and their IP addresses.

play01:20

But when you're troubleshooting dns, that's kind of hard to read.

play01:22

It'd be great if we could just copy that to our clipboard and look at it

play01:25

somewhere else we can with this command. This command's awesome by the way.

play01:28

So same command as before, IP config four slash display dns.

play01:31

But right after that we'll do a pipe and then simply type in clip.

play01:35

This command will copy the output of that command to your clipboard so you can

play01:39

fire up your favorite notepad application and paste that sucker right in there.

play01:43

That's powerful. I love that. I'll never ever forget to flush. And also,

play01:47

sometimes you might wanna flush your DNS IP config ford slash flush dns.

play01:51

This will delete your DNS resolver cash on your computer,

play01:54

removing any old stale DNS entries. Take that dns. It's always your fault. Oh,

play01:59

and by the way, have you hacked the YouTube algorithm today?

play02:01

Let's make sure you do hit that like button notification, bell comment,

play02:04

subscribe. You gotta hack YouTube today ethically, of course.

play02:08

Now to troubleshoot DNS even further, you may want to use NS lookup.

play02:11

With NS lookup, we can do things like, Hey, where is network chuck.com?

play02:14

What's his IP address?

play02:15

And it'll tell you what DNS server you're using and what answer it gave you.

play02:19

If you wanna try another DNS server real quick, you can do that.

play02:22

S look up never chuck.com. And they're right after.

play02:24

Specify that other DNS server, let's say Google. And we got a second opinion.

play02:28

You can also check for other types of DNS records from MX to TXT to pointers.

play02:33

Trust me, you're gonna need those commands cuz it's always dns. It's always dns,

play02:37

always dns. Now look at your screen, it's messy. Go clean your screen.

play02:41

Don't be alop. And we can do that with one command. C Ls. Clean your screen.

play02:46

Is that, what's it stand for? I don't know. It cleans your screen. Do that. Hey,

play02:49

what's your Mac address? Give it to me right now.

play02:51

Sorry you were too slow but you wouldn't have been if you used this command.

play02:54

Get mac slash v bam. There it is right there.

play02:59

There all your Mac addresses.

play03:00

This command will see if you have any energy or power issues with your computer

play03:03

power CFG slash energy. Give it a minute, it'll give you some awesome stuff,

play03:07

a great report on how you're doing. Also, how's your battery?

play03:10

What power CFG slash battery report.

play03:14

It will report to you and what's going on? Just copy that file location,

play03:19

paste it into your command prompt. Bam, there it is. Battery report.

play03:22

It'll tell you if your battery sucks. Mine's okay I think. I'm not sure.

play03:26

This next one is super handy. It's a SS ooc, you thought I was done? Hit enter.

play03:31

And it's gonna show you which file types are associated with which programs.

play03:34

So for example, MP four files will open with Windows media player,

play03:38

but honestly I prefer to use vlc. So with one command,

play03:41

actually with that same command,

play03:42

we can specify the file type and have that equal the program you want to use.

play03:46

Bam. Now, hey, is your computer haunted? Is it going kind of slow? Does it suck?

play03:50

Don't throw it away just yet. Calm down buddy. Let's check a few things.

play03:53

Let's make sure it's okay with a command. C H, K, Dsk check disk.

play03:57

It can check on a few things.

play03:59

Let's see if you need a repair with the Ford slash f,

play04:01

it will actually go through your disc and see if there's any errors and fix 'em.

play04:04

You may wanna try a dash r.

play04:06

This will actually check for physical sector issues and fix 'em.

play04:09

Keeping in mind this might need a reboot, a restart and it could take a bit,

play04:12

especially if your computer is actually haunted. Is it haunted?

play04:15

Now if that doesn't work and your computers still scaring the crap outta you,

play04:18

then try this one. S F C, the system file checker.

play04:22

It'll check your system files including things like Windows,

play04:25

DL L files and replace them and fix them if they're bad.

play04:28

So do a forward slash scan now to make magic happen.

play04:31

Now if your computer's really,

play04:33

really haunted and you're still having some issues,

play04:34

you'll need this Command D SM deployment, image servicing and management.

play04:39

It's a command line tool that will actually fix your system image.

play04:42

You'll wanna start with a quick checkup,

play04:44

check the health and maybe go a bit deeper with a longer scan with the option

play04:47

scan health. And if it does come up with some scary issues,

play04:50

let's go ahead and restore your health. Man, I wish our health was that easy.

play04:54

You know it actually is coffee, it doesn't.

play04:58

So after you've run the DSM commands,

play05:00

go ahead and go back and do the SFC commands once more.

play05:03

SFC scan now and you should be good.

play05:05

And those commands should remove the haunted ness of your computer. .

play05:09

It shouldn't be scary anymore and it'll prevent you from having to reinstall

play05:12

Windows.

play05:13

Now don't you hate it when someone takes a bad USB and plugs it into your

play05:17

computer and Rick rolls you.

play05:22

To stop this, we'll need two things. First task list.

play05:25

We gotta find the task on our system, the process that's doing something.

play05:28

Task list will list all of our tasks and using the fine string thing we learned

play05:32

earlier, we'll find what we're looking for. Search for script. There it is.

play05:36

Now taking that process id,

play05:38

I can then use Task Kill to kill that task,

play05:42

Task kill for slash F to force it for slash P I D to specify the P I d and it's

play05:47

terminated. Now if you thought IP config was cool,

play05:49

meet his older brother Net sh much like me and my younger brother Cameron,

play05:53

the older brother,

play05:54

is much cooler and more powerful and smarter and better in every way.

play05:57

Like this command right here, W Land Show, W Land Report,

play06:01

this will give you a super fancy wireless report about your wireless.

play06:05

So if we open that file by copying that file right there,

play06:08

pacing it here heading enter a gorgeous report on your wireless situation and

play06:12

look at that. It even has some commands in here. What the heck? That's cool.

play06:16

We could honestly spend all day with an sh cuz he's so cool.

play06:19

By doing things like interface, show interface,

play06:23

showing you your interfaces.

play06:25

We can do quick one liners to find our IP addresses. Bam, there they are.

play06:29

DNS servers. Bam, kind of there they are. Wasn't as easy as I thought.

play06:33

And even cooler and crazier as you can turn off the Windows Defender firewall

play06:38

with one command, BAM turned off. But don't worry,

play06:41

the big brother's always a good guy. He can turn it right back on.

play06:44

So if you wanna avoid that getting hacked,

play06:46

then check out the sponsor of this video Bit Defender and their premium security

play06:50

bit.

play06:51

Defender keeps your computer safe even when Windows Defender can't like check

play06:54

this up on this computer running.

play06:56

But defender notice I can't make any changes to my firewall settings.

play07:00

It says it's being managed by Bit Defender Firewall.

play07:02

If I try to run that same command at Shoji,

play07:04

which is the same command hackers we'll use to disable things,

play07:07

let's try to turn it off. It tells me, okay, but it didn't do anything.

play07:10

Bit Defender has your back. They even tell you, hey,

play07:13

you're safe and we all need someone to tell us we're safe.

play07:16

And it's not just firewall. If you got online threat prevention,

play07:19

which will actually block online threats and they're constantly scanning your

play07:22

system for vulnerabilities and they do some ransomware remediation in case you

play07:26

do get some ransomware when you fall for that fishing attack, hey it happens.

play07:29

And they have your back with privacy too from a Safe Pay vpn, password managers,

play07:34

anti tracker,

play07:35

they actually block web trackers from tracking you on profiling you. And also,

play07:38

do you ever wonder if like your webcam is still on or someone's listening to

play07:41

you? Well you don't have to wonder about that anymore.

play07:43

Bit Defender will check that constantly and make sure it only turns on when you

play07:46

want it to turn on. Now I know what you're thinking,

play07:48

Bit defender's gonna slow my computer down. I want speed, I get that.

play07:51

And they get that too. So they have different profiles for when you're working,

play07:55

watching a movie playing game or you're dangerously surfing, public wifi,

play08:00

whatever the case, they'll adjust your system to help you do what you gotta do.

play08:03

And if you don't wanna worry about it, they'll switch auto magically for you.

play08:05

So check the link below, you'll get Bit Defender Premium Security for 64 98.

play08:09

It's a whole year saving you $95 off the full price.

play08:12

And you can use it on 10 devices from iOS, Android, Mac, and especially Windows.

play08:17

You need it on Windows now is Network. chuck.coffee up right now.

play08:20

Let's find out. Let's ping network. chuck.coffee. Cool,

play08:23

we're getting a response.

play08:24

Ping is what we can use to make sure servers and websites are up,

play08:27

but it only told us four times. What if we wanna sit there and watch it,

play08:30

just ping it over and over and over again.

play08:31

We can do that with ping dash t a 10 us ping. It'll never stop.

play08:36

It'll keep going.

play08:36

Which is super helpful for when you're just troubleshooting stuff.

play08:39

If you wanna see if the road to your favorite website is a bit bumpy,

play08:42

try out Tracer Tracer,

play08:45

which is Windows dumb version of saying Trace Route.

play08:47

This will actually trace the path to your favorite website along each router it

play08:51

takes to get there and tell you if that suckers up or how long it's taking to go

play08:55

into that guy. Maybe that guy is slow, it'll tell you it can be slow.

play08:59

So to speed it up just a little bit,

play09:00

do tracer dash D to not resolve domain names a little bit faster.

play09:04

Net stat is probably my favorite thing on Windows.

play09:07

It'll tell you what's connected to you and what you're connecting to.

play09:09

It'll also tell you what ports you have open, which is kind of important.

play09:13

Netta dash afaf. Like right now I've got these three popular ports. Open quiz,

play09:18

what are those four? Comment down below.

play09:20

And they're open on every single IP address on my system. Every interface.

play09:24

And I'm listening, I'm waiting for connections.

play09:26

Netta can also show you the process ID for all your connections.

play09:30

The dash o switch. So if there is anything dangerous connecting to you,

play09:33

you can drop that P I d, delete it with Task Hill.

play09:36

And you can also get some sweet sweet net stats with thatta dash e dash T

play09:41

five giving you some sent receive statistics every five seconds.

play09:45

This one is for the Network Geeks route print.

play09:48

This will show the routes your computer will take to get to certain networks,

play09:51

what gateways it will use. It's the routing table of your computer. So hey,

play09:55

here's your default route right here. And with that same command,

play09:58

we can also add routes to our computer route add,

play10:02

allowing us to customize the way our computer reaches certain networks.

play10:05

So here I'm trying to get to the 1 92, 1 68 40 network through this gateway.

play10:09

If I print the route again, there it is.

play10:12

And then with route delete it goes away.

play10:14

That's super handy when you're playing with docker containers on a local VM and

play10:18

you wanna route to certain networks, it's, it's really cool. And then finally,

play10:21

my favorite command of all time. I cannot believe I didn't know about this.

play10:24

Shut down. Just like this. Actually, no, not just like this.

play10:27

Obviously that command will shut down your computer,

play10:29

but with a few more switches and by a few I mean a lot.

play10:32

This will restart our computer and restart it into the system.

play10:37

Bios without you touching a dang thing. No more spamming at 12, 11 at 10.

play10:41

No, just this command and it reboots into your bio so you can change your memory

play10:45

profile so you can enable virtualization. How cool is that?

play10:48

So thanks for watching.

play10:49

Thanks for having some coffee with me and I'll catch you guys next time.

play10:51

And don't forget to subscribe it and do a lot stuff like, like the video.

Rate This
β˜…
β˜…
β˜…
β˜…
β˜…

5.0 / 5 (0 votes)

Related Tags
Windows CommandsCommand PromptNetwork TroubleshootingSystem ManagementIP ConfigDNS ManagementPerformance HacksSecurity TipsTech TutorialBit DefenderScript Termination