Batch file arguments count
Playing around today with a batch file and needed to work out the total number of arguments that have been passed. [bat] SET /A ArgCount=0 for %%a in (%*) do […]
Playing around today with a batch file and needed to work out the total number of arguments that have been passed. [bat] SET /A ArgCount=0 for %%a in (%*) do […]
Here is an interesting comparison between scripting languages. I was playing with getting the time 1 minute into the future in order to set up a scheduled command. So I […]
I was looking for a way to generate a log file name variable containing the current date and time. Yes normally I use vbscript and moving to Powershell however it […]
I was looking for a way to view the current VirtualCenter log file, and since VC uses a rotating log system I couldn’t simply have a shortcut on my desktop […]