Tuesday, October 27, 2020

Download SHAREit for Android, PC and iOS

 




Download SHAREit for PC

It is Supported on Windows 10/8.1/8/7. Click the download button to download the EXE setup of SHAREit for your PC and simply double click the downloaded file to install it.

 


Download SHAREit for macOS

It requires Mac OS X 10.0 and higher. Click the download button to download the .dmg setup of SHAREit for your macOS and simply double click the downloaded file to install it. 


Download SHAREit for Android

It requires Android 4.1 and higher. Click the download button to download the .apk setup file of SHAREit for your android phone and follow these steps to install the .apk file.

  1. Download the APK file.
  2. When dialog box prompts click ‘Settings‘.
  3. Toggle on ‘Allow installation from this source’.
  4. Proceed back to the installation and click ‘Done‘.
  5. The app will be now installed on your android phone.


    Also, you can download from directly from google play here.

Tuesday, February 18, 2020

An Opportunity To Submit Your Article And Get it Published

We are here pleased to announce that from now you can also be a part of vision3020 by writing an article on any topic under the domain of IT. Send your article on our Email address.

Our team of experts will review your article within a week. If our team will approve and pass your article, it will be published on our website your credit.

In addition, a Good article may give you a chance to win a gift hampers. If we feel you are good at writing you may get a chance to be hired or we may pay you for your writings.

WHO CAN WRITE FOR US?

Ideally, these people can write better for us.
  • Software Engineers
  • Students of IT field
  • OR Anyone Good at writing

You have to take care of some things when you are writing.
  • Your article strictly should be on a topic under the domain of information technology.
  • It should not be pledged. (Avoid pledgerism)
  • Do research on the topic but write your own.
  • Rearrange after writing.
  • Read, Revise, Repeat.
Once you are done with it you just need to send it to this email address.

vision3020articles@gmail.com

Now you have done your part by sending us your article. For any query leave a comment we will entertain your query.

Wednesday, February 12, 2020

Allow access to your Gmail to other apps


I am a developer and building an application to send emails and if I’m using gmail then I may need some setting changes in my email account to enable my app to access my account.

There are three ways you can do this

      1)   Method 1st
Using this way you just need to click here  and follow the instructions.
By doing so you will go this page directly/by logging in and
allow less secure apps: ON. It will be colored blue on enabling it. You see the images for help and understanding.

Figure 1: It is in Disabled/Off mode
               
Figure 2: It is in Enabled/On mode
Now you will be able to send emails from your application.
      2)   Method 2nd
1.    Open you browser.
2.    Login to you gmail account.
3.    Go to google nine dotted button on top right corner.   
4.    A menu will be open you have to select first one named Account.
5.    On the left navigation panel, click Security.
6.    On the bottom of the page, in the Less secure app access panel, click Turn on access.
7.    Then allow less secure apps: ON


      3)   Method 3rd
1.    Open your browser.
2.    Login to your gmail account.
3.    Go to google nine dotted button on top right corner.
4.    Search in Search Google Account bar ‘Less secure app access’.
5.    Then allow less secure apps: ON

By using one of these method you will get allow less secure app on.

Send Email Using Gmail id Through SQL Server


Microsoft SQL Server supports the system stored procedures that are used to perform e-mail operations from within an instance of SQL Server.
This article will explain the process of sending email through SQL Server Step by step in very easy manners using GMAIL SMTP settings. For implementing the email setup you just need to follow these steps.

Step 1: Turn on the component Database Mail XPs

Turn on the component Database Mail XPs because if this will be disabled you cannot send the email from SQL Server. By default, this component is blocked for security reasons.

Just copy and paste these queries in the box into your SQL Server Query window and run it. 


SP_CONFIGURE'show advanced options', 1-- Shows advance options.
RECONFIGUREWITHOVERRIDE               
GO

SP_CONFIGURE'Database Mail XPs', 1-- Enable database mail server.
RECONFIGUREWITHOVERRIDE
GO

SP_CONFIGURE'show advanced options', 0–- Disabled again.
RECONFIGUREWITHOVERRIDE
GO

On successfully running these quires this message will appear.


NOTE:If you missed this step you get this error on sending email.





Msg 15281, Level 16, State 1, Procedure sp_send_dbmail, Line 0 [Batch Start Line 50]
SQL Server blocked access to procedure 'dbo.sp_send_dbmail' of component 'Database Mail XPs' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Database Mail XPs' by using sp_configure. For more information about enabling 'Database Mail XPs', search for 'Database Mail XPs' in SQL Server Books Online.




Step 2: Create an Account For Sending Mails
Creates a new Database Mail account holding information about an SMTP account. You to provide your valid Gmail Account information here such as Email id, password, display name, reply to etc.
The account you are going to provide here will be used to send emails. This will be a sender account.
To create account copy this code snippet and edit with your information and execute it.

EXEC msdb.dbo.sysmail_add_account_sp
@account_name ='Mahmood_Mail_Account'
,@description ='Send emails using SQL Server Stored Procedure'
,@email_address ='youremail573@gmail.com'
,@display_name ='Mahmood Raza Khan'
,@replyto_address ='youremail@gmail.com'
,@mailserver_name ='smtp.gmail.com'
,@username ='youremail@gmail.com'
,@password ='Password'
,@port = 587
,@enable_ssl = 1
GO

Step 3: CreateProfile for sending email in SQL Server

A Database Mail profile holds any number of Database Mail accounts. Database Mail stored procedures can refer to a profile by either the profile name or the profile id generated by this procedure.

The profile name and description can be changed with the stored procedure sysmail_update_profile_sp, while the profile id remains constant for the life of the profile.

To create profile copy this code snippet and edit with your information and execute it.


EXEC msdb.dbo.sysmail_add_profile_sp
@profile_name ='Mahmood_Email_Profile'
,@description ='Send emails using SQL Server Stored Procedure'
GO


Step 4: Add Account to Profile
Stored Proceduresysmail_add_profileaccount_sp is used to add an account to profile.
The stored procedure sysmail_add_profileaccount_sp is in the msdb database and is owned by the dbo schema. The procedure must be executed with a three-part name if the current database is not msdb.
To add an Account to a Profile copy this code snippet and edit with your information and execute it.

EXEC msdb.dbo.sysmail_add_profileaccount_sp
@profile_name ='Mahmood_Email_Profile'
,@account_name ='Mahmood_Mail_Account'
,@sequence_number = 1
GO

Step 5: Send Email By sp_send_dbmail Stored Procedure

Congratulations!!! Until this step you have setup your email configurations successfully.

But still, you may not receive email click here you will the find what to do. You need to enable access to less secure apps.

Now sends an e-mail message to the specified recipients. The message may include a query result set, file attachments, or both. When mail is successfully placed in the Database Mail queue, sp_send_dbmail returns the mailitem_id of the message. This stored procedure is in the msdb database.

For a complete reference of sp_send_dbmail Click here

To send email copy this code snippet and edit with your information and execute.

EXEC msdb.dbo.sp_send_dbmail
@profile_name ='Mahmood_Email_Profile'
,@recipients ='recipient@gmail.com'
,@subject ='Email from SQL Server'
,@body ='This is my First Email sent from SQL Server :)'
,@importance ='HIGH'
GO

I received an email from sql server.




Step 6: Check Your Mail Status

You can check your email status you have sent using sp_send_dbmail in sql server. Execute these three Store Procedure

If your email has unsent yet due to any reason
You will find a row in this sp
                1) sysmail_unsentitems

If your email was sent successfully
You will find a row in this sp
                2) sysmail_sentitems

If your email has not sent due to any reason
You will find a row in this sp
3) sysmail_failditems

Simply copy and execute these queries to check your email status


SELECT*FROM msdb.dbo.sysmail_unsentitems
SELECT*FROM msdb.dbo.sysmail_sentitems
SELECT*FROM msdb.dbo.sysmail_faileditems



Summary
In the article I have explained how you can send email using sql server and how you can check your email status. Hopefully you have understand the whole process successfully if you have any inconvenience regarding this process leave a comment under this article I will reply on you comment with answer.

Thursday, January 30, 2020

Download VLC Media Player For Free

VLC Media Player is that the hottest and robust multi-format, free media player available. The VLC Media Player was publically released in 2001 by the non-profit organization VideoLAN Project. VLC Media Player quickly became very fashionable because of its versatile multi-format playback capabilities. It was aided by compatibility and codec issues which rendered competitor media players like QuickTime, Windows and Real Media Player useless to several popular video and music file formats. The easy, basic UI and a large array of customization options have enforced VLC Media Player’s position at the highest of the free media players.

Flexible


VLC Media Player plays almost any video or music file format you'll find. At its launch, this was a revolution compared to the default media players most of the people were using that always crashed or displayed “codecs missing” error messages when trying to play media files. VLC Media Player can play MPEG, AVI, RMVB, FLV, QuickTime, WMV, MP4 and a shed load of other video and audio media file formats. Not only can VLC Media Player handle a lot of different formats, but VLC Media Player also can playback partial or incomplete audio and video media files so you'll preview downloads before they finish.


Easy to Use


VLC Media Player’s UI is certainly a case of function over beauty. The basic look does, however, make the media player extremely easy to use. Simply drag and drop files to play or open them using files and folders then use the classic media navigation buttons to play, pause, stop, skip, edit playback speed, change the volume, brightness, etc. A huge sort of skins and customization options mean the quality appearance shouldn’t be enough to stop you from choosing VLC as your default media player.


Advanced Features


Don’t let VLC Media Player’s simple interface fool you, within the playback, audio, video, tools, and consider tabs are an enormous sort of player options. You can play with synchronization settings including a graphic equalizer with multiple pre-sets, overlays, computer graphics, AtmoLight video effects, audio spatializer, and customizable range compression settings. You can even add subtitles to videos by adding the SRT file to the video’s folder.


Nutshell


VLC Media Player is sort of simply the foremost versatile, stable and high-quality free media player available. It has rightly dominated the free media player marketplace for over 10 years now and appears love it may for an additional 10 years because of the constant development and improvement by VideoLAN Org.





Download this if you are working on 32bit windows: 

VLC Media Player 32-bit3.0.8
Download this if you are working on 64bit windows:
VLC Media Player 64-bit3.0.8
Download this if you are using Mac OS X:

VLC Media Player 3.0.8 for Mac OS X