Skip to content

Commit

Permalink
(doc) WIP - Add docs for Assert-ValidChecksum
Browse files Browse the repository at this point in the history
  • Loading branch information
vexx32 committed Oct 3, 2024
1 parent 2eff204 commit e6c7c17
Showing 1 changed file with 138 additions and 0 deletions.
138 changes: 138 additions & 0 deletions src/content/docs/en-us/create/cmdlets/Assert-ValidChecksum.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
---
external help file: Chocolatey.PowerShell.dll-Help.xml
Module Name: Chocolatey.PowerShell
online version:
schema: 2.0.0
---
import Xref from '@components/Xref.astro';

# Assert-ValidChecksum

## SYNOPSIS
{{ Fill in the Synopsis }}

## SYNTAX

```
Assert-ValidChecksum [-Path] <String> [[-Checksum] <String>] [[-ChecksumType] <ChecksumType>] [[-Url] <String>]
[-IgnoredArguments <Object[]>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
{{ Fill in the Description }}

## EXAMPLES

### Example 1
```powershell
PS C:\> {{ Add example code here }}
```

{{ Add example description here }}

## PARAMETERS

### -Checksum
{{ Fill Checksum Description }}

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -ChecksumType
{{ Fill ChecksumType Description }}
```yaml
Type: ChecksumType
Parameter Sets: (All)
Aliases:
Accepted values: Md5, Sha1, Sha256, Sha512

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -IgnoredArguments
{{ Fill IgnoredArguments Description }}
```yaml
Type: Object[]
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases: File, FilePath

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Url
{{ Fill Url Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases: OriginalUrl

Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -ProgressAction
{{ Fill ProgressAction Description }}
```yaml
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### System.Object[]
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

0 comments on commit e6c7c17

Please sign in to comment.