[Windows] Cannot Copy Paste windows XP


Maybe this OS too old and i  recommend to move on to the next version of the OS Windows. but in some case there's a people still need this OS, mostly is developer. 

windows xp has many problem and i still using this windows for developer purpose. but lately, this os always problematic, especially on the issue of  copy and paste feature. where this feature is very vital for me. i already search the solution anywhere and there but there's nothing really solve my problem. and I finally found the solution on a forum and this is a solution if you cannot copy paste in windows XP.

the solution :


  • CTRL + W 
  • write here in RUN : C:\WINDOWS\system32\clipsrv.exe 
  • enter
  • done, now you copy paste working normally :D


[Windows] Date and Time in Command Prompt


Description
      File name is very important for information especially when backup files on server to storage in windows environment. we can use some command to add some date and time to filename.

HowTo


echo "Display Current Date and Time Now !!"

ECHO "YEAR :" %date:~-4%
ECHO "DATE :" %date:~4,2%
ECHO "DAY :" %date:~7,2%
ECHO "HOUR :" %time:~0,2%
ECHO "MINUTE :" %time:~3,2%
ECHO "SECOND :" %time:~6,2%

for example :

REN D:\name.log D:\name_%date:~-4%%date:~4,2%%date:~7,2%.log

The result  : name.log => name_20150712.log


you can combine this command with xcopy to get file from other server and add date or time as you like.


hope's this helps :D