mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-23 13:11:39 +01:00
Add admin hint
This commit is contained in:
parent
1841a8a931
commit
777fe6d09e
@ -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)
|
||||||
|
|
@ -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
|
||||||
|
@ -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
|
||||||
#>
|
#>
|
||||||
|
@ -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
|
||||||
#>
|
#>
|
||||||
|
Loading…
Reference in New Issue
Block a user