powershell [PS:脚本模板]只是PowerShell脚本要遵循的模板。 #PowerShell #Template
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell [PS:脚本模板]只是PowerShell脚本要遵循的模板。 #PowerShell #Template相关的知识,希望对你有一定的参考价值。
# Source: GitHub: 9to5IT/Script_Template.ps1
# https://gist.github.com/9to5IT/9620683
#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>
.INPUTS
<Inputs if any, otherwise state None>
.OUTPUTS
<Outputs if any, otherwise state None - example: Log file stored in C:\Windows\Temp\<name>.log>
.NOTES
Version: 1.0
Author: <Name>
Creation Date: <Date>
Purpose/Change: Initial script development
.EXAMPLE
<Example goes here. Repeat this attribute for more than one example>
#>
#---------------------------------------------------------[Initialisations]--------------------------------------------------------
#Set Error Action to Silently Continue
$ErrorActionPreference = "SilentlyContinue"
#Dot Source required Function Libraries
. "C:\Scripts\Functions\Logging_Functions.ps1"
#----------------------------------------------------------[Declarations]----------------------------------------------------------
#Script Version
$sScriptVersion = "1.0"
#Log File Info
$sLogPath = "C:\Windows\Temp"
$sLogName = "<script_name>.log"
$sLogFile = Join-Path -Path $sLogPath -ChildPath $sLogName
#-----------------------------------------------------------[Functions]------------------------------------------------------------
<#
Function <FunctionName>{
Param()
Begin{
Log-Write -LogPath $sLogFile -LineValue "<description of what is going on>..."
}
Process{
Try{
<code goes here>
}
Catch{
Log-Error -LogPath $sLogFile -ErrorDesc $_.Exception -ExitGracefully $True
Break
}
}
End{
If($?){
Log-Write -LogPath $sLogFile -LineValue "Completed Successfully."
Log-Write -LogPath $sLogFile -LineValue " "
}
}
}
#>
#-----------------------------------------------------------[Execution]------------------------------------------------------------
#Log-Start -LogPath $sLogPath -LogName $sLogName -ScriptVersion $sScriptVersion
#Script Execution goes here
#Log-Finish -LogPath $sLogFile
以上是关于powershell [PS:脚本模板]只是PowerShell脚本要遵循的模板。 #PowerShell #Template的主要内容,如果未能解决你的问题,请参考以下文章
从 Powershell ISE 中的另一个 PS1 脚本调用 PowerShell 脚本 PS1
如何在powershell中执行击键?
Powershell远程脚本错误CryptAcquireContext期间出错
PowerShell 基础ps1 脚本的执行策略和相关渗透思想
PowerShell批量部署Hyper-V Windows虚机
Powershell .ps1 脚本不会运行/不存在?