Exit Code | Name | Description |
---|---|---|
0 | Purposely stopped | The container stopped normally and on purpose, often as part of an automated process. |
1 | Application error | The application crashed due to an uncaught exception, incorrect image reference, or other issue. |
125 | Container failed to run error | The docker run command failed to execute properly. Often caused by misconfigured images or permissions issues. |
126 | Command invoke error | A command inside the container was not executable (e.g., due to permission issues). |
127 | File or directory not found | A specified file or directory does not exist inside the container. |
128 | Invalid argument on exit | The container exited incorrectly with an invalid code (valid exit codes range from **0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-DropboxFolder { | |
[CmdletBinding()] | |
Param( | |
[string]$DropboxFolder, | |
[string]$OutputFolder, | |
[string]$FolderPath | |
) | |
$body = '{"path":"/'+$DropboxFolder+'"}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Script to Generate a Health Report. | |
.DESCRIPTION | |
This script will a generate a report of the cluster Health and its virtual machines, and then send it via email. | |
The information will be retrieved from the Virtual Machine Manager. | |
.NOTES | |
Author: Rafael de Jesus Medeiros <[email protected]> | |
GitHub: https://github.com/RafaelM1994/Powershell-Scripts/ | |
Creation Date: 11/09/2019 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Script to retrieve all of the bitlocker keys from the computer accounts. | |
.DESCRIPTION | |
This script will a generate a csv file that contains the name of the computers | |
and their respectives bitlocker keys that were stored in the Active Directory. | |
.NOTES | |
Author: Rafael de Jesus Medeiros <[email protected]> | |
GitHub: https://github.com/RafaelM1994/Powershell-Scripts/ | |
Creation Date: 12/01/2019 |