<#
.SYNOPSIS
Abstruct for script.
.DESCRIPTION
This script gets hoge.
.PARAMETER Path
Path is hogehoge.
.INPUTS
None. This script does not correspond.
.OUTPUTS
System.Int32
If success, this script returns 0, otherwise -1.
.EXAMPLE
.\hoge.ps1
Start process.
.NOTES
This script is ...
#>
[CmdletBinding(
SupportsShouldProcess=$true,
ConfirmImpact="Medium"
)]
Param()
exit 0