mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 00:13:36 +01:00
Add documentation files
This commit is contained in:
parent
492b80a854
commit
c3186fa6ca
8
Docs/MD5.ps1
Normal file
8
Docs/MD5.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/MD5.ps1
|
||||
|
||||
## Synopsis
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
8
Docs/SHA1.ps1
Normal file
8
Docs/SHA1.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/SHA1.ps1
|
||||
|
||||
## Synopsis
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
8
Docs/SHA256.ps1
Normal file
8
Docs/SHA256.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/SHA256.ps1
|
||||
|
||||
## Synopsis
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/add-firewall-rules.ps1
Normal file
41
Docs/add-firewall-rules.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/add-firewall-rules.ps1
|
||||
|
||||
## Synopsis
|
||||
add-firewall-rules.ps1 [<path-to-executables>]
|
||||
|
||||
## Description
|
||||
Adds firewall rules for the given executables (needs administrator rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -PathToExecutables <String> Parameter
|
||||
|
||||
```
|
||||
-PathToExecutables <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\add-firewall-rules.ps1 C:\MyApp\bin
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/add-memo.ps1
Normal file
41
Docs/add-memo.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/add-memo.ps1
|
||||
|
||||
## Synopsis
|
||||
add-memo.ps1 [<text>]
|
||||
|
||||
## Description
|
||||
Adds the given memo text to $HOME/Memos.csv
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/add-memo.ps1 [[-text] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -text <String> Parameter
|
||||
|
||||
```
|
||||
-text <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\add-memo.ps1 "Buy apples"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/alert.ps1
Normal file
41
Docs/alert.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/alert.ps1
|
||||
|
||||
## Synopsis
|
||||
alert.ps1 [<message>]
|
||||
|
||||
## Description
|
||||
Handle and escalate the given alert message
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/alert.ps1 [[-Message] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Message <String> Parameter
|
||||
|
||||
```
|
||||
-Message <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\alert.ps1 "Harddisk failure"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-desktop.ps1
Normal file
29
Docs/cd-desktop.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-desktop.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-desktop.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's desktop folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-desktop.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-desktop.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-docs.ps1
Normal file
29
Docs/cd-docs.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-docs.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-docs.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's documents folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-docs.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-docs.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-downloads.ps1
Normal file
29
Docs/cd-downloads.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-downloads.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-downloads.ps1
|
||||
|
||||
## Description
|
||||
go to the user's downloads folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-downloads.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-downloads.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-dropbox.ps1
Normal file
29
Docs/cd-dropbox.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-dropbox.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-dropbox.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's Dropbox folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-dropbox.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-dropbox.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-home.ps1
Normal file
29
Docs/cd-home.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-home.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-home.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's home folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-home.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-home.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-music.ps1
Normal file
29
Docs/cd-music.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-music.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-music.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's music folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-music.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-music.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-onedrive.ps1
Normal file
29
Docs/cd-onedrive.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-onedrive.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-onedrive.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's OneDrive folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-onedrive.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-onedrive.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-pics.ps1
Normal file
29
Docs/cd-pics.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-pics.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-pics.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's pictures folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-pics.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-pics.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
9
Docs/cd-recycle-bin.ps1
Normal file
9
Docs/cd-recycle-bin.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-recycle-bin.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-recycle-bin.ps1
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-repos.ps1
Normal file
29
Docs/cd-repos.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-repos.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-repos.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's Git repositories folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-repos.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-repos.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-root.ps1
Normal file
29
Docs/cd-root.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-root.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-root.ps1
|
||||
|
||||
## Description
|
||||
Go to the root directory (C:\ on Windows)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-root.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-root.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-scripts.ps1
Normal file
29
Docs/cd-scripts.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-scripts.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-scripts.ps1
|
||||
|
||||
## Description
|
||||
Go to the PowerShell Scripts folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-scripts.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-scripts.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-up.ps1
Normal file
29
Docs/cd-up.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-up.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-up.ps1
|
||||
|
||||
## Description
|
||||
Go one directory level up
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-up.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-up.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-up2.ps1
Normal file
29
Docs/cd-up2.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-up2.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-up2.ps1
|
||||
|
||||
## Description
|
||||
Go two directory levels up
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-up2.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-up2.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-up3.ps1
Normal file
29
Docs/cd-up3.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-up3.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-up3.ps1
|
||||
|
||||
## Description
|
||||
Go three directory levels up
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-up3.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-up3.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-up4.ps1
Normal file
29
Docs/cd-up4.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-up4.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-up4.ps1
|
||||
|
||||
## Description
|
||||
Go four directory levels up
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-up4.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-up4.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/cd-videos.ps1
Normal file
29
Docs/cd-videos.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cd-videos.ps1
|
||||
|
||||
## Synopsis
|
||||
cd-videos.ps1
|
||||
|
||||
## Description
|
||||
Go to the user's videos folder
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cd-videos.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cd-videos.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/check-cpu-temp.ps1
Normal file
29
Docs/check-cpu-temp.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-cpu-temp.ps1
|
||||
|
||||
## Synopsis
|
||||
check-cpu-temp.ps1
|
||||
|
||||
## Description
|
||||
Checks the CPU temperature
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-cpu-temp.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-cpu-temp.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/check-dns-resolution.ps1
Normal file
29
Docs/check-dns-resolution.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-dns-resolution.ps1
|
||||
|
||||
## Synopsis
|
||||
check-dns-resolution.ps1
|
||||
|
||||
## Description
|
||||
Checks the DNS resolution with frequently used domain names
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-dns-resolution.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-dns-resolution.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/check-drive-space.ps1
Normal file
53
Docs/check-drive-space.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-drive-space.ps1
|
||||
|
||||
## Synopsis
|
||||
check-drive-space.ps1 [<drive>] [<min-level>]
|
||||
|
||||
## Description
|
||||
Checks the given drive for free space left
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Drive <String> Parameter
|
||||
|
||||
```
|
||||
-Drive <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -MinLevel <Int32> Parameter
|
||||
|
||||
```
|
||||
-MinLevel <Int32>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value 20
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-drive-space.ps1 C
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-file-system.ps1
Normal file
41
Docs/check-file-system.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-file-system.ps1
|
||||
|
||||
## Synopsis
|
||||
check-file-system.ps1 [<drive>]
|
||||
|
||||
## Description
|
||||
Checks the validity of the file system (needs admin rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Drive <String> Parameter
|
||||
|
||||
```
|
||||
-Drive <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-file-system.ps1 C
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/check-health.ps1
Normal file
29
Docs/check-health.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-health.ps1
|
||||
|
||||
## Synopsis
|
||||
check-health.ps1
|
||||
|
||||
## Description
|
||||
Checks the health of the local computer
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-health.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-health.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-ipv4-address.ps1
Normal file
41
Docs/check-ipv4-address.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-ipv4-address.ps1
|
||||
|
||||
## Synopsis
|
||||
check-ipv4-address.ps1 [<address>]
|
||||
|
||||
## Description
|
||||
Checks the given IPv4 address for validity
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Address <String> Parameter
|
||||
|
||||
```
|
||||
-Address <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-ipv4-address.ps1 192.168.11.22
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-ipv6-address.ps1
Normal file
41
Docs/check-ipv6-address.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-ipv6-address.ps1
|
||||
|
||||
## Synopsis
|
||||
check-ipv6-address.ps1 [<address>]
|
||||
|
||||
## Description
|
||||
Checks the given IPv6 address for validity
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Address <String> Parameter
|
||||
|
||||
```
|
||||
-Address <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-ipv6-address.ps1 fe80::200:5aee:feaa:20a2
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
42
Docs/check-mac-address.ps1
Normal file
42
Docs/check-mac-address.ps1
Normal file
@ -0,0 +1,42 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-mac-address.ps1
|
||||
|
||||
## Synopsis
|
||||
check-mac-address.ps1 [<MAC>]
|
||||
|
||||
## Description
|
||||
Checks the given MAC address for validity
|
||||
MAC address like 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -MAC <String> Parameter
|
||||
|
||||
```
|
||||
-MAC <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-mac-address.ps1 11:22:33:44:55:66
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/check-ping.ps1
Normal file
29
Docs/check-ping.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-ping.ps1
|
||||
|
||||
## Synopsis
|
||||
check-ping.ps1
|
||||
|
||||
## Description
|
||||
Checks the ping latency from the local computer to the internet
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-ping.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-ping.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-subnet-mask.ps1
Normal file
41
Docs/check-subnet-mask.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-subnet-mask.ps1
|
||||
|
||||
## Synopsis
|
||||
check-subnet-mask.ps1 [<address>]
|
||||
|
||||
## Description
|
||||
Checks the given subnet mask for validity
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -address <String> Parameter
|
||||
|
||||
```
|
||||
-address <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-subnet-mask.ps1 255.255.255.0
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-swap-space.ps1
Normal file
41
Docs/check-swap-space.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-swap-space.ps1
|
||||
|
||||
## Synopsis
|
||||
check-swap-space.ps1 [<min-level>]
|
||||
|
||||
## Description
|
||||
Checks the free swap space
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -MinLevel <Int32> Parameter
|
||||
|
||||
```
|
||||
-MinLevel <Int32>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value 50
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-swap-space.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-symlinks.ps1
Normal file
41
Docs/check-symlinks.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-symlinks.ps1
|
||||
|
||||
## Synopsis
|
||||
check-symlinks.ps1 [<dir-tree>]
|
||||
|
||||
## Description
|
||||
Checks every symlink in the given directory tree
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-symlinks.ps1 [[-DirTree] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -DirTree <String> Parameter
|
||||
|
||||
```
|
||||
-DirTree <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-symlinks.ps1 C:\MyApp
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-weather.ps1
Normal file
41
Docs/check-weather.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-weather.ps1
|
||||
|
||||
## Synopsis
|
||||
check-weather.ps1 [<location>]
|
||||
|
||||
## Description
|
||||
Checks the weather for critical values
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-weather.ps1 [[-Location] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Location <String> Parameter
|
||||
|
||||
```
|
||||
-Location <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-weather.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/check-windows-system-files.ps1
Normal file
29
Docs/check-windows-system-files.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-windows-system-files.ps1
|
||||
|
||||
## Synopsis
|
||||
check-windows-system-files.ps1
|
||||
|
||||
## Description
|
||||
Checks the validity of the Windows system files (requires admin rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-windows-system-files.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-windows-system-files.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/check-xml-file.ps1
Normal file
41
Docs/check-xml-file.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/check-xml-file.ps1
|
||||
|
||||
## Synopsis
|
||||
check-xml-file [<file>]
|
||||
|
||||
## Description
|
||||
Checks the given XML file for validity
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/check-xml-file.ps1 [[-File] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -File <String> Parameter
|
||||
|
||||
```
|
||||
-File <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\check-xml-file.ps1 myfile.xml
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
78
Docs/cherry-picker.ps1
Normal file
78
Docs/cherry-picker.ps1
Normal file
@ -0,0 +1,78 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/cherry-picker.ps1
|
||||
|
||||
## Synopsis
|
||||
cherry-picker.ps1 [<commit-id>] [<commit-message>] [<branches>] [<repo-dir>]
|
||||
|
||||
## Description
|
||||
Cherry-picks a Git commit into one or more branches (branch names need to be separated by spaces).
|
||||
NOTE: in case of merge conflicts the script stops immediately!
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/cherry-picker.ps1 [[-CommitID] <String>] [[-CommitMessage] <String>] [[-Branches] <String>] [[-RepoDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -CommitID <String> Parameter
|
||||
|
||||
```
|
||||
-CommitID <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -CommitMessage <String> Parameter
|
||||
|
||||
```
|
||||
-CommitMessage <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Branches <String> Parameter
|
||||
|
||||
```
|
||||
-Branches <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 4
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\cherry-picker.ps1 93849f889 "Fix typo" "v1 v2 v3"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/clean-repo.ps1
Normal file
41
Docs/clean-repo.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/clean-repo.ps1
|
||||
|
||||
## Synopsis
|
||||
clean-repo.ps1 [<repo-dir>]
|
||||
|
||||
## Description
|
||||
Cleans a Git repository from untracked files (including submodules, e.g. for a fresh build)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\clean-repo.ps1 C:\MyRepo
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/clean-repos.ps1
Normal file
41
Docs/clean-repos.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/clean-repos.ps1
|
||||
|
||||
## Synopsis
|
||||
clean-repos.ps1 [<parent-dir>]
|
||||
|
||||
## Description
|
||||
Cleans all Git repositories under the current/given directory from untracked files (including submodules)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -ParentDir <String> Parameter
|
||||
|
||||
```
|
||||
-ParentDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\clean-repos.ps1 C:\MyRepos
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/clear-recycle-bin.ps1
Normal file
29
Docs/clear-recycle-bin.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/clear-recycle-bin.ps1
|
||||
|
||||
## Synopsis
|
||||
clear-recycle-bin.ps1
|
||||
|
||||
## Description
|
||||
Removes the content of the recycle bin folder (can not be undo!)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/clear-recycle-bin.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\clear-recycle-bin.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/clone-repos.ps1
Normal file
41
Docs/clone-repos.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/clone-repos.ps1
|
||||
|
||||
## Synopsis
|
||||
clone-repos.ps1 [<parent-dir>]
|
||||
|
||||
## Description
|
||||
Clones well-known Git repositories under the current/given directory.
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/clone-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -ParentDir <String> Parameter
|
||||
|
||||
```
|
||||
-ParentDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\clone-repos.ps1 C:\MyRepos
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-calculator.ps1
Normal file
29
Docs/close-calculator.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-calculator.ps1
|
||||
|
||||
## Synopsis
|
||||
close-calculator.ps1
|
||||
|
||||
## Description
|
||||
Closes the calculator program gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-calculator.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-calculator.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-chrome.ps1
Normal file
29
Docs/close-chrome.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-chrome.ps1
|
||||
|
||||
## Synopsis
|
||||
close-chrome.ps1
|
||||
|
||||
## Description
|
||||
Closes the Web browser Google Chrome gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-chrome.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-chrome.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-cortana.ps1
Normal file
29
Docs/close-cortana.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-cortana.ps1
|
||||
|
||||
## Synopsis
|
||||
close-cortana.ps1
|
||||
|
||||
## Description
|
||||
Closes Cortana gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-cortana.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-cortana.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-edge.ps1
Normal file
29
Docs/close-edge.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-edge.ps1
|
||||
|
||||
## Synopsis
|
||||
close-edge.ps1
|
||||
|
||||
## Description
|
||||
Closes the Web browser Microsoft Edge gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-edge.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-edge.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-file-explorer.ps1
Normal file
29
Docs/close-file-explorer.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-file-explorer.ps1
|
||||
|
||||
## Synopsis
|
||||
close-file-explorer.ps1
|
||||
|
||||
## Description
|
||||
Closes Microsoft File Explorer gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-file-explorer.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-file-explorer.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-firefox.ps1
Normal file
29
Docs/close-firefox.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-firefox.ps1
|
||||
|
||||
## Synopsis
|
||||
close-firefox.ps1
|
||||
|
||||
## Description
|
||||
Closes the Firefox Web browser gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-firefox.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-firefox.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-netflix.ps1
Normal file
29
Docs/close-netflix.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-netflix.ps1
|
||||
|
||||
## Synopsis
|
||||
close-netflix.ps1
|
||||
|
||||
## Description
|
||||
Closes Netflix gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-netflix.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-netflix.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-onedrive.ps1
Normal file
29
Docs/close-onedrive.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-onedrive.ps1
|
||||
|
||||
## Synopsis
|
||||
close-onedrive.ps1
|
||||
|
||||
## Description
|
||||
Closes Microsoft OneDrive gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-onedrive.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-onedrive.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
65
Docs/close-program.ps1
Normal file
65
Docs/close-program.ps1
Normal file
@ -0,0 +1,65 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-program.ps1
|
||||
|
||||
## Synopsis
|
||||
close-program.ps1 [<full-program-name>] [<program-name>] [<program-alias-name>]
|
||||
|
||||
## Description
|
||||
Closes the processes of the given program gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-program.ps1 [[-FullProgramName] <String>] [[-ProgramName] <String>] [[-ProgramAliasName] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -FullProgramName <String> Parameter
|
||||
|
||||
```
|
||||
-FullProgramName <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -ProgramName <String> Parameter
|
||||
|
||||
```
|
||||
-ProgramName <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -ProgramAliasName <String> Parameter
|
||||
|
||||
```
|
||||
-ProgramAliasName <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-program.ps1 "Google Chrome" "chrome.exe"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-system-settings.ps1
Normal file
29
Docs/close-system-settings.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-system-settings.ps1
|
||||
|
||||
## Synopsis
|
||||
close-system-settings.ps1
|
||||
|
||||
## Description
|
||||
Closes the System Settings gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-system-settings.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-system-settings.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-thunderbird.ps1
Normal file
29
Docs/close-thunderbird.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-thunderbird.ps1
|
||||
|
||||
## Synopsis
|
||||
close-thunderbird.ps1
|
||||
|
||||
## Description
|
||||
Closes the mail client Mozilla Thunderbird gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-thunderbird.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-thunderbird.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-vlc.ps1
Normal file
29
Docs/close-vlc.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-vlc.ps1
|
||||
|
||||
## Synopsis
|
||||
close-vlc.ps1
|
||||
|
||||
## Description
|
||||
Closes the VLC media player gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-vlc.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-vlc.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/close-windows-terminal.ps1
Normal file
29
Docs/close-windows-terminal.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/close-windows-terminal.ps1
|
||||
|
||||
## Synopsis
|
||||
close-windows-terminal.ps1
|
||||
|
||||
## Description
|
||||
Closes Windows Terminal gracefully
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/close-windows-terminal.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\close-windows-terminal.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
65
Docs/configure-git.ps1
Normal file
65
Docs/configure-git.ps1
Normal file
@ -0,0 +1,65 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/configure-git.ps1
|
||||
|
||||
## Synopsis
|
||||
configure-git.ps1 [<full-name>] [<email-address>] [<favorite-editor>]
|
||||
|
||||
## Description
|
||||
Sets up the Git user configuration
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/configure-git.ps1 [[-FullName] <String>] [[-EmailAddress] <String>] [[-FavoriteEditor] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -FullName <String> Parameter
|
||||
|
||||
```
|
||||
-FullName <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -EmailAddress <String> Parameter
|
||||
|
||||
```
|
||||
-EmailAddress <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -FavoriteEditor <String> Parameter
|
||||
|
||||
```
|
||||
-FavoriteEditor <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\configure-git.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/convert-csv2txt.ps1
Normal file
41
Docs/convert-csv2txt.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-csv2txt.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-csv2txt.ps1 [<csv-file>]
|
||||
|
||||
## Description
|
||||
Converts the given CSV file into a text list
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-csv2txt.ps1 [[-Path] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Path <String> Parameter
|
||||
|
||||
```
|
||||
-Path <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-csv2txt.ps1 salaries.csv
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
89
Docs/convert-mysql2csv.ps1
Normal file
89
Docs/convert-mysql2csv.ps1
Normal file
@ -0,0 +1,89 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-mysql2csv.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-mysql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
||||
|
||||
## Description
|
||||
Convert the MySQL database table to a CSV file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-mysql2csv.ps1 [[-server] <String>] [[-database] <String>] [[-username] <String>] [[-password] <String>] [[-query] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -server <String> Parameter
|
||||
|
||||
```
|
||||
-server <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -database <String> Parameter
|
||||
|
||||
```
|
||||
-database <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -username <String> Parameter
|
||||
|
||||
```
|
||||
-username <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -password <String> Parameter
|
||||
|
||||
```
|
||||
-password <String>
|
||||
|
||||
Required? false
|
||||
Position? 4
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -query <String> Parameter
|
||||
|
||||
```
|
||||
-query <String>
|
||||
|
||||
Required? false
|
||||
Position? 5
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-mysql2csv.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/convert-ps2bat.ps1
Normal file
41
Docs/convert-ps2bat.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-ps2bat.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-ps2bat.ps1 [<pattern>]
|
||||
|
||||
## Description
|
||||
Converts PowerShell script(s) to .bat files
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-ps2bat.ps1 [[-Pattern] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Pattern <String> Parameter
|
||||
|
||||
```
|
||||
-Pattern <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-ps2bat.ps1 *.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
40
Docs/convert-ps2md.ps1
Normal file
40
Docs/convert-ps2md.ps1
Normal file
@ -0,0 +1,40 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-ps2md.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-ps2md.ps1 [<script>]
|
||||
|
||||
## Description
|
||||
Converts the comment-based help of a PowerShell script to Markdown
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-ps2md.ps1 [[-script] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -script <String> Parameter
|
||||
|
||||
```
|
||||
-script <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-ps2md.ps1 myscript.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
89
Docs/convert-sql2csv.ps1
Normal file
89
Docs/convert-sql2csv.ps1
Normal file
@ -0,0 +1,89 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-sql2csv.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-sql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
||||
|
||||
## Description
|
||||
Convert the SQL database table to a CSV file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-sql2csv.ps1 [[-server] <String>] [[-database] <String>] [[-username] <String>] [[-password] <String>] [[-query] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -server <String> Parameter
|
||||
|
||||
```
|
||||
-server <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -database <String> Parameter
|
||||
|
||||
```
|
||||
-database <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -username <String> Parameter
|
||||
|
||||
```
|
||||
-username <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -password <String> Parameter
|
||||
|
||||
```
|
||||
-password <String>
|
||||
|
||||
Required? false
|
||||
Position? 4
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -query <String> Parameter
|
||||
|
||||
```
|
||||
-query <String>
|
||||
|
||||
Required? false
|
||||
Position? 5
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-sql2csv.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/convert-txt2wav.ps1
Normal file
53
Docs/convert-txt2wav.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/convert-txt2wav.ps1
|
||||
|
||||
## Synopsis
|
||||
convert-txt2wav.ps1 [<text>] [<wav-file>]
|
||||
|
||||
## Description
|
||||
Converts the given text to a .WAV audio file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/convert-txt2wav.ps1 [[-Text] <String>] [[-WavFile] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Text <String> Parameter
|
||||
|
||||
```
|
||||
-Text <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -WavFile <String> Parameter
|
||||
|
||||
```
|
||||
-WavFile <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\convert-txt2wav.ps1 "Hello World" spoken.wav
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/copy-photos-sorted.ps1
Normal file
53
Docs/copy-photos-sorted.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/copy-photos-sorted.ps1
|
||||
|
||||
## Synopsis
|
||||
copy-photos-sorted.ps1 [<source-dir>] [<target-dir-tree>]
|
||||
|
||||
## Description
|
||||
Copies all photos in source-dir sorted by year and month into the target-dir-tree
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/copy-photos-sorted.ps1 [[-SourceDir] <String>] [[-TargetDirTree] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -SourceDir <String> Parameter
|
||||
|
||||
```
|
||||
-SourceDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -TargetDirTree <String> Parameter
|
||||
|
||||
```
|
||||
-TargetDirTree <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\copy-photos-sorted.ps1 C:\MyPhotos C:\MyPhotoAlbum
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/create-branch.ps1
Normal file
53
Docs/create-branch.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/create-branch.ps1
|
||||
|
||||
## Synopsis
|
||||
create-branch.ps1 [<new-branch-name>] [<repo-dir>]
|
||||
|
||||
## Description
|
||||
Creates and switches to a new branch in a Git repository
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/create-branch.ps1 [[-NewBranchName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -NewBranchName <String> Parameter
|
||||
|
||||
```
|
||||
-NewBranchName <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\create-branch.ps1 moonshot
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
65
Docs/create-shortcut.ps1
Normal file
65
Docs/create-shortcut.ps1
Normal file
@ -0,0 +1,65 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/create-shortcut.ps1
|
||||
|
||||
## Synopsis
|
||||
create-shortcut.ps1 [<shortcut>] [<target>] [<description>]
|
||||
|
||||
## Description
|
||||
Creates a new shortcut file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/create-shortcut.ps1 [[-shortcut] <String>] [[-target] <String>] [[-description] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -shortcut <String> Parameter
|
||||
|
||||
```
|
||||
-shortcut <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -target <String> Parameter
|
||||
|
||||
```
|
||||
-target <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -description <String> Parameter
|
||||
|
||||
```
|
||||
-description <String>
|
||||
|
||||
Required? false
|
||||
Position? 3
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\create-shortcut.ps1 C:\Temp\HDD C:\
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
8
Docs/create-symlink.ps1
Normal file
8
Docs/create-symlink.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/create-symlink.ps1
|
||||
|
||||
## Synopsis
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/create-tag.ps1
Normal file
53
Docs/create-tag.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/create-tag.ps1
|
||||
|
||||
## Synopsis
|
||||
create-tag.ps1 [<new-tag-name>] [<repo-dir>]
|
||||
|
||||
## Description
|
||||
Creates a new tag in a Git repository
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/create-tag.ps1 [[-NewTagName] <String>] [[-RepoDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -NewTagName <String> Parameter
|
||||
|
||||
```
|
||||
-NewTagName <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\create-tag.ps1 v1.7
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/decrypt-file.ps1
Normal file
53
Docs/decrypt-file.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/decrypt-file.ps1
|
||||
|
||||
## Synopsis
|
||||
decrypt-file.ps1 [<path>] [<password>]
|
||||
|
||||
## Description
|
||||
Decrypts the given file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/decrypt-file.ps1 [[-Path] <String>] [[-Password] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Path <String> Parameter
|
||||
|
||||
```
|
||||
-Path <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Password <String> Parameter
|
||||
|
||||
```
|
||||
-Password <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\decrypt-file-rules.ps1 C:\MyFile.txt "123"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/display-time.ps1
Normal file
41
Docs/display-time.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/display-time.ps1
|
||||
|
||||
## Synopsis
|
||||
display-time.ps1 [<seconds>]
|
||||
|
||||
## Description
|
||||
Displays the current time (for 10 seconds by default)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/display-time.ps1 [[-Seconds] <Int32>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Seconds <Int32> Parameter
|
||||
|
||||
```
|
||||
-Seconds <Int32>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value 10
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\display-time.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/download-dir.ps1
Normal file
41
Docs/download-dir.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/download-dir.ps1
|
||||
|
||||
## Synopsis
|
||||
download-dir.ps1 [<URL>]
|
||||
|
||||
## Description
|
||||
Downloads a directory tree from the given URL
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/download-dir.ps1 [[-URL] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -URL <String> Parameter
|
||||
|
||||
```
|
||||
-URL <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\download-dir.ps1 "https://www.cnn.com"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/download-file.ps1
Normal file
41
Docs/download-file.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/download-file.ps1
|
||||
|
||||
## Synopsis
|
||||
download-file.ps1 [<URL>]
|
||||
|
||||
## Description
|
||||
Downloads a file from the given URL
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/download-file.ps1 [[-URL] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -URL <String> Parameter
|
||||
|
||||
```
|
||||
-URL <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\download-file.ps1 "https://www.cnn.com/index.html"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/edit.ps1
Normal file
41
Docs/edit.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/edit.ps1
|
||||
|
||||
## Synopsis
|
||||
edit.ps1 <filename>
|
||||
|
||||
## Description
|
||||
Opens the built-in text editor to edit the given file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/edit.ps1 [[-Filename] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Filename <String> Parameter
|
||||
|
||||
```
|
||||
-Filename <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\edit.ps1 C:\MyFile.txt
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/enable-crash-dumps.ps1
Normal file
29
Docs/enable-crash-dumps.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/enable-crash-dumps.ps1
|
||||
|
||||
## Synopsis
|
||||
enable-crash-dumps.ps1
|
||||
|
||||
## Description
|
||||
Enables the writing of crash dumps
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/enable-crash-dumps.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\enable-crash-dumps.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/enable-god-mode.ps1
Normal file
29
Docs/enable-god-mode.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/enable-god-mode.ps1
|
||||
|
||||
## Synopsis
|
||||
enable-god-mode.ps1
|
||||
|
||||
## Description
|
||||
Enables the god mode (adds a new icon to the desktop)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/enable-god-mode.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\enable-god-mode.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/encrypt-file.ps1
Normal file
53
Docs/encrypt-file.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/encrypt-file.ps1
|
||||
|
||||
## Synopsis
|
||||
encrypt-file.ps1 [<path>] [<password>]
|
||||
|
||||
## Description
|
||||
Encrypts the given file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/encrypt-file.ps1 [[-Path] <String>] [[-Password] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Path <String> Parameter
|
||||
|
||||
```
|
||||
-Path <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Password <String> Parameter
|
||||
|
||||
```
|
||||
-Password <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\encrypt-file.ps1 C:\MyFile.txt "123"
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
9
Docs/enter-chat.ps1
Normal file
9
Docs/enter-chat.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/enter-chat.ps1
|
||||
|
||||
## Synopsis
|
||||
enter-chat.ps1
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/fetch-repo.ps1
Normal file
41
Docs/fetch-repo.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/fetch-repo.ps1
|
||||
|
||||
## Synopsis
|
||||
fetch-repo.ps1 [<repo-dir>]
|
||||
|
||||
## Description
|
||||
Fetches updates for a local Git repository (including submodules)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/fetch-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\fetch-repo.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/fetch-repos.ps1
Normal file
41
Docs/fetch-repos.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/fetch-repos.ps1
|
||||
|
||||
## Synopsis
|
||||
fetch-repos.ps1 [<parent-dir>]
|
||||
|
||||
## Description
|
||||
Fetches updates for all Git repositories under the current/given directory (including submodules)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/fetch-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -ParentDir <String> Parameter
|
||||
|
||||
```
|
||||
-ParentDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\fetch-repos.ps1 C:\MyRepos
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/generate-qrcode.ps1
Normal file
53
Docs/generate-qrcode.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/generate-qrcode.ps1
|
||||
|
||||
## Synopsis
|
||||
generate-qrcode.ps1 [<text>] [<image-size>]
|
||||
|
||||
## Description
|
||||
Generates a QR code image file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/generate-qrcode.ps1 [[-Text] <String>] [[-ImageSize] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Text <String> Parameter
|
||||
|
||||
```
|
||||
-Text <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -ImageSize <String> Parameter
|
||||
|
||||
```
|
||||
-ImageSize <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\generate-qrcode.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/hibernate.ps1
Normal file
29
Docs/hibernate.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/hibernate.ps1
|
||||
|
||||
## Synopsis
|
||||
hibernate.ps1
|
||||
|
||||
## Description
|
||||
Enables hibernate mode for the local computer (needs admin rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/hibernate.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\hibernate.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/inspect-exe.ps1
Normal file
41
Docs/inspect-exe.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/inspect-exe.ps1
|
||||
|
||||
## Synopsis
|
||||
inspect-exe.ps1 [<path-to-exe-file>]
|
||||
|
||||
## Description
|
||||
Prints basic information of the given executable file
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/inspect-exe.ps1 [[-PathToExe] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -PathToExe <String> Parameter
|
||||
|
||||
```
|
||||
-PathToExe <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\inspect-exe.ps1 C:\MyApp.exe
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-github-cli.ps1
Normal file
29
Docs/install-github-cli.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-github-cli.ps1
|
||||
|
||||
## Synopsis
|
||||
install-github-cli.ps1
|
||||
|
||||
## Description
|
||||
Installs GitHub CLI
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-github-cli.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-github-cli.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-google-chrome.ps1
Normal file
29
Docs/install-google-chrome.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-google-chrome.ps1
|
||||
|
||||
## Synopsis
|
||||
install-google-chrome.ps1
|
||||
|
||||
## Description
|
||||
Installs the latest Google Chrome browser
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-google-chrome.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-google-chrome.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-knot-resolver.ps1
Normal file
29
Docs/install-knot-resolver.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-knot-resolver.ps1
|
||||
|
||||
## Synopsis
|
||||
install-knot-resolver.ps1
|
||||
|
||||
## Description
|
||||
Installs the Knot Resolver (a DNS resolver daemon, needs admin rights).
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-knot-resolver.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-knot-resolver.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
41
Docs/install-signal-cli.ps1
Normal file
41
Docs/install-signal-cli.ps1
Normal file
@ -0,0 +1,41 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-signal-cli.ps1
|
||||
|
||||
## Synopsis
|
||||
install-signal-cli.ps1 [<version>]
|
||||
|
||||
## Description
|
||||
Installs signal-cli from github.com/AsamK/signal-cli. See the Web page for the correct version number.
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-signal-cli.ps1 [[-Version] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Version <String> Parameter
|
||||
|
||||
```
|
||||
-Version <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-signal-cli.ps1 0.11.12
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-ssh-client.ps1
Normal file
29
Docs/install-ssh-client.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-ssh-client.ps1
|
||||
|
||||
## Synopsis
|
||||
install-ssh-client.ps1
|
||||
|
||||
## Description
|
||||
Installs the SSH client (needs admin rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-ssh-client.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-ssh-client.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-ssh-server.ps1
Normal file
29
Docs/install-ssh-server.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-ssh-server.ps1
|
||||
|
||||
## Synopsis
|
||||
install-ssh-server.ps1
|
||||
|
||||
## Description
|
||||
Installs the SSH server (needs admin rights)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-ssh-server.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-ssh-server.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/install-wsl.ps1
Normal file
29
Docs/install-wsl.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/install-wsl.ps1
|
||||
|
||||
## Synopsis
|
||||
install-wsl.ps1
|
||||
|
||||
## Description
|
||||
Installs Windows Subsystem for Linux (WSL), needs admin rights
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/install-wsl.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\install-wsl.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/introduce-powershell.ps1
Normal file
29
Docs/introduce-powershell.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/introduce-powershell.ps1
|
||||
|
||||
## Synopsis
|
||||
introduce-powershell.ps1
|
||||
|
||||
## Description
|
||||
Introduces PowerShell to new users
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/introduce-powershell.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\introduce-powershell.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/list-aliases.ps1
Normal file
29
Docs/list-aliases.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-aliases.ps1
|
||||
|
||||
## Synopsis
|
||||
list-aliases.ps1
|
||||
|
||||
## Description
|
||||
Lists all PowerShell aliases
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-aliases.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-aliases.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/list-anagrams.ps1
Normal file
53
Docs/list-anagrams.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-anagrams.ps1
|
||||
|
||||
## Synopsis
|
||||
list-anagrams.ps1 [<word>] [<columns>]
|
||||
|
||||
## Description
|
||||
Lists all anagrams of the given word
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-anagrams.ps1 [[-Word] <String>] [[-Columns] <Int32>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -Word <String> Parameter
|
||||
|
||||
```
|
||||
-Word <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Columns <Int32> Parameter
|
||||
|
||||
```
|
||||
-Columns <Int32>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value 8
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-anagrams.ps1 Markus
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
9
Docs/list-automatic-variables.ps1
Normal file
9
Docs/list-automatic-variables.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-automatic-variables.ps1
|
||||
|
||||
## Synopsis
|
||||
list-automatic-variables.ps1
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/list-branches.ps1
Normal file
53
Docs/list-branches.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-branches.ps1
|
||||
|
||||
## Synopsis
|
||||
list-branches.ps1 [<repo-dir>] [<pattern>]
|
||||
|
||||
## Description
|
||||
Lists all branches in the current/given Git repository
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-branches.ps1 [[-RepoDir] <String>] [[-Pattern] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Pattern <String> Parameter
|
||||
|
||||
```
|
||||
-Pattern <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value *
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-branches.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/list-cheat-sheet.ps1
Normal file
29
Docs/list-cheat-sheet.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-cheat-sheet.ps1
|
||||
|
||||
## Synopsis
|
||||
list-cheat-sheet.ps1
|
||||
|
||||
## Description
|
||||
Lists the PowerShell cheat sheet
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-cheat-sheet.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-cheat-sheet.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/list-city-weather.ps1
Normal file
29
Docs/list-city-weather.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-city-weather.ps1
|
||||
|
||||
## Synopsis
|
||||
list-city-weather.ps1
|
||||
|
||||
## Description
|
||||
List the current weather of cities world-wide (west to east)
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-city-weather.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-city-weather.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
9
Docs/list-cli-tools.ps1
Normal file
9
Docs/list-cli-tools.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-cli-tools.ps1
|
||||
|
||||
## Synopsis
|
||||
list-cli-tools.ps1
|
||||
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/list-clipboard.ps1
Normal file
29
Docs/list-clipboard.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-clipboard.ps1
|
||||
|
||||
## Synopsis
|
||||
list-clipboard.ps1
|
||||
|
||||
## Description
|
||||
Lists the contents of the clipboard
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-clipboard.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-clipboard.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
29
Docs/list-cmdlets.ps1
Normal file
29
Docs/list-cmdlets.ps1
Normal file
@ -0,0 +1,29 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-cmdlets.ps1
|
||||
|
||||
## Synopsis
|
||||
list-cmdlets.ps1
|
||||
|
||||
## Description
|
||||
Lists all PowerShell cmdlets
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-cmdlets.ps1 [<CommonParameters>]
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-cmdlets.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
53
Docs/list-commits.ps1
Normal file
53
Docs/list-commits.ps1
Normal file
@ -0,0 +1,53 @@
|
||||
# PowerShell Script /home/mf/PowerShell/Scripts/list-commits.ps1
|
||||
|
||||
## Synopsis
|
||||
list-commits.ps1 [<repo-dir>] [<format>]
|
||||
|
||||
## Description
|
||||
Lists all commits in the current/given Git repository
|
||||
|
||||
## Syntax
|
||||
```powershell
|
||||
/home/mf/PowerShell/Scripts/list-commits.ps1 [[-RepoDir] <String>] [[-Format] <String>] [<CommonParameters>]
|
||||
```
|
||||
|
||||
## -RepoDir <String> Parameter
|
||||
|
||||
```
|
||||
-RepoDir <String>
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value "$PWD"
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
|
||||
## -Format <String> Parameter
|
||||
|
||||
```
|
||||
-Format <String>
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value compact
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
```
|
||||
## <CommonParameters>
|
||||
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
|
||||
|
||||
## Example
|
||||
```powershell
|
||||
PS>.\list-commits.ps1
|
||||
```
|
||||
|
||||
|
||||
## Notes
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
*Created by convert-ps2md.ps1*
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user