Use this space to put some text. Update this text in HTML

468x60 banner ad

Advertise with Us

Powered by Blogger.

Wednesday 27 July 2016

Cant see Other Computers in Same Network



My desktop and laptop are both connected to the same network but cannot see in the network.

1. Goto my computer right click and then select properties

see all computer are in same workgroup.

2. Control Panel->Network and Sharing Center

3. Control Panel->Network and Sharing Center->Change Advanced Sharing Settings
and set as shown in screenshot below:
OR
Right click on Wi-Fi on right Corner of computer and then click on open Network and Sharing Center










now you have to see all computer in your network.





Thursday 21 July 2016

Direct Download Link

How to Generate Direct links of Google Drive, Dropbox files

If we are unable to send more than 10MB, 20 MB and More data through email by Outlook or Gmail. In our daily working environment some of us would want to share the direct links for the files, so that any user can initiate the download just by clicking that hyperlink.

Note: You can't create direct download URLs for the folders you have in Google drive and Onedrive. Instead, you can compress the folders as .rar or .zip archive and you can create direct URLs for those files.

  1. Google Drive
  2. Dropbox
  3. Onedrive (Skydrive)

 Google drive
As Google has updated the user interface of Google drive recently, I'm going to give instructions to obtain the share links in the new interface.
 
1. Type www.google.com on browser.
2. Click the wrench in the top right corner.


3. Then click on Drive.

4. New window is open then click on Go to Google Drive.
5. Login with your google Id or gmail ID.
6. Right click the file you want to create download link, then select share.

7. Now, click on 'Get sharable link'.
8. That's all now the link would have been copied to your clipboard.
9. Direct download link would be created without any problem.
10. Now you can send this above link to anyone for direct download data.
11. Copied Url directly Past on browser. 
Then click on file and click on download button.

Dropbox
Unlike Google drive & onedrive you can create direct URLs for folders too.

  1. Login to Dropbox.
  2. Hover over the folder you want to share directly and click 'Share' and then select 'Send link...'
  3. If it is a file then select 'Share'.
  4. Copy the URL under 'Link to file' or 'Link to folder'.
  5. Use the URL to create download link.

Note: You can simply create direct URLs for your Dropbox files by changing the '0' into '1' in the share URL.
Onedrive

  1. Right click the file, for which you want to create download URL, then select share.
  2. Then, click on 'Get a link'.
  3. Under 'Choose an option' select 'Public'.
  4. Click on 'Create link'.
  5. Now, you will be given a link. Use that to create direct link.



 

Wednesday 20 July 2016

Unable to create new folders on external hard drive

Hello everyone,
I have lot of many type of (word files, excel files and power point files) files on my external hard drive so I decided to tidy up by creating folders Suddenly I run into this error




Right click on drive and then click to Properties.
Go to the security tab and give full permission to everyone like user, administrator and system by clicking on Edit button and then select the permission checkbox and then click apply and ok.


Now you can able to create a folder.




Saturday 16 July 2016

How to Reset Your Windows-8-1 Laptop Desktop

Before beginning the restoration process, it is crucial that all of your important data be backed up on an external hard drive, or on a cloud storage service. All personal data (documents, photos, music) will be deleted during the recovery process.

Windows 8.1: Reset to Factory Settings

Windows 8.1 has a built-in feature that enables you to quickly and easily reset your computer to its factory default.
To begin, open the Charms bar from right down corner on mouse hover or click

 and click on Settings > Change PC settings > Update and Recovery:



Under the Recovery section, you will see two options: Refresh your PC without affecting your files and Remove everything and reinstall Windows. The latter option will completely reset your computer, deleting files and any personal information you have saved:



Once you select your option, you computer will begin its restoration process. The restoration process will take 1 or 2 hours times as per RAM and CPU performance to keep patience and wait for next step.

then select Language and Region Settings as in shown in picture.

Next step is to agree with license term.

then skip wireless network connection setting

then personalize  and enter you PC Name and then click Next.
 

 Then Just a moments windows will appear.




Friday 1 July 2016

Google Maps API Error



Google Maps API error: MissingKeyMapError [SOLVED]

 


 

Google Maps API error: Missing KeyMap Error, suddenly showing in your browser console? Here you have the explanation (and solution), directly from a Google employee:
Google just announced some changes to the Google Maps APIs authentication and usage limits:http://googlegeodevelopers.blogspot.com.au/2016/06/building-for-scale-updates-to-google.html
Usage of the Google Maps APIs now requires a key.

As of June 22, 2016 we are making the following changes to the Google Maps APIs Standard Plan:


1.            We no longer support keyless access (any request that doesn't include an API key). Future product updates are only available for requests made with an API key. API keys allow us to contact developers when required and help us identify misbehaving implementations.
2.            We have implemented a simple 25,000 map loads per day free limit to new Google Maps JavaScript API, Static Maps API, and Street View Image API implementations. The confusing 90-consecutive-day grace period for these APIs is being retired on October 12, 2016. With this change, developers can predictably plan for growth while media sites and US nonprofits can request more quota at no charge via our dedicated support programs.
3.            We have reduced the daily map load maximum limit you can purchase for Google Maps JavaScript API, Static Maps API, and Street View Image API from 1,000,000 to 100,000 requests per API.* We believe higher-volume developers are best served with a Premium Plan license, which includes technical support and a Service Level Agreement, and with this change we've also created consistency between Standard Plan quotas across our maps and web service APIs.
4.            We now count Google Maps JavaScript API client-side requests towards the daily limit of the associated web service API.*


How to fix the error: step-by-step tutorial

 

Don’t be panics, getting an API key (and integrating it) is really fast and simple:
1. Follow below link and click on Get a key:

Google Maps APIs – Get a key
2. Agree with the service Terms of Service:
Google Maps APIs – Agree with the terms
3. Choose a name for your new key and specify the websites on which the key usage will be allowed. Then click on Create:

Google Maps APIs – Generate a key
4. Write down your new API key, and click OK

Google Maps APIs – Generated key
5. Locate the file that contains the Google Maps script code on your website, and append your API key to it as a parameter:
<script async defer src="//maps.googleapis.com/maps/api/js?key=YOUR_API_KEY" type="text/javascript"></script>

If there aren’t other parameters, just add  ?key=YOUR_API_KEY at the very end of the src path; otherwise, add &key=YOUR_API_KEY instead, like this:

<script async defer src="//maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&key=YOUR_API_KEY" type="text/javascript"></script>

Obviously, in both cases you must replace YOUR_API_KEY  with your actual API key code.
5. Your API key should be up and running within 5 minutes. Enjoy!