Monthly Archives: May 2019

xcopy script on windows via task scheduler

xcopy \\192.168.3.55\c$\sqlbackup\*.* E:\BT_backup\galaxy\sqlbackup%date:~10,4%%date:~4,2%%date:~7,2% /e /i del \\192.168.3.55\c$\sqlbackup\*.* /q

Posted in Scripting | Comments Off on xcopy script on windows via task scheduler

xcopy script to USB

xcopy E:\Shares F:\BTspace /s /e /c /i /h /r /k /o /y /f

Posted in Scripting | Comments Off on xcopy script to USB

Disable right mouse click script II (on images)

Simply add the following code to the END of your page, right above the </body> tag: ———————————— <script language=”JavaScript1.2″> /* Disable right click script II (on images)- By Dynamicdrive.com For full source, Terms of service, and 100s DTHML scripts Visit … Continue reading

Posted in My Linux | Comments Off on Disable right mouse click script II (on images)

HTML redirect

One of the most requested items we get is “How do I make an html redirect page”. Strangely enough this is one of the easiest things to accomplish, but then anything is easy when you know how to do it! … Continue reading

Posted in My Linux | Comments Off on HTML redirect

openssl decode .csr

Extract information from the CSR $ openssl req -in shellhacks.com.csr -text -noout Verify the signature $ openssl req -in shellhacks.com.csr -noout -verify Whom the certificate will be issued to? $ openssl req -in shellhacks.com.csr -noout -subject Show the public key … Continue reading

Posted in My Linux | Comments Off on openssl decode .csr