The Yaj Computers Portal

Post Top Ad

Post Top Ad

Tuesday, March 14, 2017

12:17 AM

Useful Keyboard Shortcuts for Windows Computers

Name:  Keyboard-shortcuts.jpg
Views: 10910
Size:  5.3 KB

Windows key+D: This shortcut is the keyboard equivalent of “Show the Desktop”. It is useful for quickly minimizing every open window when someone walks in and you are doing some private work.

Ctrl+Shift+Esc: This shortcut directly starts the task manager. While Alt+Ctrl+Del was used to bring out the Task Manager in Windows XP and earlier versions, in Windows 10, Windows 8.1, Windows 8 and Windows 7, it just brings up the lock this computer screen

Ctrl+Click: This shortcut is useful for opening a link in a background tab. This is useful when you have to load a page without leaving the current one.

Alt+Print Screen: takes the screenshot of the current active window as opposed to just Print Screen which takes the screenshot of the entire screen.

Shift+Click for Yes to All and No to All: If you have a lot of dialog boxes asking yes and no question, just shift+click Yes or No on one to yes all or no all.

Ctrl+C on an error dialog box to copy its contents: Suppose your computer is giving an error message and you want to copy its contents to send to the support guy, what do you do? Just press Ctrl+C while the dialog box is highlighted and its contents will be copied to your clipboard.

Ctrl+T: This keyboard shortcut opens a new tab in internet browsers.

Ctrl+Shift+T: Reopens the last closed tab.

Ctrl+Shift+N: This shortcut opens a new incognito window in Google Chrome.

Ctrl+Shift+P: Opens a new private window in Mozilla Firefox.

Alt+Enter after writing the domain name in the address bar of your browser to insert .com automatically.

Shift+Enter inserts .net domain name extension.

Ctrl+W: This shortcut closes the current tab in your browser quickly.

Ctrl+Backspace: This shortcut deletes the last word you have typed. It is useful in case you typed in a wrong word and want to delete it quickly.

Ctrl+Left or Right Arrow key: This shortcut allows you to move the cursor one word at a time instead of the default one character at a time.

Ctrl++: This shortcut allows you to zoom in web pages in web browsers. Useful when text on a web page is too small to read properly. Ctrl+Scroll wheel can also zoom in documents, file thumbnails and icons in Windows 10, Windows 8.1, Windows 8, Windows 7 and Windows Vista.

Ctrl+-: This shortcut does the reverse of the previous shortcut.

Ctrl+0: Reset the webpage's zoom.

Windows key+M: Minimizes all the open windows.

Ctrl+L: This shortcut allows you to quickly jump to the address bar of your web browser.

Windows key+Pause/Break: Quickly open the system properties dialog box. 

Ctrl+Shift+Delete: This shortcut opens the option to delete your browser's history, cookies, cache and other details that it stores while you browse the internet. This shortcut is extremely useful for the privacy conscious.

Windows Key+L: This shortcut locks your computer.

Ctrl+H: makes the history appear.

CTRL+B: Bold CTRL+U: Underline CTRL+I: Italic.

Alt+Select: This shortcut allows you to select rectangular blocks of text in Word processors, something that is not possible with simple select.

F2: Allows you to rename the selected file.

Holding Shift while inserting a device with removable storage prevents automatic run.

Ctrl+F: This keyboard shortcut opens the Find option in any program.

Ctrl+S: If you are working on a software and want to quickly save your progress, this shortcut will come in handy.

Ctrl+Home and Ctrl+End: Useful for quickly going to the top and bottom of a page.

Ctrl+P: Useful for printing the current page.

Space Bar: While viewing a web page in a browser, pressing space bar moves the page down.

Alt+Tab: Useful for quickly cycling between running applications. Press along with Shift to cycle backwards.

Ctrl+Tab: Cycle between tabs in your browser.

Ctrl+F5: Clears the cache and refreshes the current tab.

Shift+Right click: Open alternate right click options.

Alt+Double click: Open the file's properties. Alt+Enter can also be used for this.
12:16 AM

Shutdown Your Computer or a Remote PC via Command Prompt

Required
A computer running Windows (XP, Vista, 7, 8 or 8.1) with the command prompt working perfectly, i.e. not disabled by a virus.
Click image for larger version. 

Name: shutdown-command-prompt.jpg 
Views: 73 
Size: 21.9 KB 
ID: 1070668

Initial Steps 
1) Press Windows Key + R.
2) Enter CMD and press Enter.

This will start the command prompt. Follow the instructions below depending on what you want to do.

Shutdown Local Machine (Your Computer)
Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

Restart your Local Computer 
Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

Log Off the Current User
Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

Shutdown a Remote Computer
Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

Hibernate a Local Computer
Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

Shutdown your or a remote computer after a specific time
Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

Display a Message containing the reason for shutdown
Type shutdown -s -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) in the Command Prompt and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

Stop a System Shutdown
Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.
12:15 AM

Make Undeletable, Unrenamable Folders

Basic Concept
The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.

Click image for larger version. 

Name: Make+undeletable,+unrenamable+folders.JPG 
Views: 343 
Size: 9.2 KB 
ID: 1070665

Trick
So the question arises, how can we make a folder with a keyword as its name? The solution to this problem is included in Windows itself. As we know that Windows has evolved from D.O.S.(Disk Operating System), its commands can be used in Windows. You can use D.O.S. Programming in Windows to create a folder with a keyword as its name using the steps given below:-

1. Click on Start.
2. Click on Run. Type in "cmd" without quotes.
3. In the Command Prompt Window that opens, type the name of the drive you wish to create your folder in the format : and press Enter. e.g. If you wish to create the undeletable folder in D drive, type "D:" without the quotes. Note that the folder cannot be created in the root of C: drive (if C: is your system drive).
4. Type this command- "md con\" or "md lpt1\" without the quotes and press Enter. You can choose any of the keywords given above as the name of your folder.

Now Windows will create an undeletable, unrenamable folder in the drive you entered in Step 3. However, the folder can be renamed to another keyword using Windows Explorer.

Deleting the Folder

Although, it is not possible to manually delete the folder, you can delete the folder by typing "rd con\" or "rd lpt1\" in Step 4 instead of "md con\" or "md lpt1\". 

Windows Compatibility: This works on Windows XP, Windows Vista, Windows 7, Windows 8 and Windows 8.1.

Try it yourself to create one such folder which can neither be deleted nor be renamed.
12:11 AM

Warcraft III Complete Edition

Click image for larger version. 

Name: warcraft-3-complete-edition-pc-cover-www.ovagames.com.jpg 
Views: 3 
Size: 38.2 KB 
ID: 1187041




Title: Warcraft III Complete Edition MULTi6 - ElAmigos
Genre: Strategy
Developer: Blizzard Entertainment
Publisher: Blizzard Entertainment 
Release Date: 15 Mar, 2004
File Size: 3.16 GB / Split 7 parts 500 MB
Mirrors: Google Drive

– System Requirements : MINIMUM:
CPU: Pentium III or Athlon
CPU Speed: 600 MHz- RAM: 256 MB
OS: Windows 98/ME/2000/XP
Video Card: 32 MB 3D Accelerated Video Card with DirectX 8.1 support
DirectX version: 8.1
Warcraft III: Reign of Chaos is a high fantasy real-time strategvideo game released by Blizzard Entertainment in July 2002. It is the second sequel to Warcraft: Orcs & Humans, and it is the third game set in the Warcraft fictional Universe. An expansion pack, The Frozen Throne, was released in July 2003.

Warcraft III contains four playable races:[1] Humans and Orcs, which had previously appeared in Warcraft: Orcs & Humans and Warcraft II: Tides of Darkness, and the Night Elves and Undead, which were introduced to the Warcraft mythos in this installment.[2] Warcraft III? ’s single-player campaign is laid out similarly to that of StarCraft, also by Blizzard Entertainment, being told through all four of the game’s races in a progressive manner. Multiplayer mode allows for play against other players, via the internet, instead of playing against computer-controlled characters as is done in the single-player custom game mode.


Link:
Part 1: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 2: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 3: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 4: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 5: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 6: https://docs.google.com/uc?id=0BxGtk...xport=download
Part 7: https://docs.google.com/uc?id=0BxGtk...xport=download
12:03 AM

notepad and beginning html



In these tutorial series I assume that you are a complete noob or that you have seen my other tutorials! These should be somewhat easy, but if you have a question just ask!

In this tutorial I'll show you where to download Notepad++ and how to use, header, paragraph, link, and image tags.

Put this in your text editor:

     
     
     


As you can notice, the tags are all lowercase; right now it don't matter if you do uppercase or lowercase for in my next tutorial I'll introduce you to

. All the elements that you want the visitor of your website to see will be in the

tags. 
Header tags go from

to
. You may not think these are important, but when we make a WordPress theme they will be . Here is the code I used:

Hello Youtube

Hello Youtube

Hello Youtube


When you display that in your web browser you should notice that the text is bold and the font is huge; you should also notice how the font size decrease as the header number increases. You can now assume that
is the smallest.

defines a paragraph. There is a lot of styling you can do with paragraphs that I will show you when I start the CSS tutorial series. Here is the code I used in the video:
This is an example of a paragraph.

There really isn't much to explain about the paragraph right now.
When we begin creating full fledged websites we will be using links to create magnificent navigation bars. Links may be a little tricky to remember because they don't have one letter or one number for the syntax. Here is the code that I used in the video:
YajComputers

When you deploy that in your web browser you will notice that the font color is blue, it's underlined blue, and that if you click on it you will be at YouTube. Then if you go back to the file the text and underline will probably be purple. This looks rather ugly, but we shall make it look beautiful when we finish CSS.
Images are very similar to the links. I try to use a photo from Newegg, which I fail to do. lol. Here is the code I used in the video for images:


You begin by declaring an image. You then declare the source of the image and give the URL. You then declare the height and width of the image. It's in pixels.

I hope you liked my tutorial. If you have any suggestions or questions leave a comment! 

Saturday, February 4, 2017

6:24 PM

How to reset Canon MP287 Printer Error Code P07

Canon MP287
Canon MP287

I've tried several tutorials online but unfortunately it didn't resolve the problem because of the resetter program which is not compatible to the printer. 

So here's how to do it,

First, Turn off the printer
2. After turning OFF, press and Hold the STOP button at the same time Press and hold the Power button
3. Release the STOP button ( Don't release the Power button )
4. Press the STOP button  6 or 7 times
5. Release the Power button
6.It will display/show black.


Now it will set the printer into service mode. If something will popup to install your printer, just ignore it, and click cancel.

The next thing to do is to download the Service Tool for Canon MP287 printer. Click here

After you have successfully downloaded the program, just  follow the steps shown on the image below.

Reset Canon MP287
In my case after I clicked the set button of Clear Ink Counter : Absorber-main, and restart the printer it solves the error P07 and can now print. Just perform a deep cleaning for 3-5 times to set the printer into a good quality printing.


 
MORE: RESET EPSON L110 Click Here
                    RESET CANON MP237  Click Here Disclaimer: The program (Service Tool)is not my own. Download it at your own risk. YajCom will not be held responsible for any damages caused  to your device.
6:20 PM

How to change Wifi password and SSID in Globe Tattoo 4G LTE Wifi (HUAWEI Model: B315s-936)


Tattoo - 4G Globe is a wireless modem plus Wi-Fi router that enables a user to share internet access with other Wi-Fi-capable devices simultaneously.

Here's How to change Wifi password and SSID in Globe Tattoo 4G LTE  Wifi (HUAWEI Model: B315s-936)

(Note: Make sure that your computer is connected to your Globe tattoo)

Step 1. Open you internet browser (Mozilla Firefox or Google Chrome) type in 192.168.254.254 this address can be found at the back of your Globe tattoo. Then click Log In at the upper right-side of the screen.

Step 2. Type in the User name and Password in the login dialog box. User name as: user and the password is also written the back of your Globe tatto


Step 3. After you successfully logged in, click Settings at the menu bar, then, WLAN>WLAN Basic Settings. You can change the defaul SSID to you desired wifi name, select the Security mode, and the WPA pre-shared key or Wifi password. Make sure that SSID Broadcast is enabled, then click Save and you're done.

see example below
6:15 PM

How to Reset SmartBro Pocket Wifi



There are lots of queries on how to reset the pocket wifi, since I personally don't see anything like reset button.

So, here a very simply way to reset it, actually it's already been there ever since, you just have to be cautious on your device.

Step 1. Log-in to your SmartBro Pocket Wifi by opening your Internet Browser/Chrome/Safari/Opera/Mozilla FireFox

Type in 192.168.1.1
username: smartbro
password: smartbro

see example below



 Step 2.  Click on Settings > Device Settings > Reset and Click Reset Button

See Example Below


Reset Smartbro Pocket Wifi



To reset the pocket wifi if you forgot the password of the router:

PRESS Buttons "ON" and "WPS" at the time for about 5 secs. It should reset it to Factory Settings then you can use the default password (smartbro) to log in to the dashboard and change settings again."

You May Like to Read:

You May Like to Read:

Popular Posts