PoshCode Archive  Artifact [954aaa5283]

Artifact 954aaa528332a995f7c43644d9976e5e64d70cc680d723e5c51e078049e9fa9f:

  • File test.ps1 — part of check-in [b9aa9498c4] at 2018-06-10 13:37:50 on branch trunk — This file was uploaded by PowerGUI. (user: Poshoholic size: 530)

# encoding: ascii
# api: powershell
# title: test.ps1
# description: This file was uploaded by PowerGUI.
# version: 0.1
# type: function
# author: Poshoholic
# license: CC0
# function: Write-EventDetail
# x-poshcode-id: 4185
# x-archived: 2013-06-13T05:48:22
# x-published: 2013-05-29T04:58:00
#
#
function Write-EventDetail {
	param(
		$id
	)
	$id | Write-Host
	$Event | Write-Host
	$EventSubscriber | Write-Host
	$Sender | Write-Host
	$SourceEventArgs | Write-Host
	$SourceArgs | Write-Host
}

'test'