Skip to content

Commit 615bcfb

Browse files
authored
Update POSHQuickBites.md
1 parent 0394e67 commit 615bcfb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

POSHQuickBites.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
## PowerShell Quick Bites
22

33
### Install Chocolatey Package Manager
4-
```Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))```
4+
```goAA
5+
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
6+
```
57

68
### Get a list of all Automatic services currently Stopped
79
```Get-Service | select Name, Status, StartType, DisplayName | where StartType -Match "Automatic" | where Status -Match "Stopped"```

0 commit comments

Comments
 (0)