Skip to content

Instantly share code, notes, and snippets.

@hapylestat
Created August 14, 2013 11:20
Show Gist options
  • Save hapylestat/6230152 to your computer and use it in GitHub Desktop.
Save hapylestat/6230152 to your computer and use it in GitHub Desktop.
Template for creating new PS Classes
#=================================as custom object
$<classname>_code={
function init(){
}
Export-ModuleMember -function init
}
$<classname>=new-module -ScriptBlock $<classname>_connect -AsCustomObject
#===============================insert as path of c# code
#Todo: add snipet here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment