Showing posts with label Tips & Tricks. Show all posts
Showing posts with label Tips & Tricks. Show all posts

How To Reset Windows 8/8.1 Admin Password Without Knowing Old Password

How To Hack Windows 8/8.1 Admin Password

Today millions of users are using the latest version of Windows that is Windows 8 and 8.1 which is currently providing lots of features for their users. In this version you need to enter PIN or the password to access the administrator account but what if you forget your windows password. You think you need to install the new operating system in your computer system to access the services but actually you can change the password with the method with which we are here. So lets have a look on the method of How To Reset Windows 8/8.1 Admin Password Without Knowing Old Password. Yes it is possible and you can do  it with your self by just following a simple trick that i have discussed below.

How To Reset Windows 8/8.1 Admin Password Without Knowing Old Password


How To Reset Windows 8 Password
This method is based on Windows 8/8.1 password cracking through other virtual OS that you will run on your computer without actually installing it. With this you will access the internal files of computer and reset admin panel. Just proceed through below steps.
  1. First of all you need to create a Linux Live Cd through linux ISO File.
  2. Now boot this CD in your computer through boot menu.
  3. Now there navigate to C:\Windows\System32.
  4. And there rename sethc.exe to sethc1.exe.
  5. And rename cmd.exe to sethc.exe.
  6. Now simply restart your computer.
  7. Now you will see you login screen, simply press shift button five times.
  8. You will see command prompt will open.
  9. There type net user and hit enter.
  10. Now you will see the name of administrator account note it down.
  11. Now type net user user_name new password and hit enter as shown in screenshots.
  12. Thats it now type the password in login panel and you are logged in.
So above is all about How To Reset Windows 8/8.1 Admin Password Without Knowing Old Password. By this you can easily recover your forgotten password in windows and there will be no need to install new operating system in your computer to access the services. Hope you like the post, don’t forget to share it with your friend

How to Create YouTube Playlists without Logging In?


How do you share a collection of YouTube videos in an email newsletter or on the social media. The best option is that you create a new YouTube playlist, add all the videos and then share the link (URL) of the playlist. The privacy of the YouTube playlist can be set to Unlisted if you would like to hide your video list from search engines.

It is easy to build playlists in YouTube but they are always connected to your YouTube channel or Google Account – you cannot create a playlist on YouTube anonymously without logging in to your account.

There’s however a simple URL hack that will let you create “virtual” playlists on YouTube – they are like regular playlists except that they are not connected to any Google account and you can still add or remove videos on the fly.

Create YouTube Playlists on the fly

All YouTube videos have a unique video ID and you can create a concatenated list of these video IDs, separated by commas, to create a new YouTube playlist from the corresponding videos.

For instance, here are 5 YouTube videos (video IDs are in red) that I would like to add to a playlist but one that is not associated with my YouTube channel:

1. www.youtube.com/watch?v=sjRTSkBHnyo
2. www.youtube.com/watch?v=fhU5y7huAY8
3. www.youtube.com/watch?v=9T_EqwQnZY0
4. www.youtube.com/watch?v=FQKvro1Wz-E
5. www.youtube.com/watch?v=BXLYIw-IU8I

All I have to do is take the video IDs and put them in the URL below:

http://www.youtube.com/watch_videos?video_ids=ID1,ID2,ID3,ID4…

So the new YouTube playlist will be located at:

https://www.youtube.com/watch_videos?video_ids=sjRTSkBHnyo,fhU5y7huAY8

Source: Labnol

Top 10 Youtube Tips to make Channel Popular


1.  Always make sure the sounds areat an appropriate level. That is to say that they are loud enough for anyone to hear. Often times, the sounds are awful. Fortunately, my friend's sound is adequate in portions.

2.  Have someone else hold the camera or use a tripod. This way, the camera will not shake and you will have a clear picture if the camera is focused correctly.

3.  Dress for success. What does this mean? Wear something appropriate that complements your complexion. If you are into what colors mean, you know what I am talking about. Here wear a color that goes well with your complexion and means what you are trying to say. Like, "I am happy." or "I mean business" for just a couple of examples. You might ask, "What color would I wear to show happy?" You might wear yellows or another bright color to complement your complexion. For business, we all know a dark conservative color does the trick.

4.  Smile. Sometimes we get used to looking stern because of our jobs or positions in life. We think we must look so serious while not realizing that that look sticks with us. That stern look becomes our natural. Have you ever gone to the grocery store not really thinking of anything negative and someone passes you and states, "Smile, things can't be that bad!" and you look up and began to smile while at the same time thinking to yourself that you must have had an evil or sad look on your face.

5.  Comb your hair. Even if you just took your hat off take your hand and brush you strands the best you can.

6.  Have fun or look like you are enjoying yourself. People tend to watch videos of people doing something crazy or stupid. So even though your video is about why you want to do something; have fun showing it on video do not make it look like a chore. So go ahead have fun doing it.

7.  Try to tape somewhere without background noise. Unless that's what you want. Let's say you want the roar of the sea or the people playing volleyball in the background. You don't want the competition of voices in your background.

8.  Set you video up so people are willing to give you feedback on your project.

9.  Make sure you read all the rules and title your video correctly according to the contest rules, if it's a contest you are entering.

10. Use a video editor that you are familiar with and know how to use.

List of All Blogger Template Codes Tips & Tricks


I'm a Blogger Template Designer so i know almost every Blogger Template's Code that need to build a Blogger Template. This list of Codes is very helpful for new Blogger Template Designer. Actually not only for Designers. Sometimes anyone want to show particular thing like comment numbered in his/her site. So this here is the list.

Conditional Tags

To Show something on Home Page only.
<b:if cond='data:blog.url == data:blog.homepageUrl'>
 Codes here
</b:if>

To Hide something from Home Page only.
<b:if cond='data:blog.url != data:blog.homepageUrl'>
 Codes here
</b:if>

To Show something on Post Pages.
<b:if cond='data:blog.pageType == "item"'>
 Codes here
</b:if>

To Hide something from Post Pages
<b:if cond='data:blog.pageType != "item"'>
 Codes here
</b:if>

To Show something on Pages.
<b:if cond='data:blog.pageType == "static_page"'>
Codes here
</b:if>

To Hide Something from Pages.
<b:if cond='data:blog.pageType != "static_page"'>
Codes here
</b:if>

To Show Something on particular URL.
<b:if cond='data:blog.url == "URL of the page"'>
Codes here
</b:if>

To Hide Something from Particular URL.
<b:if cond='data:blog.url != "URL of the page"'>
Codes here
</b:if>

To Show something on Post Pages and Pages.
<b:if cond='data:blog.url == data:post.url'>
Codes here
</b:if>

To Hide something from Post Pages and Pages.
<b:if cond='data:blog.url != data:post.url'>
Codes here
</b:if>

To Show Something on Home Page, Archive Page and Search Page
<b:if cond='data:blog.pageType == "index"'>
Codes here
</b:if>

To Hide Something from Home Page, Archive Page and Search Page
<b:if cond='data:blog.pageType != "index"'>
Codes here
</b:if>

To Show Something on Archive Page only.
<b:if cond='data:blog.pageType == "archive"'>
Codes here
</b:if>

To Hide Something from Archive Page only.
<b:if cond='data:blog.pageType != "archive"'>
Codes here
</b:if>

To Show Something on Error Page.
<b:if cond='data:blog.pageType == "error_page"'>
Codes here
</b:if>

To Hide Something from Error Page
<b:if cond='data:blog.pageType != "error_page"'>
Codes here
</b:if>

To Show Something on Search Page only.
<b:if cond='data:blog.searchLabel'>
Codes here
</b:if>

To Show Something on First Post only.
<b:if cond='data:post.isFirstPost'>
Codes here
</b:if>

Author Codes

Author Name:
 <data:post.author/>

Author Profile URL:
<data:post.authorProfileUrl/>

Author Image:
<data:post.authorPhoto.url/>

Time Stamp
<data:post.timestamp/>

Numbered Comments figure
<data:post.numComments/>

Full Comments Stamp
<b:if cond='data:post.allowComments'>
<b:include data='post' name='comment_count_picker'/>
</b:if>

Label(s)
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
</b:loop>
</b:if>

Location
<b:if cond='data:top.showLocation'>
<b:if cond='data:post.location'>
<a expr:href='data:post.location.mapsUrl' target='_blank'><data:post.location.name/></a>
</b:if>
</b:if>

Email me
<b:if cond='data:post.emailPostUrl'>
<a expr:href='data:post.emailPostUrl' expr:title='data:top.emailPostMsg'>
<img alt='' class='icon-action' height='13' src='http://img1.blogblog.com/img/icon18_email.gif' width='18'/>
</a>
</b:if>

Post Edit Pencil Icon
<b:include data='post' name='postQuickEdit'/>