Add cd-autostart.ps1

This commit is contained in:
Markus Fleschutz
2021-10-19 07:59:19 +02:00
parent 1bb7b22b27
commit 840dd7f3cc
5 changed files with 88 additions and 37 deletions

View File

@ -3,24 +3,25 @@ add-firewall-rules.ps1, Adds firewall rules to the given executables (needs admi
add-memo.ps1, Adds the given memo text to $HOME/Memos.csv
build-repo.ps1, Builds a Git repository
build-repos.ps1, Builds all Git repositories in a folder
cd-desktop.ps1, Change the working directory to the user's desktop folder
cd-docs.ps1, Change the working directory to the user's documents folder
cd-downloads.ps1, Change the working directory to the user's downloads folder
cd-dropbox.ps1, Change the working directory to the user's Dropbox folder
cd-home.ps1, Change the working directory to the user's home folder
cd-music.ps1, Change the working directory to the user's music folder
cd-onedrive.ps1, Change the working directory to the user's OneDrive folder
cd-pics.ps1, Change the working directory to the user's pictures folder
cd-recycle-bin.ps1, Change the working directory to the user's recycle bin folder
cd-repos.ps1, Change the working directory to the user's Git repositories folder
cd-root.ps1, Change the working directory to the root directory (C: on Windows)
cd-scripts.ps1, Change the working directory to the PowerShell Scripts folder
cd-ssh.ps1, Change the working directory to the user's SSH folder
cd-up.ps1, Change the working directory to one directory level up
cd-up2.ps1, Change the working directory to two directory levels up
cd-up3.ps1, Change the working directory to three directory levels up
cd-up4.ps1, Change the working directory to four directory levels up
cd-videos.ps1, Change the working directory to the user's videos folder
cd-autostart.ps1, Set the working directory to the user's autostart folder
cd-desktop.ps1, Set the working directory to the user's desktop folder
cd-docs.ps1, Set the working directory to the user's documents folder
cd-downloads.ps1, Set the working directory to the user's downloads folder
cd-dropbox.ps1, Set the working directory to the user's Dropbox folder
cd-home.ps1, Set the working directory to the user's home folder
cd-music.ps1, Set the working directory to the user's music folder
cd-onedrive.ps1, Set the working directory to the user's OneDrive folder
cd-pics.ps1, Set the working directory to the user's pictures folder
cd-recycle-bin.ps1, Set the working directory to the user's recycle bin folder
cd-repos.ps1, Set the working directory to the user's Git repositories folder
cd-root.ps1, Set the working directory to the root directory (C: on Windows)
cd-scripts.ps1, Set the working directory to the PowerShell Scripts folder
cd-ssh.ps1, Set the working directory to the user's SSH folder
cd-up.ps1, Set the working directory to one directory level up
cd-up2.ps1, Set the working directory to two directory levels up
cd-up3.ps1, Set the working directory to three directory levels up
cd-up4.ps1, Set the working directory to four directory levels up
cd-videos.ps1, Set the working directory to the user's videos folder
check-cpu-temp.ps1, Checks the CPU temperature
check-dns-resolution.ps1, Checks the DNS resolution with frequently used domain names
check-drive-space.ps1, Checks a drive for free space left

1 Script Description
3 add-memo.ps1 Adds the given memo text to $HOME/Memos.csv
4 build-repo.ps1 Builds a Git repository
5 build-repos.ps1 Builds all Git repositories in a folder
6 cd-desktop.ps1 cd-autostart.ps1 Change the working directory to the user's desktop folder Set the working directory to the user's autostart folder
7 cd-docs.ps1 cd-desktop.ps1 Change the working directory to the user's documents folder Set the working directory to the user's desktop folder
8 cd-downloads.ps1 cd-docs.ps1 Change the working directory to the user's downloads folder Set the working directory to the user's documents folder
9 cd-dropbox.ps1 cd-downloads.ps1 Change the working directory to the user's Dropbox folder Set the working directory to the user's downloads folder
10 cd-home.ps1 cd-dropbox.ps1 Change the working directory to the user's home folder Set the working directory to the user's Dropbox folder
11 cd-music.ps1 cd-home.ps1 Change the working directory to the user's music folder Set the working directory to the user's home folder
12 cd-onedrive.ps1 cd-music.ps1 Change the working directory to the user's OneDrive folder Set the working directory to the user's music folder
13 cd-pics.ps1 cd-onedrive.ps1 Change the working directory to the user's pictures folder Set the working directory to the user's OneDrive folder
14 cd-recycle-bin.ps1 cd-pics.ps1 Change the working directory to the user's recycle bin folder Set the working directory to the user's pictures folder
15 cd-repos.ps1 cd-recycle-bin.ps1 Change the working directory to the user's Git repositories folder Set the working directory to the user's recycle bin folder
16 cd-root.ps1 cd-repos.ps1 Change the working directory to the root directory (C: on Windows) Set the working directory to the user's Git repositories folder
17 cd-scripts.ps1 cd-root.ps1 Change the working directory to the PowerShell Scripts folder Set the working directory to the root directory (C: on Windows)
18 cd-ssh.ps1 cd-scripts.ps1 Change the working directory to the user's SSH folder Set the working directory to the PowerShell Scripts folder
19 cd-up.ps1 cd-ssh.ps1 Change the working directory to one directory level up Set the working directory to the user's SSH folder
20 cd-up2.ps1 cd-up.ps1 Change the working directory to two directory levels up Set the working directory to one directory level up
21 cd-up3.ps1 cd-up2.ps1 Change the working directory to three directory levels up Set the working directory to two directory levels up
22 cd-up4.ps1 cd-up3.ps1 Change the working directory to four directory levels up Set the working directory to three directory levels up
23 cd-videos.ps1 cd-up4.ps1 Change the working directory to the user's videos folder Set the working directory to four directory levels up
24 cd-videos.ps1 Set the working directory to the user's videos folder
25 check-cpu-temp.ps1 Checks the CPU temperature
26 check-dns-resolution.ps1 Checks the DNS resolution with frequently used domain names
27 check-drive-space.ps1 Checks a drive for free space left