Skip to main content

Posts

Showing posts from 2024

WMIC COMMAND IN WINDOWS || GET PROCESSOR, DISK AND RAM INFORMATION USING CMD WMIC COMMAND

INTRODUCTION The Windows Management Instrumentation Command-line (WMIC) is a powerful command-line tool in Windows that allows you to interact with WMI (Windows Management Instrumentation) to manage system settings and retrieve information about the operating system, hardware, and installed software. Here are some common usages of the WMIC command: 1. Get System Information : wmic os get caption, version, osarchitecture This retrieves the operating system's name, version, and architecture. 2. List Installed Software : wmic product get name, version This shows a list of installed programs along with their versions. 3. Get CPU Information : wmic cpu get name, numberofcores, maxclockspeed 4. Get Disk Drive Information: wmic diskdrive get model, size 5. Check hard drive status: wmic diskdrive get status 6. Get Network Adapter Information: wmic nic get name, macaddress 7. Get Running Processes: wmic process get name, processid 8. Shut Down the System: wmic os shutdown 9. Check System Up

ARDUINO BEGINNER PRJECT || HOW TO MAKE A BLINKING LED || TINKERCAD

 Requirements: Arduino Uno R3 LED Resistor - 220 ohms Connect the LED anode terminal to the resistor then to a digital pin on the arduino. e.g., Pin 13. Connect the LED cathode terminal Ground (GND) pin of the Arduino. Copy paste the following text code. void setup() {   pinMode(13, OUTPUT); //set the digital pin 13 as an output } void loop(){   digitalWrite(13, HIGH); //turn the LED on   delay(1000);//wait for 1 second (1000 miliseconds)   digitalWrite(13, LOW); //turn the LED off   delay(1000); //wait for 1 second (1000 miliseconds) }