My most common use of Groovy is for writing scripts. As such, I enjoy its characteristics that enable an improved script development experience, but I also notice features of Groovy that are less than ...
I am limited to batch scripting for one particular task we do and in it I need to schedule a task. I'm using schtasks to create the task and it works great except for the start time. This part of the ...
You'll wonder no more how to manipulate SSIS Package Variables via Script Tasks, once you're done reading this little tidbit. While not a difficult task, the question of how to manipulate SSIS package ...
for($i = 1; $i -le 5; $i ++) { New-Variable -Name var$i -Value "foo" } If I wanted to then list/refer back to those variables without explicitly calling them (because ...
Variables are just about the most ubiquitous element inside any PowerShell script. Variables can easily be created and referenced inside your script. But sometimes you just need to test to see if they ...
Skip one-click backup apps. This rsync script gives you full control over what gets saved and when, plus logs and a few hard-won lessons.
This post follows up on Part 1 by examining the many ways that you can test the value of variables – e.g., whether they equal particular strings like “yes” or “no”, if they have a numeric value, if ...