Labels

Showing posts with label How to. Show all posts
Showing posts with label How to. Show all posts

Windows Master Control Panel shortcut-Monster GodMode

pardhans The godmode will enable the “Monster control panel” that includes all functions and is quite large.

 God Mode in Windows gives you the option to Configure all settings of the windows-related options under one single folder. However, Microsoft has strived their best to develop User-friendly System making it fast and simple. Windows 7 and Windows 8 has made it simpler by providing Start Menu Search option, which enables you to search any settings and tools easily without wasting time.

What is God Mode?

God Mode is a hidden shortcut, which provide access to all Windows Settings under one single place. God Mode was actually designed for Microsoft’s developer to test various aspects of windows from a single location. In reality, Microsoft never really named this shortcut as God Mode, but named as Windows Master Control Panel shortcut. God Mode is a name which came out from bloggers on the web and gained popularity by the name God Mode.
In Windows Vista or Windows 7 shortcuts then there's also the 'Godmode' folders.
The “Monster” Control Panel
The godmode will enable the “Monster control panel” that includes all functions and is quite large. See below for specific codes to create specific links.
  1. Create a new folder (right-click and click on “New Folder”). Right-click on the folder and click on rename, copy and paste this:
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
  1. This folder will now be a shortcut to the Windows 7 godmode.The godmode allows you to quickly access many Windows 7 functions via a GUI.
 or

 Create a shortcut with following path and set desired icon:

explorer.exe shell:::{ED7BA470-8E54-465E-825C-99712043E01C}


Specific Godmode Codes

There are other codes for specific features and functions. The “monster control panel” above will give you the complete list of all features at once, but that list is quite lengthy so you might want to create multiple, smaller and specific links:

Important: To use the codes below you have to insert the word “Godmode.” before the code and then insert the complete string as the folder name.'

Example: Godmode.{00C6D95F-329C-409a-81D7-C46C66EA7F33}

Control panel features Code
 
Enter a default location. {00C6D95F-329C-409a-81D7-C46C66EA7F33} 

Use biometric devices with Windows. {0142e4d0-fb7a-11dc-ba4a-000ffe7ab428} 

Select a power plan. {025A5937-A6BE-4686-A844-36FE4BEC8B6D} 

Select which icons and notifications appear on taskbar. {05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} 
 
Store credentials for automatic logon. {1206F5F1-0569-412C-8FEC-3204630DFB70} 

Install a program from the network. {15eae92e-f17a-4431-9f28-805e482dafd4} 

Choose the programs that Windows uses by default. {17cd9488-1228-4b2f-88ce-4298e93e0966} 
 
Assembly Cache Viewer. {1D2680C9-0E2A-469d-B787-065558BC7D43} 

Manage wireless networks. {1FA9085F-25A2-489B-85D4-86326EEDCD87} 

Network. {208D2C60-3AEA-1069-A2D7-08002B30309D} 

Computer. {20D04FE0-3AEA-1069-A2D8-08002B30309D} 

Devices and Printers. {2227A280-3AEA-1069-A2DE-08002B30309D} 

RemoteApp and Desktop Connections. {241D7C96-F8BF-4F85-B01F-E2B043341A4B} 
 
Windows Firewall. {4026492F-2F69-46B8-B9BF-5654FC07E423} 
 
Windows Explorer. {62D8ED13-C9D0-4CE8-A914-47DD628FB1B0} 
 
System. {78F3955E-3B90-4184-BD14-5397C15F1EFC} 

How to make a text area

www.pardhans.cu.cc Some  times we want to insert plain text into  Blog Post or template. This may be a piece of HTML code or JavaScript that    you would like readers to copy

Some  times we want to insert plain text into  Blog Post or template. This may be a piece of HTML code or JavaScript that you would like readers to copy, such as the “Link to Site” code in the sidebar. It could also be the Terms of a Legal Agreement that users can view. How to creat forms in Blogs? the text box can also be used in feedback forms for users to input feedback and comments.

The HTML code of the text box makes use of the <textarea> property. For the text box to be in a Blog Post, while drafting the Post, switch to “Edit HTML” mode to insert the following code. If it is to appear in the sidebar or other parts of the template, go to Template -> Page Elements -> Add a Page Element and select “HTML/JavaScript” and insert this code.

Text area readers can input text

The textarea HTML code which allows readers to input TEXT is this:-
Example:-1

<textarea rows="6" cols="60">
TEXT
</textarea>


The attribute cols indicates the number of visible columns. The rows shows the number of visible rows. Note that this simply sets the dimensions of the text box. The lines of text can exceed the specified area, and when that happens, there will be scrollbars at the sides to allow users to view all the contents. In the above code, users can input words and characters into the text area. There is no limit to the amount of text that can be inserted but browsers may have their own preset limits.

This is what readers will see...

Any one can edit the text field        Try it

You can use it for a -Link to This Site- Code.. Example:-2

<textarea rows="6" cols="50">
<a href="http://www.pardhans.cu.cc"><img border="0" src="http://img189.imageshack.us/img189/3497/promotesmall.png"></a>
</textarea>

This will produce...

OK ... Now make try to edit this....
Why can't?         .....because  it is read only text area.

Read Only Attribute in Textarea

To display a read only text just add a few words in to example:2  text area code
The textarea code is:-
Read Only Code.. Example:-3

<textarea rows="6" cols="50" name="Link to Site" readonly="readonly">
&lt;a href="http://www.pardhans.cu.cc"&gt;&lt;img border="0" src="http://img189.imageshack.us/img189/3497/promotesmall.png"&gt;&lt;/a&gt;
</textarea>

This code makes a result that....

Note: &lt; = <
      &gt; = >
      &lt;/ARMY/&gt; = </ARMY/>

Word Wrap in Textarea

This is perhaps more relevant when we apply the textarea code to forms. When the text reaches the end of a row, the words can be wrapped in these manners:-

"soft" wrap – text will wrap as the user types but line breaks are not included when the text is submitted in a form.

"hard" wrap – if users enter line breaks into the text, it will be shown in the submitted form.

wrap is "off" – this will put all the words in one line, without any line breaks or wrapping.

The default value is "soft" wrap.
Word Wrap Code.. Example:-4
<textarea rows="8" cols="30" wrap="hard">
TEXT
</textarea>




 Copy& paste This code to your Website

Will make this link back button

www.pardhans.cu.cc

Content








How to add Linkwithin To Blogger

pardhans Displaying links to “related posts” beneath individual entries on our blogs is a tried and trusted method of providing useful and interesting reading material for our readers.To add the related posts widget


How to add Linkwithin To blogspot BlogLinkWithin  has provided a simple and wonderful way to add related posts to a blogger blog. This method is very useful for those blogspot users who dont know much about coding and also for the other users.
First Now open up your Blogspot Blog in another tab, Login to your account.

Displaying links to “related posts” beneath individual entries on our blogs is a tried and trusted method of providing useful and interesting reading material for our readers.To add the related posts widget, visit LinkWithin and open up this link in another tab.


There you will see a box on the right side which asks you to fill information about your blog. Just fill the information and click on Get Widget.

Then you will reach a page which has information about adding the widget to your blog. Click on the Install Widget button given in the 1st point.Then you will be taken to Add Page Element page. Select the blog for which you want to add the widget and press ADD WIDGET.

Now that the widget has been added to your blog, it will be better if you place it just below the Blog Posts widget. Now click on Save and the widget has been added to your blog.

Popular Posts

Login

Add This Widget