Fibonacci Numbers in Python

basic cmd hacks ( ecodeLabs )

 

commands for checking connected WiFi key content:

1. launch the cmd with ( ctrl+R) then type CMD

2. Type these exact command to show all connected network

    netsh wlan show profiles

3. To get details of a specific profile type

        netsh wlan show profile name="the profile name"

4. From the profile"s detail , if the security key is present type these commands to reveal the key content

        netsh wlan show profile name= "net name" key="clear"

5. The password is revealed in the key content row


CMD Commands for creating a new folder

1. open the cmd 

2. navigate to the directorate you wish to create the folder

  ie: C:\Users\User\> cd Desktop

3. Type [ md folderName ] to create the folder.

4.To delete a folder, type [ rd folderNme ]


CMD Commands for hiding a file

1. Navigate to the location of the fil 

2. Type [  attrib +s +h C:\Location\NameOf-File ]

3. To show the file type [  attrib +s -h C:\Location\NameOf-File ]


CMD Command for Shutting down Pc

1. Type Shuttdow -s -t 12 -c [Content to Prompt ]

    where -t 12 represent the second to complete the command.


Switching disc in cmd

1. Type [ :d , :c ] to move to that disc ie. C:\Users\User\> :D

2. Type [ cd pathName to move to path ] ie C:\Users\User\>  cd Desktop

3. To move backward in path, type [ .. ] ie. C:\Users\User\> .. 

This will take you to C:\Users\>



# Eshun Kingsley 







Comments