REGEX remove blank lines:
FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html
FIND:
^(?:[\t ]*(?:\r?\n|\r))+
REGEX remove blank lines:
FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html
FIND:
^(?:[\t ]*(?:\r?\n|\r))+
| #requires -version 2 | |
| <# | |
| .SYNOPSIS | |
| <Overview of script> | |
| .DESCRIPTION | |
| <Brief description of script> | |
| .PARAMETER <Parameter_Name> | |
| <Brief description of parameter input required. Repeat this attribute if required> |
| #requires -Version 3.0 | |
| <# | |
| .SYNOPSIS | |
| My Veeam Report is a flexible reporting script for Veeam Backup and | |
| Replication. | |
| .DESCRIPTION | |
| My Veeam Report is a flexible reporting script for Veeam Backup and | |
| Replication. This report can be customized to report on Backup, Replication, |
| ######################################################################### | |
| # # | |
| # Script to set or clear read-only flag of an NTFS volume. # | |
| # # | |
| # Usage: .\set-ntfs-ro.ps1 set "MY DISK LABEL" # | |
| # .\set-ntfs-ro.ps1 clear "MY DISK LABEL" # | |
| # # | |
| # Author: Muhammed Demirbas, mmdemirbas at gmail dot com # | |
| # Date : 2013-03-23 # | |
| # # |
| ([adsi]'WinNT://domain/username,user').ChangePassword('oldpassword','newpassword') |