powershell Powershell模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Powershell模板相关的知识,希望对你有一定的参考价值。

<#
.NAME 
    XYZ
.VERSION 
    v1.0
.AUTHOR
    Jimmi Aylesworth
.DATE
    YYY-MMM-DD
.DESCRIPTION
   This scripts does
	  -- X
	  -- Y
	  -- Z

#>

#Clear out the prompt and print out a bit of info about this script
Clear-Host
Write-Host
Write-Host "Script Name: XYZ 1.0"
Write-Host "Author: Jimmi Aylesworth"
$Date = Get-Date -DisplayHint DateTime
Write-Host "Output created on: " , $Date
Write-Host

#Clear out your starting variables
$ServicesOnComputer1 = $Null
$ServicesOnComputer2 = $Null

#DO SOME STUFF

以上是关于powershell Powershell模板的主要内容,如果未能解决你的问题,请参考以下文章

powershell PowerShell脚本模板

powershell PowerShell:脚本模板版本2(无需记录)

powershell Powershell模板

powershell PowerShell脚本模板

powershell PowerShell:脚本模板

powershell PowerShell GUI的基本模板