powershell PowerShell:Set-ExitCodeAndExit(ReturnCode)

Posted

tags:

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

function Set-ExitCodeAndExit { 
	[CmdletBinding(SupportsShouldProcess=$True,DefaultParameterSetName="None")]
	PARAM(
        [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true, ParameterSetName="p1")]
        [int]
		$ExitCode
	)
	Write-Verbose "Setting ExitCode to $($ExitCode) and exiting..."
	# When a PowerShell script is called from a batch file or Command Prompt, this line allows a return code back to the calling shell
    $host.SetShouldExit($ExitCode)
    exit $ExitCode
}

以上是关于powershell PowerShell:Set-ExitCodeAndExit(ReturnCode)的主要内容,如果未能解决你的问题,请参考以下文章

使用powershell来设置时间

Powershell“Set-PSDebug -Trace 2”导致意外结果

powershell 创建一个SET

powershell SET-PowerShellUICulture

使用 set-acl 和 powershell 设置继承和传播标志

powershell自动提示、快速跳转、代理设置