Python is quite unusual in that blocks of statements are defined not with the usual markers, { and }, or begin and end, but by the actual indention of the code itself.
Perl Hashes
Variables whose names begin with %
are hashes, which are essentially arrays subscripted by strings. As with arrays, %sue
is a hash, and it is a different variable from $sue
, though members of %sue
are selected by $sue{$s}
.
How To Configure DHCP Server 2016 Filters
DHCP Filters are primarily used to further shield an infrastructure by allowing or denying specific clients based on their MAC addresses. Setting up DHCP Filters is quite simple and works at the server level, not at Scope level.
Perl Arrays
Variables whose names begin with @
are arrays. If @sue
is an array, it is different variable from $sue
. However, members of @sue
are selected by $sue[$i]
.
Find Windows Log Files With ‘Errors’
The scenario is that we want an overview of our Windows log files. Time is short so we just want a list of the files which contain the most ‘Errors’. We will use PowerShell to achieve this.