Add admin hint

This commit is contained in:
Markus Fleschutz 2021-04-07 13:57:53 +02:00
parent 1841a8a931
commit 777fe6d09e
4 changed files with 6 additions and 6 deletions

View File

@ -39,8 +39,8 @@ download.ps1, downloads the file/directory from the given URL
edit.ps1, edits the given file with the built-in text editor edit.ps1, edits the given file with the built-in text editor
enable-crash-dumps.ps1, enables the writing of crash dumps enable-crash-dumps.ps1, enables the writing of crash dumps
enable-god-mode.ps1, enables the god mode (adds a new icon to the desktop) enable-god-mode.ps1, enables the god mode (adds a new icon to the desktop)
enable-ssh-client.ps1, enables the SSH client enable-ssh-client.ps1, enables the SSH client (needs admin rights)
enable-ssh-server.ps1, enables the SSH server enable-ssh-server.ps1, enables the SSH server (needs admin rights)
encrypt-file.ps1, encrypts the given file encrypt-file.ps1, encrypts the given file
fetch-repo.ps1, fetches updates for the current/given Git repository (including submodules) fetch-repo.ps1, fetches updates for the current/given Git repository (including submodules)
fetch-repos.ps1, fetches updates for all Git repositories under the current/given directory (including submodules) fetch-repos.ps1, fetches updates for all Git repositories under the current/given directory (including submodules)

1 Script Description
39 edit.ps1 edits the given file with the built-in text editor
40 enable-crash-dumps.ps1 enables the writing of crash dumps
41 enable-god-mode.ps1 enables the god mode (adds a new icon to the desktop)
42 enable-ssh-client.ps1 enables the SSH client enables the SSH client (needs admin rights)
43 enable-ssh-server.ps1 enables the SSH server enables the SSH server (needs admin rights)
44 encrypt-file.ps1 encrypts the given file
45 fetch-repo.ps1 fetches updates for the current/given Git repository (including submodules)
46 fetch-repos.ps1 fetches updates for all Git repositories under the current/given directory (including submodules)

View File

@ -39,8 +39,8 @@ Mega Collection of PowerShell Scripts
* [check-swap-space.ps1](Scripts/check-swap-space.ps1) - checks the swap space for free space left * [check-swap-space.ps1](Scripts/check-swap-space.ps1) - checks the swap space for free space left
* [check-windows-system-files.ps1](Scripts/check-windows-system-files.ps1) - checks the validity of the Windows system files (needs admin rights) * [check-windows-system-files.ps1](Scripts/check-windows-system-files.ps1) - checks the validity of the Windows system files (needs admin rights)
* [enable-crash-dumps.ps1](Scripts/enable-crash-dumps.ps1) - enables the writing of crash dumps * [enable-crash-dumps.ps1](Scripts/enable-crash-dumps.ps1) - enables the writing of crash dumps
* [enable-ssh-client.ps1](Scripts/enable-ssh-client.ps1) - enables the SSH client * [enable-ssh-client.ps1](Scripts/enable-ssh-client.ps1) - enables the SSH client (needs admin rights)
* [enable-ssh-server.ps1](Scripts/enable-ssh-server.ps1) - enables the SSH server * [enable-ssh-server.ps1](Scripts/enable-ssh-server.ps1) - enables the SSH server (needs admin rights)
* [hibernate.ps1](Scripts/hibernate.ps1) - enables hibernate mode for the local computer (needs admin rights) * [hibernate.ps1](Scripts/hibernate.ps1) - enables hibernate mode for the local computer (needs admin rights)
* [list-drives.ps1](Scripts/list-drives.ps1) - lists all drives * [list-drives.ps1](Scripts/list-drives.ps1) - lists all drives
* [list-network-shares.ps1](Scripts/list-network-shares.ps1) - lists the network shares of the local computer * [list-network-shares.ps1](Scripts/list-network-shares.ps1) - lists the network shares of the local computer

View File

@ -1,7 +1,7 @@
#!/usr/bin/pwsh #!/usr/bin/pwsh
<# <#
.SYNTAX ./enable-ssh-client.ps1 .SYNTAX ./enable-ssh-client.ps1
.DESCRIPTION enables the SSH client .DESCRIPTION enables the SSH client (needs admin rights)
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>

View File

@ -1,7 +1,7 @@
#!/usr/bin/pwsh #!/usr/bin/pwsh
<# <#
.SYNTAX ./enable-ssh-server.ps1 .SYNTAX ./enable-ssh-server.ps1
.DESCRIPTION enables the SSH server .DESCRIPTION enables the SSH server (needs admin rights)
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>