Skip to content

Instantly share code, notes, and snippets.

View jouleSoft's full-sized avatar

Julio Jiménez Delgado jouleSoft

  • Ibermatica
  • Madrid
View GitHub Profile
@jouleSoft
jouleSoft / Script_Template.ps1
Last active March 8, 2021 13:11 — forked from 9to5IT/Script_Template.ps1
PowerShell: Script Template
#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>
@jouleSoft
jouleSoft / Logging_Functions.ps1
Created December 1, 2020 15:51 — forked from 9to5IT/Logging_Functions.ps1
PowerShell: Logging Functions
Function Log-Start{
<#
.SYNOPSIS
Creates log file
.DESCRIPTION
Creates log file with path and name that is passed. Checks if log file exists, and if it does deletes it and creates a new one.
Once created, writes initial logging data
.PARAMETER LogPath