We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.2.3
4.0.5
Using Convert-ADTDeployment on V3 script converts "Exit-Script" calls in the main script logic to invalid function calls.
V3 code: Exit-Script -ExitCode $someExitCode
V4 converted output (function does not exist): Exit-ADTScript -ExitCode $someExitCode
Possible V4 converted output: Close-ADTSession -ExitCode $someExitCode
Add following line under installation phase in v3 script: Exit-Script -ExitCode 71001
Windows 11 23H2
The text was updated successfully, but these errors were encountered:
DanGough
No branches or pull requests
Prerequisites
PSAppDeployToolkit.Tools version
0.2.3
PSAppDeployToolkit version
4.0.5
Describe the bug
Using Convert-ADTDeployment on V3 script converts "Exit-Script" calls in the main script logic to invalid function calls.
V3 code:
Exit-Script -ExitCode $someExitCode
V4 converted output (function does not exist):
Exit-ADTScript -ExitCode $someExitCode
Possible V4 converted output:
Close-ADTSession -ExitCode $someExitCode
Steps to reproduce
Add following line under installation phase in v3 script:
Exit-Script -ExitCode 71001
Environment data
Windows 11 23H2
The text was updated successfully, but these errors were encountered: