Skip to main content

Shutdown Shortcut

                            SHUTDOWN SHORTCUT 


1. Right click on the desktop and select the New > Shortcut option



2. In the Create Shortcut window, enter "shutdown /s /t 0" as the location (Last character is a zero) , do not type the quotes (" "). After entering the location click on Next to go to the next step


3. Now enter a name for the shortcut. In this example, "Shutdown" was used. Click Finish. A shortcut will appear on your Window



4. Right click on the new shutdown icon, select Properties and a dialogue box will appear. This dialogue box will give you a notification that this shortcut doesn’t have an icon. Click Change Icon, then click on OK to add the Icon




5. Now click on Change Icon button and select the Power Button icon. After selecting, click twice on OK to save the change


6. A shutdown button shortcut will now appear on your desktop. Right click on it and choose Pin to Start and/or Pin to Taskbar to add to the task bar. You can also move the icon where you desire on the desktop





Comments

Popular posts from this blog

Student Blog's

STUDENT BLOGS  S.NO NAME REGISTER NO BLOG LINK 1. AKASH .N P23CS366 1.  Product Calculation 2.  Question and Answer 3.  File Operation 4.  Profile 2. AMMU .M P23CS367 1.  Product Calculation 2.  Question and Answer 3.  File Operation 4.  Profile 3. ANBU .M P23CS368 1.  Product Calculation 2.  Question and Answer 3.  File Operation 4.  Profile 4. ANBUMANI .A P23CS369 1.  Product Calculation 2.  Question and Answer 3.  File Operation 4.  Profile 5. ARAVINDHAN .A P23CS370 1.  Product Calculation 2.  Question and Answer 3.  File Operation 4.  Profile 6. BARATH .M P23CS371 1...

PRACTICE TEST

                                             HTML ONLINE PRACTICE TEST           CSS ONLINE PRACTICE TEST          PLACEMENT APTITUDE PRACTICE TEST :01         PLACEMENT APTITUDE PRACTICE TEST :02

Java program

                                    Quiz   Program   import java.lang.*; import java.io.*; class Questions { public String [][]qpa; public String[][]qca;  Questions()throws IOException { qpa=new String[10][5]; /*questionsandobjectives*/ DataInputStream in=new DataInputStream(System.in); qpa[0][0]="How do you reverse a string in Java?";  qpa[0][1]="1.Using StringBuilder"; qpa[0][2]="2.Using StringBuffer";  qpa[0][3]="3.Using char array"; qpa[0][4]="4.Using recursion"; qpa[1][0]="How do you swap two numbers without using a third variable in Java?";  qpa[1][1]="1.Using Arithmetic Operators"; qpa[1][2]="2.Using Bitwise XOR Operator";  qpa[1][3]="3.Using Multiplication and Division"; qpa[1][4]="4.Using Addition and Subtraction"; qpa[2][0]="Which of the following option leads to the portability and security of Java?";  qpa[2][1]="1.Bytecode is executed by JVM"; qpa...