Monday, March 25

.Bat commands

Hi ALL,

 Now I start to learn the fresh thing that is .BAT File concepts, also I tried something brand new in bat files.

 Needed Application : Notepad  
                                  Saved a file in .Bat format (Ex: sample.bat) Sample code:

@ECHO off
ECHO welcome, %username%
echo %dir%
PAUSE


Type this commend in notepad also save username.bat or else you convenient :)

 Next one somewhat good :) 

@echo off
Rundll32 user32,SwapMouseButton
msg * try this
msg * good look finding how to fix it and read my blog (http://balamr01.blogspot.in)



Once you run this bat file, it will change your mouse click option from left to right (enable the switch primary and secondary button option) 

Solution: reverts this GOTO: Control Panel-> select Mouse-> the uncheck the switch primary and secondary button option -> apply -> ok. 




Backup files to google drive using PHP coding

 Dear All, To backup files to Google Drive using PHP coding, you can use the Google Drive API and the Google Client Library for PHP. Here...