How to Automate SQL Server Express backups

Поділитися
Вставка
  • Опубліковано 19 вер 2024
  • Microsoft SQL Server Express editions doesn't have any schedule either jobs for maintenance plans because the SQL Server Agent component is not included in these editions. So, you have to take a different approach to backup your databases when you use these Express editions.
    In this video tutorial you are going to learn how to Automate SQL Server express backups using the sql server stored procedure, task scheduler and batch file.
    Download: www.itcoh.com/...
    Source: support.microso...

КОМЕНТАРІ • 142

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Sandro, That's wonderful. Thanks for watching the video, keep watching and keep leaning :D!

  • @imronwira
    @imronwira 4 роки тому

    This tutorial is very clear and helpful, there are configuration files that you set and shared, success is always for you

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Marie, yes this also works on SQL express 2008 and Windows Server 2008 R2. Let me now if you have any problem See Ya :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hi koshaugh, thanks for watching the video See Ya :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Anish, thanks for watching the video See Ya :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Moe, Yes this works on Windows Xp and SQL express 2008 if you have any problem if you have any problem See Ya :)

  • @markwilliams9771
    @markwilliams9771 7 років тому

    Just press Ctr + Shift + F after selecting the parameters for your back up in Management Studio and save the script to a sql file in your documents folder. Then run sqlcmd from the Windows Scheduler and call your sql file. It's that simple.

  • @sandrodwicahyo3479
    @sandrodwicahyo3479 11 років тому

    COOL ... awesome it work !! Thank u very much !!
    before I saw this video I always failed to make a batch file....thanks again buddy

  • @jimmyboyn
    @jimmyboyn 8 років тому

    well done video. Wish it was better quality HD video to see better but I think you covered it all.

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Felix, thanks for watching our videos well I don't know why its not working on your system I am using this everywhere without any problem. I can check it for you if you give me access to your system using teamviewer. See Ya :)

  • @TummalaAnvesh
    @TummalaAnvesh 9 років тому

    Hi Sachin, It is a clear demo. Also I am glad, that scripts works for me. I even tried to take the differential backup instead of daily taking the complete backup with a small change of 'D' instead of 'F' in the 12 Am batch file. But I am getting a new backup file with less size. What I am looking for is a way to merge the differences with existing backup. Is it possible with any script tweaks.

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Gowda, thanks for watching the video.Well I am sure if you will search on Google you can find so many tutorials on how to create a tables and database in sql server 2012 :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Solomon, Thanks for watching the video, this error comes when don't change the computer name properly in the DEL12PM.xml file before importing it into task scheduler. I will recommend you to bubble check the DEL12PM.xml for the changes you made in the computer name field. if you still having problem you give me the access to your system using teamviewer and I will solved it for you. My Skype id: Sachin.Samy See Ya :)

  • @mutiaradebrintha5124
    @mutiaradebrintha5124 7 років тому

    running well... really thank you, Sachin

  • @SachinSamy
    @SachinSamy  11 років тому

    Well i have never done this but i think you can do this by creating a script from sql server shrink and then using a T- SQL command. :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Felix, good news your problem is resolved.
    The problem was with the 12AM-backup and 12AM-backup file.
    Default instance is: . or computer name
    Named Instance is: .\SQLEXPRESS or computer name\SQLEXPRESS
    FOR YOU:- sqlcmd -S . -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
    FOR ME :- sqlcmd -S .\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
    See Ya enjoy :)

  • @nilkantdeshpande9461
    @nilkantdeshpande9461 7 років тому +2

    Hey sachin how can i change the location of my back up file. i dont want to store the backed up file in c drive.

  • @miguelaspeitia9977
    @miguelaspeitia9977 8 років тому

    Thank you Sachin, well explained.

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Mag, Thanks for watching the video did you seen the full video. The script automatically deletes the old backup once it reaches the defined date. please let me know if you have any problem See Ya :)

  • @coolwaterdvr
    @coolwaterdvr 9 років тому

    Thanks. Excellent tutorial. Helped me a lot.

    • @SachinSamy
      @SachinSamy  9 років тому

      cool water you're welcome :)

  • @rizkimaulana3111
    @rizkimaulana3111 6 років тому

    Hi Sachin Sammy,
    Can we change the back up method from "append" to "overwrite"? Please let me know the place to set it up? Many thanks!

  • @richardmurphy1714
    @richardmurphy1714 10 років тому

    nice job Samy. Any thoughts on modifying the batch file for delete only those files beyond the latest, say, 5 most recent?

    • @SachinSamy
      @SachinSamy  10 років тому

      Hey Richard, check this out but use this it at your own risk. stackoverflow.com/questions/13367746/batch-file-that-keeps-the-7-latest-files-in-a-folder

  • @peterrobearts6733
    @peterrobearts6733 7 років тому

    Sachin :) This helped for me. Big Thanks

  • @marioandresaguileraloyola3278
    @marioandresaguileraloyola3278 9 років тому

    Gracias,
    Esta muy bueno el tutorial. lo logre implementar en mi trabajo.

  • @nilkantdeshpande9461
    @nilkantdeshpande9461 7 років тому

    Really Helpful video nice job.

  • @clvlndpunk
    @clvlndpunk 9 років тому

    Hi Sachin, great video and work on this. I'm using Express 2014 and am having trouble with this, do you know if it works on the 2014 edition?

    • @SachinSamy
      @SachinSamy  9 років тому

      Michael Michelakis yes this also works on 2014 express

    • @SachinSamy
      @SachinSamy  9 років тому

      ***** if your still having issue can you give me the teamviewer so that i can check and troubleshoot the issue. you can contact me on skype my skype id Sachin.Samy :)

  • @ranjeetnbittu
    @ranjeetnbittu 8 років тому

    Very nice and valuable video.. Thanks!!

  • @j.q.6208
    @j.q.6208 6 років тому

    it worked for my SERVER that is not part of the Domain, but did not work for MY SERVER that is part of the domain, task scheduler does not giving error, but not backing up, any help is appreciated. please.

  • @sandrodwicahyo3479
    @sandrodwicahyo3479 11 років тому

    Hi Sachin, Your video really helped me, is there any way how to shrink automate log databse in sql server express? do you know?

  • @j.q.6208
    @j.q.6208 6 років тому

    very useful, need help how to change location of back up please?

  • @antechv8302
    @antechv8302 10 років тому

    Hi Sachin,
    first of all I would like to thank you for such a nice tutorial; appreciate your effort
    I am on test server which is windows 7 with sql server 2012; can you please confirm if this back up step would work with this configuration ?
    if it should work with this then my question is as below
    I exactly followed your steps
    to test back up I've changed my pc's time to 12 am/ 12 pm but I cant see back up
    I tried to run scheduler without changing time as well it didn't work so changed time
    is there is anything I am missing?
    thannk you so much for your time.

    • @SachinSamy
      @SachinSamy  10 років тому

      An techv it looks like that you're doing something wrong.
      see what is the error you are getting on the SQL script, just add ( pause ) at the end of the SQL script,
      Example:-
      ===================>

      sqlcmd -S .\SQLEXPRESS -U sa -P PA$$W0RD -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
      pause
      ===================>
      let me know if you have any problem you can also give me remote access of your system using teamviewer I can check what is the issue your having.
      skype my skype id Sachin.Samy :)

    • @antechv8302
      @antechv8302 10 років тому

      *****
      I sent you skype request;
      yesterday I imported task from right hand side "Import task" today I followed exact way the you did that is right click on task manager and import task
      now Its showing some different error " specified account name is not valid" which is strange for me

  • @oliverlu3259
    @oliverlu3259 9 років тому

    Hi Sachin, very nice demo. I have another question is how to change to network driver? I modified @backuplocation to W: or \\fileserver\back\ w/o luck. Please help. thanks in advance.

    • @SachinSamy
      @SachinSamy  9 років тому

      +oliver lu check out this msdn article msdn.microsoft.com/en-us/library/ms179313.aspx

  • @bradfit3
    @bradfit3 8 років тому

    Thanks, very helpful

  • @koshaugh2001
    @koshaugh2001 11 років тому

    Great video. Thank you!

  • @md.abulkalammusa3962
    @md.abulkalammusa3962 3 роки тому

    what if I login to sql server using sql login credential & not using windows login ? is there any issue with that? tnx for this tutorial.

  • @alaabenrhouma6717
    @alaabenrhouma6717 10 років тому

    Hello,
    thank you for this cool tutorial. I want to save the backup on a network location. Is there a way to do so ?

    • @SachinSamy
      @SachinSamy  10 років тому

      hey Ben, thanks for watching the video. see this if you want to take backup on a network location support.microsoft.com/kb/207187

    • @alaabenrhouma6717
      @alaabenrhouma6717 10 років тому

      ouukkii bro thank you very much :)

  • @luisamador2318
    @luisamador2318 8 років тому

    Hi, i follow your steps but when i try to run them manually nothings happens, any idea of what is happens? im using SQL 2008R2
    Thanks

    • @SachinSamy
      @SachinSamy  8 років тому

      +Luis Amador looks like a complicated issue you can take our professional help costing $50 USD contact me on Skype ID: Sachin.Samy

  • @InsideBest-zy8xs
    @InsideBest-zy8xs 9 років тому

    Hi,
    I have do the same thing whatever you suggested but when i run the scheduler manually not any thing happening. I saw when you run the scheduler manually then something run in CMD. but same thing not on my server.

    • @SachinSamy
      @SachinSamy  9 років тому

      pankaj kumar right click on edit the batch file (12AM-backup) check your computer's name and SQl server instance name. In the batch file the computer name is represented by a single dot and the Sequel server instance name is SQLExpress

    • @InsideBest-zy8xs
      @InsideBest-zy8xs 9 років тому

      *****
      It showing in batchfile is below.
      sqlcmd -S .\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
      Is it correct? or pls give me ur contact no.

    • @aevans190
      @aevans190 8 років тому

      +Sachin Samy Same thing is happening to me... I click run and nothing happens... I am on a Win 10 machine.. would that change anything?

  • @felixyoutuber
    @felixyoutuber 10 років тому

    Hi do we really need to use the XML file or we can just create a basic scheduled task? Will it make a difference?

    • @SachinSamy
      @SachinSamy  10 років тому

      Hey felix, yes you can use basic scheduled task there is no difference. let me know if you have any problem :)

    • @felixyoutuber
      @felixyoutuber 10 років тому

      ***** for some the delete batch file script work but not the backup batch :( any other suggestions?

    • @SachinSamy
      @SachinSamy  10 років тому

      Well you have to check the path of the folder in the delete batch file. if you have changed the path of the backup location you have to put the same path here. let me know if you have any problem :)

  • @hscsoft_tutorials
    @hscsoft_tutorials 9 років тому

    Geeeenioooous Bhai.....

    • @SachinSamy
      @SachinSamy  9 років тому

      +Prakash Dhimmer Thanks!

  • @sgossaye
    @sgossaye 11 років тому

    Thank you for your help I done all but when I try to import the task to the task scheduler it gives me error " an error has occurred for task Del12pm. error message: the specified account name is not valid

  • @murugeshl1505
    @murugeshl1505 Рік тому

    hai sachin i followed your video, the script run successfully but backup folder is empty pls help me

  • @JanardhanReddyTanubuddi
    @JanardhanReddyTanubuddi 6 років тому

    Then how to get the email alerts for backup failure or success

  • @muhammadshahbaz944
    @muhammadshahbaz944 7 років тому

    Working on sqlexpress server 2012 but not working kon sqlexpress server 2008R2

  • @thomaskershawlanka1777
    @thomaskershawlanka1777 7 років тому

    Hi Sachin i have successfully did automate to SQL Express 2005 using this process. But this is not working to SQL Express 2014 ? Please advise
    From Peter

    • @zyrocks2
      @zyrocks2 6 років тому

      Hey man! Did you find out the problem? Im currently on the same

  • @rmcest.6085
    @rmcest.6085 11 років тому

    Thanks Samy, nice video, i try this on SQL Server 2012 installed on Win 7, but not functioning is there any solution pls advise, thanks again

  • @9909striker
    @9909striker 6 років тому

    Hi sachin I am having some issues with creating the backup, can you please help me out

  • @mrchlperizo2665
    @mrchlperizo2665 Рік тому

    Hi, is this will work on SQL Express 2014 ? where can i download the zip
    files ?

    • @SachinSamy
      @SachinSamy  Рік тому

      From the below link you can download the the file
      www.itcoh.com/p/download.html
      Yes it should work on 2014 edition

  • @MoeCorly
    @MoeCorly 11 років тому

    Can we run this on Windows xp?I have xp sp3 and sql express 2008

  • @sujandhakal283
    @sujandhakal283 9 років тому

    Can i use this backup features on server 2008rs with sql 2014 express?

    • @SachinSamy
      @SachinSamy  9 років тому +1

      yes you can use it on server 2008r2

  • @beatrizvieira2271
    @beatrizvieira2271 10 років тому

    Help me, Error:
    The Executer permission was denied on the object sp_BackupDatabases database 'master' .dbo

    • @SachinSamy
      @SachinSamy  10 років тому

      check that you have full permission to take backups

  • @neisercp
    @neisercp 7 років тому

    hey sachin thanks for the video shared. i am unble to import xml file in scheduler. plz help. error is -- account name is invalid Help pliss

  • @sujandhakal283
    @sujandhakal283 9 років тому

    Hlo sir i have question regarding ssl certificate,i want to host my site i.e https for practice purpose,where can i find the demo version of certificate,sir please provide me the link if it is possible..

    • @SachinSamy
      @SachinSamy  9 років тому +1

      sujan dhakal for demo purposes you can use self signed ssl certificate check out our this video ua-cam.com/video/BYwOMuBDhPU/v-deo.html

  • @shanumanthgowda7734
    @shanumanthgowda7734 11 років тому

    hi can u tell me how to create tables and database in sql server2012 i am a beginner..plz help me..

  • @matthewlee581
    @matthewlee581 10 років тому

    very clear. tks

  • @itzpradiya
    @itzpradiya 7 років тому

    very helpful :D

  • @ksantoshkurma4110
    @ksantoshkurma4110 8 років тому

    Hello Sachin,
    i got a error the format of the task is not valid the following error was reported (1,56) plz help

    • @SachinSamy
      @SachinSamy  8 років тому

      sure I can help you contact me on my Skype ID: Sachin.Samy

  • @scottinwood
    @scottinwood 9 років тому

    Sachin, i have installed on a server 2012 r2 with sql 2012 express, script seems to run fine, but zero files turn up in backup folder. i seer others with same problem, is this a simple fix i can do without you logging in remotely as server is a production server and not mine, owner will not allow remote access :(

    • @SachinSamy
      @SachinSamy  9 років тому

      Scott Inwood
      Most probably the instance name of the sequel server is different in your server.
      Instead of the SQLEXPRESS you have to type of server instance name over there.
      See what is the error you are getting on the SQL script, just add ( pause ) at the end of the SQL script,
      Example:-
      ===================>

      sqlcmd -S .\SQLEXPRESS -U sa -P PA$$W0RD -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
      pause
      ===================>
      If you find these tutorials useful
      Please, consider making a small donation. Even a small amount of money can help us continuing our work Thanks!
      www.itzoz.com/p/donation.html

    • @scottinwood
      @scottinwood 9 років тому

      ***** Which file do i change the instance name in, mine is LFSRV\SQLLF my server name is LFSRV.
      I have changed the XML files Author and UserId to include LFSRV\Administrator. Batch file is unchanged. Script is unchanged and executes successfully. Bottom line under script reads Connected|LFSRV\SQLLF (11.0 SP2)|LFSRV\Administrator|Masters.
      The error when i run script is along the lines of..
      Sqlcmd: Error: MS SQL Server Native Client 11.0 : SQL Server Network Interfaces:Error locating Server/Instance Specified [xFFFFFFFF]
      Login timeout expired, Check instance name etc... If i get this working i will be happy to make an donation.

    • @scottinwood
      @scottinwood 9 років тому

      Scott Inwood Sachin, I just worked out, changed the Batch File from .\SQLEXPRESS to .\MYINSTANCENAME and all working,
      Will send you a donation now,
      Regards
      Scott

    • @SachinSamy
      @SachinSamy  9 років тому

      Scott Inwood That's Wonderful Thanks :)

  • @harikishoredirisala6321
    @harikishoredirisala6321 10 років тому

    Hi Sachin,
    Thanks for sharing this video, its very useful. I am getting error message while importing DEL12PM and DEL12AM to task scheuler. {erro message: The format of the task is not valid. The following error was reported (2,8); version1.3}

    • @SachinSamy
      @SachinSamy  10 років тому

      Hari Kishore Dirisala have you properly added the computer and username in the xml file ?

    • @harid9665
      @harid9665 10 років тому

      ***** Yes i did, Tried couple of times but same message.

    • @SachinSamy
      @SachinSamy  10 років тому

      hari kishore Dirisala Can you give me the teamviewer so that i can check and troubleshoot the issue. you can contact me on skype my skype id Sachin.Samy :)

  • @amiloduk
    @amiloduk 8 років тому

    Good Tutorial, poor sound and lack of resolution, but i managed to follow it none the less.
    I initially had a problem with this not working, in that the batch file would appear to run but there would be no backup's in the folder.
    I discovered my SQL instance was not .\SQLEXPRESS, in my case I was using the default MSSQLSERVER as the instance.
    As this is the default instance you do not need to use the instance name, but rather use the machine name instead. this is the code I used, in my case the machine name was ATSERVER:-
    sqlcmd -S ATSERVER -E -Q "EXEC sp_BackupDatabases @backupLocation='D:\SQLBackups\12AM\', @backupType='F'"
    I also changed the backup location to the D:\ drive. Hope this helps anyone else facing this issue.

    • @kevinblac2203
      @kevinblac2203 7 років тому

      Thanks man, faced the same issue and your advice helped.........Thanks again

  • @akaxjgocoaiejr
    @akaxjgocoaiejr 10 років тому

    Hi i cannot get the bat file to execute properly - i don't see the DOS screen popup and no backup files are generated. Logged on as an admin running test:
    sqlcmd -S .\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
    I verified everything on your video - let me know what you think

    • @akaxjgocoaiejr
      @akaxjgocoaiejr 10 років тому

      Changed above to this:
      sqlcmd -S servername\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"

    • @SachinSamy
      @SachinSamy  10 років тому

      Hey Seth, well this looks correct you might have some other problem. Do you have multiple instances of SQL running on the same server ? Check the SQLCMD is working when you run it on the Command Prompt.
      You also try the this:-
      cmd
      cd C:\Program Files\Microsoft SQL Server\110\Tools\Binn
      C:\Program Files\Microsoft SQL Server\110\Tools\Binn>sqlcmd -S servername\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
      If you still have a problem you give remote access using TeamViewer so that i can check the problem for you My Skype ID: Sachin.Samy
      See ya Bye :)

    • @akaxjgocoaiejr
      @akaxjgocoaiejr 10 років тому

      ***** The folder c:\program files\microsoft sql server has 3 directories in it. 80,90,100 - 80 has the tools in it. I do have sqlcmd running when i execute the command by itself it gives me another line with 1> so i know it works. When i run the sqlcmd -S servername\SQLEXPRESS -E -Q "EXEC sp_BackupDatabases @backupLocation='C:\Backups-All\Backup\12AM\', @backupType='F'"
      This just gives me a new line - nothing backed up, no dos screens
      I browsed the web some more and found the sql/query change in pipes but no change after restarting services

    • @SachinSamy
      @SachinSamy  10 років тому

      Hey Seth, Can you give remote access using TeamViewer so that i can check the problem for you My Skype ID: Sachin.Samy .

  • @naturalforever
    @naturalforever 6 років тому

    Excelente muchas gracias.

    • @SachinSamy
      @SachinSamy  6 років тому

      +naturalforever thanks for watching don't forget to like and subscribe

  • @diegogutierrez4952
    @diegogutierrez4952 8 років тому

    Very helpful :)

  • @jyothikuna350
    @jyothikuna350 8 років тому

    very nice video but instead of writing scripts how to back up automatically(monthly,yearly) using server agent jobs

    • @SachinSamy
      @SachinSamy  8 років тому

      I can help you in this issue you can contact me on my Skype ID sachin.samy

    • @jyothikuna350
      @jyothikuna350 8 років тому

      can u give me ur email ID or mobile no (it is asking in skype) but sorry..

  • @Bleszj
    @Bleszj 10 років тому

    Hi Sachin, thanks for your upload. its wonderful. but am facing some challenges in applying the procedure. Please can you help?

    • @SachinSamy
      @SachinSamy  10 років тому

      Bless Jasseh what is the issue you're having

  • @itzpradiya
    @itzpradiya 7 років тому

    Hello brother please teach how to sql mirroring ??

  • @ksantoshkurma4110
    @ksantoshkurma4110 8 років тому

    and its SQL server 2008 standard edition

  • @kuldeepkds
    @kuldeepkds 7 років тому

    hey sachin thanks for the video shared. i am unble to import xml file in scheduler. plz help. error is -- account name is invalid

    • @neisercp
      @neisercp 7 років тому

      my friend, I apologize, you arranged it, I also have the same error, please help

    • @MountainStateAngler
      @MountainStateAngler 6 років тому

      You guys have to import it as an a local admin, cannot be a domain account. Let me know if you still have this problemo..

  • @KARTHIK4B4
    @KARTHIK4B4 10 років тому

    Hi samy, Is it work for ms sql because you have explained about ms sql express. so could you please help me on this.

    • @SachinSamy
      @SachinSamy  10 років тому

      Karthik Tumalapally yes you can also use this for ms sql server, the configuration process is same as shown in the video, you just have to use the default instance name instead of the named instance. let me know if you have any problem!

    • @KARTHIK4B4
      @KARTHIK4B4 10 років тому

      i have done according to your guidelines,but its not taking the backup giving error like this
      HResult 0xFFFFFFFF, Level 16, State 1
      SQL Server Network Interfaces: Error Locating Server/Instance Specified [xFFFFFF
      FF].
      Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : A network-related or in
      stance-specific error has occurred while establishing a connection to SQL Server
      . Server is not found or not accessible. Check if instance name is correct and i
      f SQL Server is configured to allow remote connections. For more information see
      SQL Server Books Online..
      Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : Login timeout expired.
      C:\Backups-All\Automate\Batch-File>
      i have given instance name in respective file but its giving above error, please help me on this.

    • @SachinSamy
      @SachinSamy  10 років тому

      Karthik Tumalapally Can you give me the teamviewer so that i can check and troubleshoot the issue. you can contact me on skype. My Skype id Sachin.Samy :)

    • @KARTHIK4B4
      @KARTHIK4B4 10 років тому

      *****
      At what time you will be available.....

    • @SachinSamy
      @SachinSamy  10 років тому

      Karthik Tumalapally i am available at 9:30pm India Time Zone (UTC+05:30)

  • @kappani111
    @kappani111 11 років тому

    awesome

  • @matteovalent1565
    @matteovalent1565 2 роки тому

    someone can reply to this message with che query code?

    • @SachinSamy
      @SachinSamy  2 роки тому

      Download from here
      www.itzoz.com/p/download.html?m=1

  • @jameswebster9050
    @jameswebster9050 8 років тому

    helpful

    • @SachinSamy
      @SachinSamy  7 років тому

      Thank you watching the video

  • @TariyelEyyubov
    @TariyelEyyubov 8 років тому

    the video is helpful but quality is poor

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Imad, what is the error your getting ? I can't give you any solution until I don't know what is the error your getting. if you can give me the access to your system using teamviewer I will check it out and solved it for you. My Skype id: Sachin.Samy See Ya :)

  • @SachinSamy
    @SachinSamy  11 років тому

    Hey Felix, no problem at all my email is petercrys1@gmail.com

  • @SachinSamy
    @SachinSamy  11 років тому

    HI there,
    = If You Like This Video, Give It a Thumbs Up :)
    = Subscribe to receive email updates when we post new videos ;) ,
    = Share it with your technical IT friends "_" ,
    = if your facing? any technical problem or have any suggestion post your comment here or catch me on google+ or Gtalk :D!