As a course author, you can use special scripts that automate checking the implementation of learning tasks by students. For example, with a script you can check that a file was created by the student, or a user added, and so on.
To add a script to automatically assess that a student has implemented a task step:
Example
To check that a file exists in the environment (for example, when a student needs to download an application file at one of the lab steps), you might use the following PowerShell script:
$path = "path\to\file" if ([System.IO.File]::Exists($path)) { exit(0) } else { exit(1) }