mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-23 05:01:37 +01:00
Update the manuals
This commit is contained in:
parent
d4d37d66dd
commit
2e7c40cc3f
@ -1,8 +1,10 @@
|
||||
## Script: *add-firewall-rules.ps1*
|
||||
PS> *add-firewall-rules.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,7 +22,8 @@ add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./add-firewall-rules C:\MyApp\bin
|
||||
Adding firewall rule for C:\MyApp\bin\app1.exe
|
||||
@ -29,13 +32,16 @@ Adding firewall rule for C:\MyApp\bin\app2.exe
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -103,4 +109,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 07/29/2023 09:55:08)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *add-memo.ps1*
|
||||
PS> *add-memo.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script saves the given memo text to Memos.csv in your home folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
add-memo.ps1 [[-text] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ add-memo.ps1 [[-text] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./add-memo "Buy apples"
|
||||
✔️ saved to 📄/home/markus/Memos.csv
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -73,4 +79,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 07/29/2023 09:55:08)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *alert.ps1*
|
||||
PS> *alert.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script handles and escalates the given alert message.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
alert.ps1 [[-Message] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ alert.ps1 [[-Message] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./alert "Harddisk failure"
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -65,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 07/29/2023 09:55:08)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *build-repo.ps1*
|
||||
PS> *build-repo.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script builds a repository by supporting: cmake, configure, autogen, Imakefile, and Makefile.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
build-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ build-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./build-repo C:\MyRepo
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -171,4 +177,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 07/29/2023 09:55:08)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *build-repos.ps1*
|
||||
PS> *build-repos.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script builds all Git repositories in a folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./build-repos C:\MyRepos
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -76,4 +82,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 07/29/2023 09:55:08)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-autostart.ps1*
|
||||
PS> *cd-autostart.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's autostart folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-autostart.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-autostart.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-autostart
|
||||
📂C:\Users\Markus\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-crashdumps.ps1*
|
||||
PS> *cd-crashdumps.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the crash dumps directory (Windows only).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-crashdumps.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-crashdumps.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-crashdumps
|
||||
📂C:\Users\Markus\AppData\Local\CrashDumps
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-desktop.ps1*
|
||||
PS> *cd-desktop.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's desktop folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-desktop.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-desktop.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-desktop
|
||||
📂/home/Markus/Desktop
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-docs.ps1*
|
||||
PS> *cd-docs.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the documents folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-docs.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-docs.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-docs
|
||||
📂C:\Users\Markus\Documents
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-downloads.ps1*
|
||||
PS> *cd-downloads.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's downloads folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-downloads.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-downloads.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-downloads
|
||||
📂C:\Users\Markus\Downloads
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-dropbox.ps1*
|
||||
PS> *cd-dropbox.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's Dropbox folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-dropbox.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-dropbox.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-dropbox
|
||||
📂/home/Markus/Dropbox
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-dropbox.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-dropbox.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-etc.ps1*
|
||||
PS> *cd-etc.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the /etc directory.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-etc.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-etc.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-etc
|
||||
📂C:\Windows\System32\drivers\etc
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-etc.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-etc.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-fonts.ps1*
|
||||
PS> *cd-fonts.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the fonts folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-fonts.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-fonts.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-fonts
|
||||
📂C:\Windows\Fonts
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-fonts.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-fonts.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-home.ps1*
|
||||
PS> *cd-home.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's home directory.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-home.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-home.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-home
|
||||
📂/home/Markus
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-home.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-home.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *cd-logs.ps1*
|
||||
PS> *cd-logs.ps1*
|
||||
====================
|
||||
|
||||
cd-logs.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ cd-logs.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -45,4 +48,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-logs.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-logs.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-music.ps1*
|
||||
PS> *cd-music.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's music folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-music.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-music.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-music
|
||||
📂/home/Markus/Music
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-music.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-music.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-onedrive.ps1*
|
||||
PS> *cd-onedrive.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's OneDrive folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-onedrive.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-onedrive.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-onedrive
|
||||
📂/home/Markus/OneDrive
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-onedrive.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-onedrive.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-pics.ps1*
|
||||
PS> *cd-pics.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's pictures folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-pics.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-pics.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-pics
|
||||
📂/home/Markus/Pictures
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-pics.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-pics.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-public.ps1*
|
||||
PS> *cd-public.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the Public folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-public.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-public.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-public
|
||||
📂C:\Users\Public
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-public.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-public.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *cd-recycle-bin.ps1*
|
||||
PS> *cd-recycle-bin.ps1*
|
||||
====================
|
||||
|
||||
cd-recycle-bin.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ cd-recycle-bin.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +55,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-recycle-bin.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-recycle-bin.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-repos.ps1*
|
||||
PS> *cd-repos.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's Git repositories folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-repos.ps1 [[-Subpath] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ cd-repos.ps1 [[-Subpath] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-repos
|
||||
📂C:\Users\Markus\Repos
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -76,4 +82,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-repos.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-repos.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-root.ps1*
|
||||
PS> *cd-root.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-root.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-root.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-root
|
||||
📂C:\
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -51,4 +57,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-root.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-root.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *cd-screenshots.ps1*
|
||||
PS> *cd-screenshots.ps1*
|
||||
====================
|
||||
|
||||
cd-screenshots.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ cd-screenshots.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +55,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-scripts.ps1*
|
||||
PS> *cd-scripts.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the PowerShell scripts folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-scripts.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-scripts.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-scripts
|
||||
📂/home/Markus/PowerShell/Scripts
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-scripts.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-scripts.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-ssh.ps1*
|
||||
PS> *cd-ssh.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's SSH folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-ssh.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-ssh.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-ssh
|
||||
📂/home/Markus/.ssh
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-ssh.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-ssh.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *cd-temp.ps1*
|
||||
PS> *cd-temp.ps1*
|
||||
====================
|
||||
|
||||
cd-temp.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ cd-temp.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -49,4 +52,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-temp.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-temp.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-templates.ps1*
|
||||
PS> *cd-templates.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the templates folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-templates.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-templates.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-templates
|
||||
📂/home/Markus/Templates
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-templates.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-templates.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *cd-trash.ps1*
|
||||
PS> *cd-trash.ps1*
|
||||
====================
|
||||
|
||||
cd-trash.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ cd-trash.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +55,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-trash.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-trash.ps1 as of 07/29/2023 10:04:03)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-up.ps1*
|
||||
PS> *cd-up.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to one directory level up.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-up.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-up.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> .\cd-up
|
||||
📂C:\Users
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-up2.ps1*
|
||||
PS> *cd-up2.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to two directory level up.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-up2.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-up2.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-up2
|
||||
📂C:\
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up2.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up2.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-up3.ps1*
|
||||
PS> *cd-up3.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to three directory levels up.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-up3.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-up3.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-up3
|
||||
📂C:\
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up3.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up3.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-up4.ps1*
|
||||
PS> *cd-up4.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to four directory levels up.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-up4.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-up4.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-up4
|
||||
📂C:\
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up4.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up4.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-users.ps1*
|
||||
PS> *cd-users.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the users directory.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-users.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-users.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-users
|
||||
📂C:\Users
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-users.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-users.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-videos.ps1*
|
||||
PS> *cd-videos.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the user's videos folder.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-videos.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-videos.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-videos
|
||||
📂C:\Users\Markus\Videos
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-videos.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-videos.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *cd-windows.ps1*
|
||||
PS> *cd-windows.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script changes the working directory to the Windows directory.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
cd-windows.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ cd-windows.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./cd-windows
|
||||
📂C:\Windows
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-windows.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of cd-windows.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *change-wallpaper.ps1*
|
||||
PS> *change-wallpaper.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script downloads a random photo from Unsplash and sets it as desktop background.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./change-wallpaper
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -73,4 +79,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of change-wallpaper.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of change-wallpaper.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-apps.ps1*
|
||||
PS> *check-apps.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the application status and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-apps.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-apps.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-apps
|
||||
✅ 119 apps installed, 11 upgrades available
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -66,4 +72,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-apps.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-apps.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-battery.ps1*
|
||||
PS> *check-battery.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the status of the system battery and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-battery.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-battery.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-battery
|
||||
✅ 21% battery life, 54 min remaining
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -77,4 +83,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-battery.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-battery.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-bios.ps1*
|
||||
PS> *check-bios.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the BIOS status and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-bios.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-bios.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-bios
|
||||
✅ BIOS 'F6', release ALASKA - 1072009, S/N NXA82EV0EBB0760 by American Megatrends Inc.
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -68,4 +74,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-bios.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-bios.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-cpu.ps1*
|
||||
PS> *check-cpu.ps1*
|
||||
====================
|
||||
|
||||
check-cpu.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-cpu.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -100,4 +103,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-cpu.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-cpu.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-day.ps1*
|
||||
PS> *check-day.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines and speaks the current day by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-day.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-day.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-day
|
||||
✔️ It's Sunday.
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -51,4 +57,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-day.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-day.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-dns.ps1*
|
||||
PS> *check-dns.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script measures and prints the DNS resolution speed by using 200 popular domains.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-dns.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-dns.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-dns
|
||||
✅ DNS resolves 156.5 domains per second
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -68,4 +74,4 @@ foreach($row in $table){$nop=Resolve-DNSName $row.Domain}
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-dns.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-dns.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-drive-space.ps1*
|
||||
PS> *check-drive-space.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks a drive for free space left (20 GB by default).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
|
||||
@ -29,20 +31,24 @@ check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParamete
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-drive-space C
|
||||
✔️ 172 GB left on drive C (61 of 233 GB used)
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -85,4 +91,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-drive-space.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-drive-space.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-drives.ps1*
|
||||
PS> *check-drives.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks all drives for free space left.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-drives.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-drives.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-drives
|
||||
✅ C drive uses 87GB of 249GB
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -99,4 +105,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-drives.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-drives.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-dusk.ps1*
|
||||
PS> *check-dusk.ps1*
|
||||
====================
|
||||
|
||||
check-dusk.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-dusk.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -59,4 +62,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-easter-sunday.ps1*
|
||||
PS> *check-easter-sunday.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-easter-sunday.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-easter-sunday.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-easter-sunday
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -55,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-easter-sunday.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-easter-sunday.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-file-system.ps1*
|
||||
PS> *check-file-system.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the file system of a drive. It needs admin rights.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-file-system C
|
||||
✔️ file system on drive C is clean
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -69,4 +75,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-file-system.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-file-system.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-file.ps1*
|
||||
PS> *check-file.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines and prints the file type of the given file.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-file.ps1 [[-Path] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ check-file.ps1 [[-Path] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-file C:\my.exe
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -164,4 +170,4 @@ function Check-Header { param( $path )
|
||||
Check-Header $Path
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-file.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-file.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-firewall.ps1*
|
||||
PS> *check-firewall.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the status of the firewall and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-firewall.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-firewall.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-firewall
|
||||
✅ Firewall enabled
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -59,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-firewall.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-firewall.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-gpu.ps1*
|
||||
PS> *check-gpu.ps1*
|
||||
====================
|
||||
|
||||
check-gpu.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-gpu.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -62,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-hardware.ps1*
|
||||
PS> *check-hardware.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the hardware details of the local computer and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-hardware.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,7 +13,8 @@ check-hardware.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-hardware.ps1
|
||||
|
||||
@ -21,13 +24,16 @@ H A R D W A R E
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -57,4 +63,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-hardware.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-hardware.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-health.ps1*
|
||||
PS> *check-health.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the system health of the local computer (hardware, software, and network) and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-health.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,7 +13,8 @@ check-health.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-health.ps1
|
||||
|
||||
@ -21,13 +24,16 @@ H A R D W A R E
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +58,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-health.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-health.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-independence-day.ps1*
|
||||
PS> *check-independence-day.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-independence-day.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-independence-day.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-independence-day
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -55,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-independence-day.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-independence-day.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-ipv4-address.ps1*
|
||||
PS> *check-ipv4-address.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given IPv4 address for validity.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-ipv4-address 192.168.11.22
|
||||
✔️ IPv4 192.168.11.22 is valid
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -78,4 +84,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv4-address.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv4-address.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-ipv6-address.ps1*
|
||||
PS> *check-ipv6-address.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given IPv6 address for validity
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2
|
||||
✔️ IPv6 fe80::200:5aee:feaa:20a2 is valid
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -92,4 +98,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv6-address.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv6-address.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-iss-position.ps1*
|
||||
PS> *check-iss-position.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the position of the International Space Station (ISS) and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-iss-position.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-iss-position.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-iss-position
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -49,4 +55,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-iss-position.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-iss-position.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-mac-address.ps1*
|
||||
PS> *check-mac-address.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given MAC address for validity
|
||||
Supported MAC address formats are: 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
|
||||
|
||||
@ -21,20 +23,24 @@ check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-mac-address 11:22:33:44:55:66
|
||||
✔️ MAC address 11:22:33:44:55:66 is valid
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -81,4 +87,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-mac-address.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-mac-address.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-midnight.ps1*
|
||||
PS> *check-midnight.ps1*
|
||||
====================
|
||||
|
||||
check-midnight.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-midnight.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -57,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-midnight.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-midnight.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-month.ps1*
|
||||
PS> *check-month.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines and speaks the current month name by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-month.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-month.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-month
|
||||
✔️ It's December.
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -51,4 +57,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-month.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-month.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-moon-phase.ps1*
|
||||
PS> *check-moon-phase.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines the Moon phase and answers by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-moon-phase.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-moon-phase.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-moon-phase
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -70,4 +76,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-moon-phase.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-moon-phase.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-network.ps1*
|
||||
PS> *check-network.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the network details of the local computer and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-network.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,7 +13,8 @@ check-network.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-network.ps1
|
||||
|
||||
@ -23,13 +26,16 @@ N E T W O R K
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -57,4 +63,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-network.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-network.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-new-year.ps1*
|
||||
PS> *check-new-year.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the time until New Year and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-new-year.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-new-year.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-new-year
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-new-year.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-new-year.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-noon.ps1*
|
||||
PS> *check-noon.ps1*
|
||||
====================
|
||||
|
||||
check-noon.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-noon.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -56,4 +59,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-noon.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-noon.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-os.ps1*
|
||||
PS> *check-os.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the operating system status and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-os.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-os.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-os
|
||||
✅ Windows 10 Pro 64-bit (v10.0.19045, since 6/22/2021, S/N 00123-45678-15135-AAOEM, P/K AB123-CD456-EF789-GH000-WFR6P)
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -67,4 +73,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-os.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-os.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-outlook.ps1*
|
||||
PS> *check-outlook.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the inbox of Outlook for new/unread mails.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-outlook.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-outlook.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-outlook
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -57,4 +63,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-outlook.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-outlook.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-password.ps1*
|
||||
PS> *check-password.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the security status of the given password by haveibeenpwned.com
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-password.ps1 [[-password] <String>] [<CommonParameters>]
|
||||
|
||||
@ -19,20 +21,24 @@ check-password.ps1 [[-password] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-password qwerty
|
||||
⚠️ Bad password, it's already listed in 10584568 known security breaches!
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -88,4 +94,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-password.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-password.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-pending-reboot.ps1*
|
||||
PS> *check-pending-reboot.ps1*
|
||||
====================
|
||||
|
||||
check-pending-reboot.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-pending-reboot.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -88,4 +91,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-pending-reboot.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-pending-reboot.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-ping.ps1*
|
||||
PS> *check-ping.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script measures the ping roundtrip times from the local computer to 10 Internet servers.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-ping.ps1 [[-hosts] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-ping.ps1 [[-hosts] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-ping
|
||||
✅ Ping latency is 29ms average (13ms...109ms, 0 loss)
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -82,4 +88,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-powershell.ps1*
|
||||
PS> *check-powershell.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the PowerShell status and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-powershell.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-powershell.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-powershell
|
||||
✅ PowerShell Desktop edition 5.1.19041.2673 (10 modules, 1458 cmdlets, 172 aliases)
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -58,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-powershell.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-powershell.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-ps1-file.ps1*
|
||||
PS> *check-ps1-file.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given PowerShell script file(s) for validity.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-ps1-file *.ps1
|
||||
✔️ Valid PowerShell in myfile.ps1
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -70,4 +76,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ps1-file.ps1 as of 07/29/2023 09:55:09)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ps1-file.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-ram.ps1*
|
||||
PS> *check-ram.ps1*
|
||||
====================
|
||||
|
||||
check-ram.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-ram.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -95,4 +98,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ram.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-ram.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-repo.ps1*
|
||||
PS> *check-repo.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script verifies the integrity of a local Git repository.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,7 +22,8 @@ check-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-repo.ps1 C:\MyRepo
|
||||
⏳ (1/10) Searching for Git executable... git version 2.41.0.windows.3
|
||||
@ -34,13 +37,16 @@ PS> ./check-repo.ps1 C:\MyRepo
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -122,4 +128,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-repo.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-repo.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-santa.ps1*
|
||||
PS> *check-santa.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the time until Saint Nicholas Day and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-santa.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-santa.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-santa
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -50,4 +56,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-santa.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-santa.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-smart-devices.ps1*
|
||||
PS> *check-smart-devices.ps1*
|
||||
====================
|
||||
|
||||
check-smart-devices.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
|
||||
|
||||
@ -12,7 +14,8 @@ check-smart-devices.ps1
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -92,4 +95,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-smart-devices.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-smart-devices.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-software.ps1*
|
||||
PS> *check-software.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the software details of the local computer and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-software.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,7 +13,8 @@ check-software.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-software.ps1
|
||||
|
||||
@ -23,13 +26,16 @@ S O F T W A R E
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -61,4 +67,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-software.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-software.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-subnet-mask.ps1*
|
||||
PS> *check-subnet-mask.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given subnet mask for validity.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-subnet-mask 255.255.255.0
|
||||
✔️ subnet mask 255.255.255.0 is valid
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -78,4 +84,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-subnet-mask.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-subnet-mask.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-swap-space.ps1*
|
||||
PS> *check-swap-space.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the status of the swap space and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-swap-space
|
||||
✅ Swap space uses 63GB of 1856GB
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -101,4 +107,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *check-symlinks.ps1*
|
||||
PS> *check-symlinks.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks every symbolic link in a folder (including subfolders).
|
||||
It returns the number of broken symlinks as exit value.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-symlinks.ps1 [[-Folder] <String>] [<CommonParameters>]
|
||||
|
||||
@ -21,19 +23,23 @@ check-symlinks.ps1 [[-Folder] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-symlinks C:\Users
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -90,4 +96,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-symlinks.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-symlinks.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-time-zone.ps1*
|
||||
PS> *check-time-zone.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the time zone and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-time-zone.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-time-zone.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-time-zone
|
||||
✅ 11:13 AM W. Europe Summer Time (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna (+01:00 DST)
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -59,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-time-zone.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-time-zone.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-uptime.ps1*
|
||||
PS> *check-uptime.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries the computer's uptime and prints it.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-uptime.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-uptime.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-uptime
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -74,4 +80,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-uptime.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-uptime.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-vpn.ps1*
|
||||
PS> *check-vpn.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script queries and prints the status of the VPN connection(s).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-vpn.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-vpn.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-vpn.ps1
|
||||
✅ VPN to NASA L2TP is disconnected
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -59,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-vpn.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-vpn.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-weather.ps1*
|
||||
PS> *check-weather.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the current weather report.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-weather.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ check-weather.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-weather
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -75,4 +81,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-weather.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-weather.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-week.ps1*
|
||||
PS> *check-week.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines and speaks the current week number by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-week.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ check-week.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-week
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -48,4 +54,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-week.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-week.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-wind.ps1*
|
||||
PS> *check-wind.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script determines the current wind conditions and replies by text-to-speech (TTS).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-wind.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ check-wind.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-wind
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -66,4 +72,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-wind.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-wind.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-windows-system-files.ps1*
|
||||
PS> *check-windows-system-files.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the validity of the Windows system files. It requires admin rights.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-windows-system-files.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,20 +13,24 @@ check-windows-system-files.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-windows-system-files
|
||||
✔️ checked Windows system files
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -54,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-windows-system-files.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-windows-system-files.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *check-xml-file.ps1*
|
||||
PS> *check-xml-file.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script checks the given XML file for validity.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
check-xml-file.ps1 [[-file] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,20 +22,24 @@ check-xml-file.ps1 [[-file] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./check-xml-file myfile.xml
|
||||
✔️ XML file is valid
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -82,4 +88,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-xml-file.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of check-xml-file.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *clean-repo.ps1*
|
||||
PS> *clean-repo.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script deletes all untracked files and folders in a local Git repository (including submodules).
|
||||
NOTE: To be used with care! This cannot be undone!
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -21,19 +23,23 @@ clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./clean-repo C:\MyRepo
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -85,4 +91,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repo.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repo.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *clean-repos.ps1*
|
||||
PS> *clean-repos.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script cleans all Git repositories in a folder from untracked files (including submodules).
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./clean-repos C:\MyRepos
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -86,4 +92,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repos.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repos.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *clear-dns-cache.ps1*
|
||||
PS> *clear-dns-cache.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script clears the DNS client cache of the local computer.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
clear-dns-cache.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ clear-dns-cache.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./clear-dns-cache
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +58,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clear-dns-cache.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clear-dns-cache.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,9 +1,11 @@
|
||||
## Script: *clear-recycle-bin.ps1*
|
||||
PS> *clear-recycle-bin.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script removes the content of the recycle bin folder permanently.
|
||||
IMPORTANT NOTE: this cannot be undo!
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
clear-recycle-bin.ps1 [<CommonParameters>]
|
||||
|
||||
@ -12,19 +14,23 @@ clear-recycle-bin.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./clear-recycle-bin
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -52,4 +58,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clear-recycle-bin.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clear-recycle-bin.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *clone-repos.ps1*
|
||||
PS> *clone-repos.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script clones popular Git repositories into a target directory.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
clone-repos.ps1 [[-TargetDir] <String>] [<CommonParameters>]
|
||||
|
||||
@ -20,19 +22,23 @@ clone-repos.ps1 [[-TargetDir] <String>] [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./clone-repos C:\Repos
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -103,4 +109,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clone-repos.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of clone-repos.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-calculator.ps1*
|
||||
PS> *close-calculator.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the calculator application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-calculator.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-calculator.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-calculator
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ Stop-Process -name "CalculatorApp"
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-calculator.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-calculator.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-chrome.ps1*
|
||||
PS> *close-chrome.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Google Chrome Web browser gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-chrome.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-chrome.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-chrome
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-chrome.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-chrome.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-cortana.ps1*
|
||||
PS> *close-cortana.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes Microsoft's Cortana application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-cortana.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-cortana.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-cortana
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-cortana.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-cortana.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-edge.ps1*
|
||||
PS> *close-edge.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Microsoft Edge Web browser gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-edge.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-edge.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-edge
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-edge.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-edge.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-file-explorer.ps1*
|
||||
PS> *close-file-explorer.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Microsoft File Explorer application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-file-explorer.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-file-explorer.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-file-explorer
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-file-explorer.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-file-explorer.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-firefox.ps1*
|
||||
PS> *close-firefox.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Mozilla Firefox Web browser gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-firefox.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-firefox.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-firefox
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-firefox.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-firefox.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-git-extensions.ps1*
|
||||
PS> *close-git-extensions.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Git Extensions application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-git-extensions.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-git-extensions.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-git-extensions
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-git-extensions.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-git-extensions.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-magnifier.ps1*
|
||||
PS> *close-magnifier.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Windows Screen Magnifier application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-magnifier.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-magnifier.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-magnifier
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -42,4 +48,4 @@ tskill magnify
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-magnifier.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-magnifier.ps1 as of 07/29/2023 10:04:04)*
|
||||
|
@ -1,8 +1,10 @@
|
||||
## Script: *close-microsoft-paint.ps1*
|
||||
PS> *close-microsoft-paint.ps1*
|
||||
====================
|
||||
|
||||
This PowerShell script closes the Microsoft Paint application gracefully.
|
||||
|
||||
## Parameters
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
close-microsoft-paint.ps1 [<CommonParameters>]
|
||||
|
||||
@ -11,19 +13,23 @@ close-microsoft-paint.ps1 [<CommonParameters>]
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Example
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./close-microsoft-paint
|
||||
|
||||
```
|
||||
|
||||
## Notes
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
## Related Links
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Script Content
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-paint.ps1 as of 07/29/2023 09:55:10)*
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-paint.ps1 as of 07/29/2023 10:04:05)*
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user