Skip to main content

Posts

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
Recent posts

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) }

HOW TO FILE KRA NIL RETURNS

Introduction In this blog post, I am going to show you How To File KRA Nil Returns On iTax online today quickly and easily with a full illustration of the steps. Do you have an active  KRA PIN  and you don’t have a source of income (unemployed)? Check out our article on  How To File KRA Nil Returns  using iTax Portal quickly and easily today. Filing of KRA Nil Returns is allowed for taxpayers who do not have any source of income. When I talk of a source of income, it means that the taxpayer does not have Business Income, Rental Income, or Employment Income, thus the need to file KRA Nil Returns on the iTax Portal.  In this article, I am going to share with you the step-by-step guide that you need to follow in order to file your KRA Nil Returns using KRA iTax Portal. By the end of this article, you will have learned  How To File KRA Nil Returns  if you have a  KRA PIN  and are not in employment. Avoid the last-minute rush and penalties by filing your  Nil KRA Return s before the  30th J

WINDOWS 7,8,10 Activator

Copy and paste into your notepad and save it with a .bat extension. Disable your windows security or antivirus then run it as administrator to activate your windows. @echo off title Windows 10 ALL version activator&cls&echo ************************************ &echo Supported products:&echo - Windows 10 Home&echo - Windows 10 Professional&echo - Windows 10 Enterprise, Enterprise LTSB&echo - Windows 10 Education&echo.&echo.&echo ************************************ &echo Windows 10 activation... cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul cscript //nologo c:\windows\system32\slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX >nul cscrip

ADNROID STUDIO SAM

  Part 1 video Part 2 Video Part 3 video Subcribe to our yoututbe channel for more   The code <? xml version ="1.0" encoding ="utf-8" ?> <LinearLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto" xmlns: tools ="http://schemas.android.com/tools" android :layout_width ="match_parent" android :layout_height ="match_parent" tools :context =".MainActivity" android :orientation ="vertical" > <TextView android :id ="@+id/txthello" android :layout_width ="wrap_content" android :layout_height ="wrap_content" android :text ="@string/Hello" android :textColor ="@color/megan" android :textSize ="16sp" android :layout_marginHorizontal ="10dp" android :layout_gravity =

SIGN UP, SIGN IN HTML, JS, CSS USING FIREBASE

SUBSCRIBE TO OUR YOUTUBE CHANNEL   HTML + CSS <!DOCTYPE html> <html lang="en" dir="ltr"> <head>     <title>         FORM     </title>     <!--add scripts-->     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-app.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-analytics.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-auth.js"></script>     <script src="form.js"></script>     </head> <body>     <h1>WELCOME</h1>     <div id="frmcontainer">       <div id="head"></div>         <input type="email" placeholder="Email" id="email">         <input type="password" placeholder="Password" id="password">         <button onclick="signUp()&

NAIROBI WEST HOSPITAL

Hello. Download Nairobi West APK final  here   Once downloaded, check your downloads folder and install the apk. AndroidManifest.xml <? xml version ="1.0" encoding ="utf-8" ?> here <manifest xmlns:android ="http://schemas.android.com/apk/res/android" package ="com.example.nairobiwest" > <uses-permission android:name ="android.permission.INTERNET" /> <uses-permission android:name ="android.permission.WRITE_EXTERNAL_STORAGE" /> <application android:allowBackup ="true" android:icon ="@mipmap/ic_launcher" android:label ="NAIROBI WEST HOSPITAL" android:roundIcon ="@mipmap/ic_launcher_round" android:supportsRtl ="true" android:theme ="@style/Theme.NAIROBIWEST" > <activity android:name =".splashscreen" > <intent-filter> <a