Category: Scripting

A simple backup system with disk2vhd
article #265, updated 4811 days ago

This works, to back up C drive to \\DEST_SERVER\E$\SHARE, if disk2vhd.exe is within the path:

REM
REM A simple backup system using disk2vhd
REM
REM version 1.3, by J.E.B., 2011-02-22
REM
REM requires 'disk2vhd.exe' to be in the path
REM

setLocal EnableDelayedExpansion

REM "DRIVES" can be one drive identifier with colon, multiple separated by spaces,
REM or asterisk for all.  
REM "DEST" can be a drive letter or a UNC.

SET DRIVES="*"
SET DEST="\\SERVER\SHARE"

REM Keep most recent 4 VHD files in DEST, delete the rest

for /f "skip=4 tokens=* delims= " %%a in ('dir/b/o-d %DEST%\*.VHD') do (
del %DEST%\%%a
)

REM Backup to VHD

C:
cd \
DISK2VHD %DRIVES% %DEST%\D2VBK--%date:~-10,2%%date:~-7,2%%date:~-4,4%_TS.VHD

Categories:      

==============

Delete Windows share by script
article #172, updated 5039 days ago

Put the below in a VBS file and run it (from a batch file perhaps) with ‘wscript filename.vbs’.

' The name of the share.
strShareName = "SHARE"

' SERVERNAME has to be the hostname of the machine containing the sahre
Set objfServer = GetObject("WinNT://SERVERNAME/lanmanserver")
objfServer.Delete "Fileshare", strShareName
Set objfServer= Nothing

Categories:      

==============

Hidden Start – Run Console Applications & Batch Files without any Window in the Background
article #165, updated 5056 days ago

A great tool:

http://www.ntwind.com/software/utilities/hstart.html

Categories:      

==============

Example FTP batch (.CMD) script
article #153, updated 5110 days ago

A very good example is on this page:

http://ss64.com/nt/ftp.html

Categories:      

==============

A msgbox in a batch file
article #149, updated 5119 days ago

This works in .CMD files!  A nice little message box.

msg * Hello!!!!!!!!!!

Categories:      

==============

XPSP3 and Adobe Reader 9
article #139, updated 5148 days ago

Just learned this:  in scripted Web applications, there are sometimes incompatibilities between XPSP3 and Adobe Reader 9.  Sometimes both SP3 and Reader 9 have had to be rolled back to previous versions, sometimes just one of the two.

Categories: