After working almost 5 years in small size software company in Pune, i decided to work with one of the biggest IT company in India. I joined new company on 11th April 2011. Probably i am going to work on Sharepooint 2010 and Commerce Server 2009 ( CS 2009). I have experience of Commerce Server 2007 already and this can be helpful for me to implement CS 2009.
Sharepoint is completely new for me though it should not be tough for me to learn it.
I would definitly try to write my expereince on Sharepoint and CS 2009 on my blog (At least twice a week).
Sunday, April 17, 2011
Tuesday, April 05, 2011
Backup Script
If you want to create backup script of data that you want to take backup on daily basis using some batch process and windows scheduler then below is the right option to go with. Copy below stuff in notepad and save it as .bat file and add to scheduler.
@ECHO OFF
CLS
SET DD=%DATE:~7,2%
SET MM=%DATE:~4,2%
SET YYYY=%DATE:~10,4%
SET HH=%TIME:~0,2%
SET MN=%TIME:~3,2%
SET SS=%TIME:~6,2%
SET FOLDER="%YYYY%-%MM%-%DD%-%HH%-%MN%-%SS%"
::START COPY WSSERVICE
xcopy "\\sharedlocation\website\wsService" d:\buildbackup\%FOLDER%\wsService /i /S /E /H /R /Y
::END COPY WSSERVICE
@ECHO OFF
CLS
SET DD=%DATE:~7,2%
SET MM=%DATE:~4,2%
SET YYYY=%DATE:~10,4%
SET HH=%TIME:~0,2%
SET MN=%TIME:~3,2%
SET SS=%TIME:~6,2%
SET FOLDER="%YYYY%-%MM%-%DD%-%HH%-%MN%-%SS%"
::START COPY WSSERVICE
xcopy "\\sharedlocation\website\wsService" d:\buildbackup\%FOLDER%\wsService /i /S /E /H /R /Y
::END COPY WSSERVICE
Subscribe to:
Posts (Atom)